/* ============================================================
   DOLLYE DEALS — component & section styles
   ============================================================ */

/* ---------------- top bar + nav ---------------- */
.topbar {
  background: var(--ink); color: var(--paper);
  font-size: 12px; letter-spacing: 0.04em;
  display: flex; justify-content: center; gap: 28px; align-items: center;
  padding: 8px 28px;
}
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .topbar-phone { color: var(--gold); }
.topbar svg { color: var(--gold); }
@media (max-width: 640px){ .topbar { font-size: 10.5px; gap: 14px; } .topbar svg { display:none; } }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.955 0.018 78 / 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.nav.solid { border-bottom-color: var(--line); box-shadow: 0 6px 22px -18px rgba(43,38,32,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img {
  width: 48px; height: 48px; flex: none; object-fit: contain;
}
.logo-only .logo-img { width: 108px; height: 108px; }
.logo-mark {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  background: var(--rust); color: var(--paper);
  border: 2px solid var(--ink);
  transform: rotate(45deg); border-radius: 4px;
  box-shadow: 3px 3px 0 var(--ink);
}
.logo-mark svg { transform: rotate(-45deg); }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--ff-serif); font-weight: 600; font-size: 22px; letter-spacing: -0.005em; color: var(--rust-deep); }
.logo-sub { font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-2); margin-top: 4px; }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.02em;
  color: var(--ink-2); position: relative; padding: 4px 0; transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.on { color: var(--rust); }
.nav-links a.on::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--rust);
}

.burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); display: block; }
@media (max-width: 860px){ .burger { display: flex; } }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px; padding: 12px 28px 24px;
  border-top: 1.5px solid var(--line); background: var(--paper);
}
.mobile-menu a { font-family: var(--ff-mono); font-size: 15px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border: 2px solid var(--ink); margin-top: 12px; justify-content: center; }
.mm-phone { color: var(--rust); text-align: center; padding-top: 14px; }

/* ---------------- hero ---------------- */
.hero { padding: clamp(40px, 6vw, 84px) 0 clamp(50px, 7vw, 90px); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.18em; color: var(--rust); font-weight: 700;
  border: 1.5px solid var(--rust); padding: 7px 14px; border-radius: 100px;
}
.hero-eyebrow svg { color: var(--gold); }
.hero-title {
  font-size: clamp(38px, 5.4vw, 66px); line-height: 0.98; margin: 22px 0 0; letter-spacing: -0.015em;
}
.hero-title .hl { color: var(--rust); }
.hero-lede { margin-top: 26px; font-size: clamp(18px, 2.1vw, 21px); color: var(--ink-2); max-width: 48ch; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.hero-art { position: relative; height: 460px; }
.hero-ph-1 { position: absolute; width: 66%; height: 78%; top: 0; right: 0; box-shadow: var(--shadow-lift); border: 1.5px solid var(--ink); border-radius: 4px; overflow: hidden; }
.hero-ph-2 { position: absolute; width: 54%; height: 52%; bottom: 0; left: 0; box-shadow: var(--shadow-lift); z-index: 2; border: 1.5px solid var(--ink); border-radius: 4px; overflow: hidden; }
.hero-tag { position: absolute; top: 60%; right: 6%; z-index: 3; transform: rotate(6deg); box-shadow: 3px 3px 0 var(--ink); }
.hero-badge {
  position: absolute; top: 8%; left: 4%; z-index: 4;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--denim); color: var(--paper);
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  display: grid; place-items: center; text-align: center; transform: rotate(-8deg);
}
.hero-badge .display { font-size: 30px; line-height: 1; }
.hero-badge .mono { font-size: 8.5px; letter-spacing: 0.12em; margin-top: 2px; }
@media (max-width: 920px){
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { height: 360px; max-width: 460px; }
}

/* ---------------- stats ---------------- */
.stats { background: var(--ink); color: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(244,235,221,0.16); }
.stat:last-child { border-right: 0; }
.stat-big { font-size: clamp(38px, 5vw, 60px); color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; letter-spacing: 0.08em; color: oklch(0.85 0.02 78); margin-top: 12px; white-space: pre-line; line-height: 1.4; }
@media (max-width: 700px){
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2){ border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2){ border-bottom: 1px solid rgba(244,235,221,0.16); }
}

/* ---------------- services ---------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: 4px;
  padding: 30px 28px 32px; box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--ink); }
.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.svc-num { font-size: 30px; font-weight: 700; color: oklch(0.255 0.018 56 / 0.22); }
.svc-icon {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  color: var(--ink); border: 1.5px solid var(--ink);
}
.svc-icon.tone-rust { background: var(--rust-soft); }
.svc-icon.tone-denim { background: oklch(0.80 0.045 214); }
.svc-icon.tone-gold { background: var(--gold); }
.svc-title { font-family: var(--ff-serif); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
.svc-desc { margin-top: 12px; color: var(--ink-2); font-size: 16.5px; line-height: 1.55; }
@media (max-width: 880px){ .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px){ .svc-grid { grid-template-columns: 1fr; } }

.coming-soon-title { color: var(--rust); font-style: italic; }
.coming-muted { opacity: 0.5; }
.coming-chip { opacity: 0.55; border-style: dashed; }
.sale-coming-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--paper-2); border-bottom: 1.5px solid var(--line);
}
.sale-coming-icon { font-size: 40px; line-height: 1; }
.sale-coming-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); font-weight: 700;
}

/* ---------------- upcoming sales ---------------- */
.sales-sec { background: var(--paper-2); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
.sales-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.sales-head .section-head { margin-bottom: 0; }
.sales-filter { display: inline-flex; border: 1.5px solid var(--ink); border-radius: 100px; overflow: hidden; }
.sales-filter button, .gal-filter button {
  background: transparent; border: 0; font-family: var(--ff-mono); font-size: 12.5px;
  padding: 10px 18px; color: var(--ink-2); letter-spacing: 0.02em;
}
.sales-filter button.on { background: var(--ink); color: var(--paper); }
.stub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.stub {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: 4px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform .18s, box-shadow .18s; position: relative; overflow: hidden;
}
.stub:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stub-feat { grid-column: span 1; outline: 3px solid var(--gold); outline-offset: -3px; }
.stub-img { position: relative; height: 168px; }
.stub-when {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--paper); border: 1.5px solid var(--ink); padding: 5px 10px;
  font-size: 10.5px; letter-spacing: 0.1em; font-weight: 700;
}
.stub-when.now { background: var(--gold); }
.stub-body { padding: 20px 22px 8px; flex: 1; }
.stub-lot { font-size: 11px; letter-spacing: 0.14em; color: var(--rust); font-weight: 700; }
.stub-name { font-family: var(--ff-serif); font-weight: 600; font-size: 22px; margin-top: 6px; letter-spacing: -0.01em; line-height: 1.1; }
.stub-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: 12px; color: var(--ink-2); }
.stub-meta span { display: inline-flex; align-items: center; gap: 6px; }
.stub-meta svg { color: var(--denim); }
.stub-blurb { margin-top: 14px; font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }
.stub-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.chip {
  font-size: 11px; letter-spacing: 0.04em; padding: 5px 10px;
  background: var(--paper-3); border: 1px solid var(--line); border-radius: 100px; color: var(--ink-2);
}
.stub-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 22px; margin-top: 12px; border-top: 1.5px dashed var(--line);
}
.stub-foot-note { font-size: 10.5px; color: var(--ink-2); max-width: 18ch; line-height: 1.4; }
.sales-cta {
  margin-top: 36px; padding: 22px 28px; background: var(--ink); color: var(--paper);
  border-radius: 4px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.sales-cta p { font-size: 14px; letter-spacing: 0.02em; }
.sales-cta .btn-ghost { color: var(--paper); border-color: var(--paper); }
.sales-cta .btn-ghost:hover { background: var(--paper); color: var(--ink); }
@media (max-width: 920px){ .stub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .stub-grid { grid-template-columns: 1fr; } }

/* ---------------- gallery ---------------- */
.gal-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.gal-filter button {
  border: 1.5px solid var(--line); border-radius: 100px; background: transparent;
  font-family: var(--ff-mono); font-size: 12.5px; padding: 9px 16px; color: var(--ink-2); transition: all .15s;
}
.gal-filter button:hover { border-color: var(--ink); color: var(--ink); }
.gal-filter button.on { background: var(--rust); color: var(--paper); border-color: var(--rust); }
.gal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; grid-auto-flow: dense;
}
.gal-item { position: relative; border: 0; padding: 0; cursor: default; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow-card); }
.gal-item .ph { height: 100%; transition: transform .35s ease; }
.gal-item:hover .ph { transform: scale(1.05); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-cat {
  position: absolute; top: 10px; right: 10px; z-index: 2; background: var(--ink); color: var(--paper);
  font-size: 10px; letter-spacing: 0.1em; padding: 4px 9px; border-radius: 100px; opacity: 0; transition: opacity .2s;
}
.gal-item:hover .gal-cat { opacity: 1; }
@media (max-width: 900px){ .gal-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox { position: fixed; inset: 0; z-index: 90; background: oklch(0.255 0.018 56 / 0.86); display: grid; place-items: center; padding: 28px; }
.lightbox-inner { background: var(--paper); border: 2px solid var(--ink); border-radius: 4px; padding: 14px; max-width: 680px; width: 100%; box-shadow: var(--shadow-lift); }
.lightbox-x { background: none; border: 0; font-size: 12px; letter-spacing: 0.1em; color: var(--ink-2); display: block; margin-left: auto; margin-bottom: 10px; }
.lightbox-cap { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.lightbox-name { font-size: 13px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------------- shop ---------------- */
.shop-sec { background: var(--paper-2); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
.shop-filter { margin-bottom: 0; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.prod { background: var(--paper); border: 1.5px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .18s, box-shadow .18s, border-color .18s; }
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--ink); }
.prod-img { position: relative; height: 190px; }
.prod-coming-soon {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--paper-2); border-bottom: 1.5px solid var(--line);
}
.prod-coming-icon { font-size: 36px; line-height: 1; }
.prod-coming-text {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); font-weight: 700;
}
.prod-tag { position: absolute; bottom: 12px; right: 12px; z-index: 2; box-shadow: 2px 2px 0 var(--ink); }
.prod-body { padding: 16px 18px 18px; }
.prod-cat { font-size: 10.5px; letter-spacing: 0.06em; color: var(--denim); text-transform: uppercase; }
.prod-name { font-family: var(--ff-serif); font-weight: 600; font-size: 18px; margin: 7px 0 16px; line-height: 1.2; letter-spacing: -0.01em; }
.prod-add { width: 100%; justify-content: center; }
@media (max-width: 980px){ .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px){ .prod-grid { grid-template-columns: 1fr 1fr; } }

/* ---------------- about ---------------- */
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
.about-art { position: relative; }
.about-ph { width: 100%; aspect-ratio: 4/5; box-shadow: var(--shadow-lift); border: 1.5px solid var(--ink); border-radius: 4px; overflow: hidden; }
.about-stamp {
  position: absolute; top: -18px; right: -18px; width: 96px; height: 96px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  display: grid; place-items: center; text-align: center; gap: 2px; transform: rotate(10deg);
}
.about-stamp .mono { font-size: 10px; letter-spacing: 0.1em; line-height: 1.2; font-weight: 700; }
.about-quote {
  position: absolute; bottom: -26px; left: -20px; max-width: 300px;
  background: var(--denim); color: var(--paper); border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink); padding: 18px 22px; border-radius: 4px;
}
.about-quote p { font-size: 18px; line-height: 1.25; }
.about-title { font-size: clamp(32px, 4.4vw, 50px); margin: 14px 0 22px; line-height: 1.0; }
.about-copy p { color: var(--ink-2); margin-bottom: 16px; font-size: 17.5px; }
.about-copy strong { color: var(--ink); font-weight: 600; }
.about-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 15px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); line-height: 1.45; }
.about-list svg { color: var(--rust); flex: none; margin-top: 3px; }
@media (max-width: 900px){
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-art { max-width: 420px; }
  .about-quote { left: auto; right: -10px; }
}

/* ---------------- what is an estate sale ---------------- */
.whatis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.whatis-title { font-size: clamp(32px, 4.4vw, 52px); margin: 14px 0 22px; line-height: 0.98; }
.whatis-p { color: var(--ink-2); font-size: 17.5px; margin-bottom: 16px; }
.whatis-p strong { color: var(--ink); font-weight: 600; }
.whatis-reasons-head {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust);
  font-weight: 700; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 2px solid var(--ink);
}
.reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.reason {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.reason-n { font-size: 12px; font-weight: 700; color: var(--denim); flex: none; padding-top: 3px; }
.reason-k { font-family: var(--ff-serif); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.reason-d { color: var(--ink-2); font-size: 14.5px; margin-top: 5px; line-height: 1.45; }
@media (max-width: 880px){
  .whatis-grid { grid-template-columns: 1fr; gap: 40px; }
  .reason-grid { grid-template-columns: 1fr; }
}

/* ---------------- faq ---------------- */
.faq-sec { background: var(--paper-2); border-top: 1.5px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-title { font-size: clamp(34px, 4.6vw, 54px); margin: 14px 0 18px; line-height: 0.98; }
.faq-aside-p { color: var(--ink-2); margin-bottom: 22px; font-size: 17px; }
.faq-list { display: flex; flex-direction: column; }
.faq { border-bottom: 1.5px solid var(--line); }
.faq:first-child { border-top: 1.5px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; display: flex; align-items: center; gap: 16px; padding: 24px 4px; }
.faq-num { font-size: 12px; color: var(--rust); font-weight: 700; flex: none; }
.faq-qtext { font-family: var(--ff-serif); font-size: 20px; font-weight: 600; flex: 1; letter-spacing: -0.01em; line-height: 1.2; }
.faq-sign { font-family: var(--ff-display); font-size: 26px; color: var(--rust); flex: none; width: 26px; text-align: center; }
.faq-a-wrap { display: grid; transition: grid-template-rows .3s ease; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 4px 26px 50px; color: var(--ink-2); font-size: 16.5px; line-height: 1.6; max-width: 64ch; }
@media (max-width: 860px){ .faq-grid { grid-template-columns: 1fr; gap: 32px; } .faq-aside { position: static; } }

.field-sm { max-width: 90px; }
.seller-fields {
  background: var(--paper-2); border: 1.5px solid var(--line);
  border-radius: 4px; padding: 18px; display: flex; flex-direction: column; gap: 14px;
}
.seller-fields-head {
  font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 2px;
}

/* ---------------- contact ---------------- */
.contact-sec { background: var(--ink); color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-sec .eyebrow { color: var(--gold); }
.contact-title { font-size: clamp(34px, 4.8vw, 56px); margin: 14px 0 20px; line-height: 0.98; }
.contact-lede { color: oklch(0.86 0.02 78); font-size: 18px; max-width: 46ch; margin-bottom: 34px; }
.contact-rows { display: grid; gap: 8px; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(244,235,221,0.16); }
.contact-row:last-child { border-bottom: 1px solid rgba(244,235,221,0.16); }
.contact-ic { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); display: grid; place-items: center; flex: none; }
.contact-k { display: block; font-size: 10px; letter-spacing: 0.14em; color: oklch(0.72 0.02 78); }
.contact-v { display: block; font-size: 19px; font-weight: 600; margin-top: 2px; }

.contact-form-wrap { background: var(--paper); color: var(--ink); border: 2px solid var(--ink); border-radius: 4px; padding: 30px; box-shadow: 8px 8px 0 var(--rust); }
.form-head { font-size: 12px; letter-spacing: 0.12em; color: var(--rust); font-weight: 700; padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1.5px solid var(--line); }
.field { display: block; margin-bottom: 16px; }
.field-l { display: block; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-serif); font-size: 16px; color: var(--ink);
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: 3px; padding: 12px 14px; outline: none; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rust); }
.field input.err { border-color: var(--rust); background: oklch(0.88 0.05 40); }
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-e { display: block; color: var(--rust); font-size: 11px; margin-top: -8px; margin-bottom: 12px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-fine { font-size: 10.5px; color: var(--ink-2); text-align: center; margin-top: 14px; }
.form-sent { text-align: center; padding: 30px 10px; }
.form-sent-ic { width: 70px; height: 70px; border-radius: 50%; background: var(--rust); color: var(--paper); display: grid; place-items: center; margin: 0 auto 20px; border: 2px solid var(--ink); }
.form-sent h3 { font-size: 30px; margin-bottom: 14px; }
.form-sent p { color: var(--ink-2); max-width: 38ch; margin: 0 auto 22px; }
.form-sent a { color: var(--rust); }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------------- service areas strip ---------------- */
.areas-sec {
  background: var(--paper-2);
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  padding: 28px 0;
}
.areas-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
}
.areas-label {
  font-size: 12px; letter-spacing: 0.1em; color: var(--rust); font-weight: 700;
  display: flex; align-items: center; gap: 7px; flex: none; white-space: nowrap;
}
.areas-list {
  display: flex; flex-wrap: wrap; gap: 8px; flex: 1;
}
.area-chip {
  font-size: 11px; letter-spacing: 0.04em; padding: 5px 11px;
  border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-2); background: var(--paper);
  transition: border-color .15s, color .15s;
}
.area-chip:hover { border-color: var(--rust); color: var(--rust); }
.areas-cta { flex: none; white-space: nowrap; }
@media (max-width: 700px) {
  .areas-label { width: 100%; }
  .areas-cta { width: 100%; justify-content: center; }
}

/* ---------------- footer ---------------- */
.footer { background: var(--ink); color: oklch(0.86 0.02 78); padding: 64px 0 32px; border-top: 4px solid var(--rust); }
.footer-top { display: grid; grid-template-columns: 1.3fr 2fr; gap: 50px; }
.footer .logo-name { color: var(--paper); }
.footer .logo-sub { color: oklch(0.72 0.02 78); }
.footer-tagline { margin: 20px 0; font-size: 15.5px; max-width: 36ch; line-height: 1.5; }
.footer-stamps { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-stamps .stamp { color: var(--gold); }
.footer-social { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; transition: background .15s, color .15s, transform .15s;
}
.footer-social:hover .social-btn { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.footer-social-label { font-size: 12px; letter-spacing: 0.04em; color: oklch(0.86 0.02 78); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-h { font-size: 11px; letter-spacing: 0.14em; color: oklch(0.7 0.02 78); display: block; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-muted { font-size: 14.5px; color: oklch(0.86 0.02 78); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-link-strong { color: var(--gold) !important; font-weight: 600; }
.footer-rule { margin: 40px 0 22px; border-color: rgba(244,235,221,0.3); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 11.5px; color: oklch(0.7 0.02 78); letter-spacing: 0.04em; }
@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 520px){ .footer-cols { grid-template-columns: 1fr 1fr; } }

/* ---------------- cart fab + drawer + toast ---------------- */
.cart-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; border: 2px solid var(--ink);
  background: var(--paper); color: var(--ink); display: grid; place-items: center;
  box-shadow: 4px 4px 0 var(--ink); transition: transform .15s;
}
.cart-fab:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.cart-fab.has { background: var(--rust); color: var(--paper); }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--gold); color: var(--ink); border: 1.5px solid var(--ink); border-radius: 100px; min-width: 22px; height: 22px; font-size: 12px; font-weight: 700; display: grid; place-items: center; padding: 0 5px; }

.drawer-scrim { position: fixed; inset: 0; background: oklch(0.255 0.018 56 / 0); z-index: 80; pointer-events: none; transition: background .25s; }
.drawer-scrim.show { background: oklch(0.255 0.018 56 / 0.55); pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 85;
  background: var(--paper); border-left: 2px solid var(--ink); transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.1,1); display: flex; flex-direction: column;
}
.drawer.show { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1.5px solid var(--line); }
.drawer-head .display { font-size: 26px; }
.drawer-x { background: none; border: 0; font-size: 16px; color: var(--ink-2); }
.drawer-empty { flex: 1; display: grid; place-content: center; justify-items: center; gap: 16px; color: var(--ink-2); text-align: center; font-size: 13px; }
.drawer-items { flex: 1; overflow-y: auto; padding: 12px 26px; }
.drawer-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.drawer-thumb { width: 56px; height: 56px; flex: none; border-radius: 3px; }
.drawer-thumb .ph-label { display: none; }
.drawer-item-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.drawer-item-name { font-size: 15px; font-weight: 600; line-height: 1.2; }
.drawer-item-price { font-size: 13px; color: var(--rust); font-weight: 700; }
.drawer-rm { background: none; border: 0; color: var(--ink-2); font-size: 13px; }
.drawer-foot { padding: 22px 26px; border-top: 1.5px solid var(--ink); display: grid; gap: 14px; }
.drawer-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; letter-spacing: 0.04em; }
.drawer-foot .btn { justify-content: center; }
.drawer-fine { font-size: 10px; color: var(--ink-2); text-align: center; line-height: 1.4; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 95;
  background: var(--ink); color: var(--paper); padding: 13px 20px; border-radius: 100px;
  font-size: 13px; letter-spacing: 0.02em; display: flex; align-items: center; gap: 9px;
  box-shadow: var(--shadow-lift); animation: toastIn .25s ease;
}
.toast svg { color: var(--gold); }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------------- image slots (real photos) ---------------- */
image-slot { transition: transform .35s ease; }
image-slot::part(frame) {
  background-color: var(--paper-3);
  background-image: repeating-linear-gradient(-45deg,
    oklch(0.255 0.018 56 / 0.10) 0 2px, transparent 2px 11px);
}
image-slot::part(ring) { border-color: var(--ink); border-style: dashed; opacity: 0.5; }
image-slot::part(empty) { color: var(--ink); font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.04em; }
image-slot[data-tone="rust"]::part(frame)  { background-color: oklch(0.78 0.05 206); }
image-slot[data-tone="denim"]::part(frame) { background-color: oklch(0.72 0.05 214); }
image-slot[data-tone="gold"]::part(frame)  { background-color: oklch(0.82 0.085 80); }

/* seal logo */
.seal { display: block; }
.hero-seal { position: absolute; top: 4%; left: 2%; z-index: 4; transform: rotate(-6deg);
  filter: drop-shadow(0 8px 16px rgba(11,62,78,0.28)); }
.about-seal { position: absolute; top: -22px; right: -22px; z-index: 3; transform: rotate(6deg);
  filter: drop-shadow(0 6px 14px rgba(11,62,78,0.3)); }
@media (max-width: 920px){ .hero-seal { width: 104px; height: 104px; } }

/* gallery tile is now a div with a fill-slot + expand affordance */
.gal-item image-slot { width: 100%; height: 100%; }
.gal-item:hover image-slot { transform: scale(1.04); }
.gal-expand {
  position: absolute; left: 10px; bottom: 10px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--ink);
  background: var(--paper); color: var(--ink); display: grid; place-items: center;
  opacity: 0; transform: translateY(6px); transition: opacity .18s, transform .18s;
  box-shadow: 2px 2px 0 var(--ink);
}
.gal-item:hover .gal-expand { opacity: 1; transform: none; }
.lightbox-img { aspect-ratio: 4/3; width: 100%; }
.lightbox-img image-slot { width: 100%; height: 100%; }

@media (prefers-reduced-motion: reduce){ .reveal { transition: none; opacity: 1; transform: none; } html { scroll-behavior: auto; } }
