/* THREAD — Home, Sale, Wishlist, Search, Filters drawer, Tracking, 404 */

/* ---------- Sale price + discount badge ---------- */
.price .struck { color: var(--ink-disabled); font-weight: 400; text-decoration: line-through; font-size: 0.85em; }
.disc-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-mini); padding: 4px 12px;
  font-size: 14px; font-weight: 500;
}

/* ---------- Quick add (+ on card photo -> size mini-picker) ---------- */
.card .quick-add { position: absolute; right: 12px; bottom: 12px; z-index: 3; }
.card .qa-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink);
  font-size: 22px; line-height: 1; display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 4px 16px rgba(5,5,5,.08);
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--dur), transform var(--dur), border-color var(--dur);
}
.card:hover .qa-btn, .card:focus-within .qa-btn, .quick-add.open .qa-btn { opacity: 1; transform: none; }
.card .qa-btn:hover { border-color: var(--ink); }
@media (hover: none) { .card .qa-btn { opacity: 1; transform: none; } }
.qa-pop {
  position: absolute; right: 0; bottom: 48px; width: max-content;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px; box-shadow: 0 12px 32px rgba(5,5,5,.12); display: none;
}
.quick-add.open .qa-pop { display: block; }
.qa-label { display: block; font-size: 12px; color: var(--ink-secondary); margin-bottom: 8px; }
.qa-sizes { display: flex; gap: 6px; }
.qa-size {
  min-width: 34px; height: 34px; padding: 0 8px;
  border: 1px solid var(--border); border-radius: 8px; background: var(--surface);
  font-size: 13px; font-weight: 500; cursor: pointer; transition: border-color var(--dur);
}
.qa-size:hover { border-color: var(--ink); }
.qa-size.off { color: var(--ink-disabled); text-decoration: line-through; cursor: not-allowed; }

/* ---------- PLP category header band ---------- */
.cat-hero {
  border-radius: var(--radius-card); padding: 72px var(--gap-lg);
  background: var(--surface-section); margin-bottom: 8px;
}
.cat-hero.dark { background: var(--ink); color: #fff; }
.cat-hero.photo {
  position: relative; min-height: clamp(340px, 29vw, 430px); padding: 44px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; background: var(--ink);
  background-size: cover; overflow: hidden;
}
.cat-hero.photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,.36) 0%, rgba(5,5,5,.08) 42%, transparent 68%); }
.cat-hero.photo > * { position: relative; z-index: 2; }
.cat-hero.photo .label-caps { color: var(--accent-btn); }
.cat-hero.photo h1 { color: #fff; }
.cat-hero.photo .sub { color: rgba(255,255,255,.82); }
.cat-hero .label-caps { color: var(--accent-text); }
.cat-hero h1 { margin: 12px 0 8px; }
.cat-hero .sub { color: var(--ink-secondary); max-width: 460px; }
.cat-hero.dark .sub { color: rgba(255,255,255,.7); }
.sale-band { display: flex; align-items: center; justify-content: space-between; }
.sale-band .big { font-size: 80px; line-height: 1; font-weight: 700; color: var(--accent); }

/* All filters trigger + promo strip */
.filters-trigger {
  height: 33px; padding: 0 20px; border: 1px solid var(--border);
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.filters-trigger svg { width: 16px; height: 16px; }
.filters-trigger:hover { border-color: var(--ink); }
.promo-strip {
  background: var(--ink); border-radius: var(--radius-card); color: #fff;
  padding: 24px; text-align: center; margin: 48px 0; font-size: 16px;
}
.promo-strip .code {
  display: inline-block; margin-left: 8px; padding: 4px 14px;
  border: 1px solid var(--accent); border-radius: var(--radius-mini);
  color: var(--accent-btn); font-weight: 600;
}
.load-more { text-align: center; padding: 56px 0 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* ---------- Wishlist ---------- */
.wish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 24px; }
.wish-item .actions-row { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.wish-item .actions-row .btn { flex: 1; }
.wish-item .remove-link { font-size: 14px; color: var(--ink-secondary); text-decoration: underline; text-underline-offset: 3px; }
.wish-item .remove-link:hover { color: var(--ink); }

/* ---------- Home ---------- */
.hero {
  position: relative; border-radius: 0; overflow: hidden;
  display: flex; align-items: center; background: #2a2622;
  /* cap by viewport height so the benefits row always peeks on laptops:
     80px header + ~100px benefits + 60px peek */
  height: clamp(480px, min(46vw, 100vh - 240px), 840px);
  height: clamp(480px, min(46vw, 100svh - 240px), 840px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('../img/hero.jpg') center 18% / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.66) 0%, rgba(5,5,5,.30) 45%, rgba(5,5,5,.02) 72%, transparent 100%);
}
.hero .hero-inner { position: relative; z-index: 2; color: #fff; max-width: 560px; padding: 0 var(--page-margin); margin: 0 auto; width: 100%; max-width: calc(var(--content-max) + var(--page-margin)*2); }
.hero .label-caps { color: var(--accent-btn); }
.hero h1 { font-size: 80px; line-height: 1.05; font-weight: 700; margin: 16px 0; letter-spacing: -0.02em; }
.hero h1 .dot {
  display: inline-block; width: 0.15em; height: 0.15em;
  border-radius: 0.038em; background: var(--accent-btn);
  margin-left: 0.13em; vertical-align: baseline;
}
.hero .sub { font-size: 18px; font-weight: 500; margin-bottom: 28px; max-width: 460px; color: rgba(255,255,255,.78); }
.hero .cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .cta .btn { white-space: nowrap; min-width: 182px; }
.hero .btn-ghost { border: 1px solid #fff; color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,.12); }

.benefits { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.benefit { display: flex; gap: 12px; align-items: center; }
.benefit svg { width: 36px; height: 36px; color: var(--accent); flex: 0 0 auto; }
/* Optical compensation: glyphs fill their 24px grid unevenly (truck 18x12, shield 14x18) */
.benefit:nth-child(1) svg { transform: scale(1.2); }   /* truck — wide & flat, reads small */
.benefit:nth-child(3) svg { transform: scale(1.08); }  /* leaf — slightly under mid */
.benefit:nth-child(4) svg { transform: scale(0.9); }   /* shield — tall, reads big */
.benefit .b-title { font-size: 14px; font-weight: 600; }
.benefit .b-sub { font-size: 12px; color: var(--ink-secondary); margin-top: 4px; }

.home-section { padding: 96px 0 0; }
.home-section .sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.view-all { font-size: 16px; font-weight: 500; color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 24px; border-radius: var(--radius-card);
  background: linear-gradient(105deg, #f6ede4 0%, #f3e5d7 40%, #eef0f0 100%);
}
.split .tile {
  position: relative; aspect-ratio: 6 / 7; border-radius: var(--radius-card); /* was 3/4; bottom-trimmed to fit 850px — center-top keeps heads whole, cut lands mid-thigh (71% of frame), clear of knees */
  overflow: hidden; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  padding: 28px; background-size: cover; background-position: center top;
}
.split .tile-women { background-image: url('../img/women-hero.jpg?v=2'); } /* ?v=2 busts caches of the old 534px files */
.split .tile-men { background-image: url('../img/men-hero.jpg?v=2'); }
/* Brand tints per Figma: confined to the right background band (window light),
   fading out BEFORE the model so the photo itself stays clean */
.split .tile::after {
  content: ""; position: absolute; inset: 0;
}
.split .tile-women::after {
  background: linear-gradient(to left, rgba(238,132,74,.5) 0%, rgba(238,132,74,.26) 22%, rgba(238,132,74,0) 45%);
}
.split .tile-men::after {
  background: linear-gradient(to left, rgba(45,45,44,.45) 0%, rgba(45,45,44,.2) 22%, rgba(45,45,44,0) 45%);
}
.split .tile .tile-foot {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 10px 16px; flex-wrap: wrap;
}
.split .tile .tile-label { position: relative; z-index: 2; font-size: 28px; font-weight: 700; color: var(--ink); }
.split .tile .tile-pill {
  background: var(--accent-btn); color: var(--ink);
  padding: 10px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500;
  white-space: nowrap; transition: background var(--dur);
}
.split .tile:hover .tile-pill { background: #e57638; }

.reviews { background: var(--surface-section); border-radius: var(--radius-card); padding: 64px 48px; margin-top: 96px; }
.reviews .r-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; }
.reviews .r-head .rating { font-size: 14px; color: var(--ink-secondary); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--surface); border-radius: var(--radius-card); padding: 32px; display: flex; flex-direction: column; }
.review-card .stars { color: var(--accent); display: flex; gap: 2px; align-items: center; margin-bottom: 16px; }
.review-card .stars .num { font-size: 14px; font-weight: 600; color: var(--ink); margin-left: 6px; }
.review-card .author .city { font-weight: 400; color: var(--ink-disabled); }
.review-card .quote { font-size: 16px; line-height: 1.5; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.review-card .author { font-size: 14px; font-weight: 600; color: var(--ink-secondary); margin-top: auto; }

/* ---------- Sustainability ---------- */
.sustain .sus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; } /* equal columns close the section on one baseline */
.sus-col { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; }
.sus-col .sus-caption { margin-top: auto; } /* caption sits on the same bottom line as the field photo */
.sus-text { display: flex; flex-direction: column; gap: 24px; }
.sus-text h3 { font-size: 28px; line-height: 1.1; font-weight: 700; color: var(--accent); max-width: 380px; }
.sus-text p { font-size: 18px; font-weight: 600; line-height: 1.4; }
.sus-img { width: 100%; aspect-ratio: 628 / 676; overflow: hidden; border-radius: var(--radius-card); } /* trimmed from 720 to fit the section in one 850px screen; landscape photos crop horizontally only, so the hands stay whole */
.sus-img img { width: 100%; height: 100%; object-fit: cover; }
.sus-img.fabric img { object-position: 72% 50%; }
.sus-img.meadow img { object-position: 39% 50%; } /* renamed from .field — collided with the form-field class and inherited its margin */
.sus-caption { font-size: 18px; font-weight: 600; line-height: 1.4; }
.sus-caption span { color: var(--accent-text); }
.sus-right { align-items: stretch; }

/* Reviews page */
.rev-summary { display: flex; align-items: center; gap: 20px; padding: 32px 0 8px; }
.rev-score { font-size: 64px; line-height: 1; font-weight: 700; letter-spacing: -0.02em; }
.rev-meta { display: flex; flex-direction: column; gap: 6px; }
.rev-stars { color: var(--accent); display: flex; gap: 2px; }
.rev-stars svg { width: 18px; height: 18px; }
.rev-count { font-size: 14px; color: var(--ink-secondary); }
.stars .star-off { color: var(--border); display: inline-flex; }
.three-col .review-card { border: 1px solid var(--border); } /* reviews page: cards sit on white, need an edge */

.join { text-align: center; padding: 96px 0; margin-top: 96px; background: #292827; color: #fff; } /* hero's dark, desaturated — flat colour reads warmer than under a photo */
.join + #site-footer .footer { margin-top: 0; } /* band sits flush on the footer line */
.join h2 { margin-bottom: 12px; }
.join p { color: rgba(255,255,255,.78); margin-bottom: 24px; } /* same muted white as the hero subtitle */
.join form { display: flex; gap: 8px; max-width: 384px; margin: 0 auto; } /* matches the intro line width above */
.join input { flex: 1; height: 48px; padding: 0 16px; background: var(--surface); border: 1px solid transparent; border-radius: var(--radius-pill); font-size: 15px; color: var(--ink); } /* the section's white text must not bleed into the light input */

/* ---------- Collections tiles ---------- */
.col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.col-tile {
  position: relative; display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start; gap: 10px;
  height: 360px; padding: 40px; border-radius: var(--radius-card);
  overflow: hidden; background-size: cover; color: #fff;
}
.col-tile.hero { grid-column: 1 / -1; height: 480px; gap: 20px; }
.col-tile::before { /* scrim weighted into the bottom-left text corner (same idea as the figma
   home hero's left scrim) — the photos are light, so white type needs ~.85 composite there;
   the right half of the photo stays clean. Verified per-pixel against each photo. */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.85) 0%, rgba(5,5,5,.55) 30%, rgba(5,5,5,0) 55%),
    linear-gradient(180deg, rgba(5,5,5,0) 40%, rgba(5,5,5,.55) 66%, rgba(5,5,5,.88) 100%);
}
.col-tile > * { position: relative; z-index: 1; } /* text always above the scrim */
.tile-eyebrow { font-size: 14px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #fff; } /* coral fails AA on any photo (lum too close) — white passes on the scrim */
.col-tile .tile-title { font-size: 28px; font-weight: 700; line-height: 1.1; }
.tile-go { font-size: 16px; font-weight: 500; transition: transform var(--dur); }
.col-tile:hover .tile-go { transform: translateX(4px); }
/* Per-photo focal points (bg in CSS classes only — Netlify breaks inline url()).
   Faces: fully in frame or fully out — checked against each photo. */
.col-img-linen { background-image: url('../img/col-linen.jpg'); background-position: center 44%; } /* wide band shows bodice + hands; face ends at 25%, band starts at 33% */
.col-img-city { background-image: url('../img/col-city.jpg'); background-position: center; } /* image aspect ~ tile aspect, face fully in */
.col-img-essentials { background-image: url('../img/col-essentials.jpg'); background-position: center 63%; } /* headless torso band 27–84%, collar to hem */
.col-img-dress { background-image: url('../img/col-dress.jpg'); background-position: center 40%; } /* flat-lay, bodice-to-skirt band */
.col-img-outerwear { background-image: url('../img/col-outerwear.jpg'); background-position: center 65%; } /* neck-down band 28–85%, hands fully in */

/* ---------- Search overlay ---------- */
.scrim { position: fixed; inset: 0; background: rgba(5,5,5,.4); z-index: 45; opacity: 0; pointer-events: none; transition: opacity var(--dur); }
.scrim.show { opacity: 1; pointer-events: auto; }

.search-overlay {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--surface); box-shadow: 0 24px 48px rgba(5,5,5,.12);
  transform: translateY(-100%); transition: transform var(--dur) var(--ease);
  padding: 24px var(--page-margin) 40px;
}
.search-overlay.show { transform: translateY(0); }
.search-bar {
  display: flex; align-items: center; gap: 12px; max-width: 760px;
  height: 52px; padding: 0 20px; border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill); margin: 0 auto 32px;
}
.search-bar svg { width: 20px; height: 20px; color: var(--ink); }
.search-bar input { flex: 1; border: none; background: none; font-size: 16px; outline: none; }
.search-bar .clear { color: var(--ink-secondary); }
.search-body { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 64px; }
.search-body h4 { font-size: 14px; font-weight: 500; color: var(--ink-secondary); margin-bottom: 16px; }
.suggestions a { display: block; padding: 6px 0; font-size: 16px; }
.suggestions a:hover { color: var(--accent-text); }
.results-head { display: flex; justify-content: space-between; margin-bottom: 4px; }
.results-head .view-all { font-size: 15px; font-weight: 500; color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
.result-row { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.result-row .r-thumb { width: 64px; height: 76px; border-radius: var(--radius-input); overflow: hidden; background: var(--surface-alt); flex: 0 0 auto; }
.result-row .r-thumb img { width: 100%; height: 100%; object-fit: cover; }
.result-row .r-name { font-size: 15px; font-weight: 600; }
.result-row .r-meta { font-size: 13px; color: var(--ink-secondary); }
.result-row .r-price { font-size: 15px; font-weight: 700; color: var(--accent-text); margin-left: 12px; }
.no-suggest { color: var(--ink-secondary); font-size: 15px; padding: 8px 0; }

/* ---------- Filters drawer ---------- */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 480px; max-width: 92vw;
  background: var(--surface); z-index: 55; box-shadow: -16px 0 40px rgba(5,5,5,.14);
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.drawer.show { transform: translateX(0); }
.drawer .d-head { display: flex; align-items: center; justify-content: space-between; padding: 32px 32px 24px; border-bottom: 1px solid var(--border); }
.drawer .d-head h3 { font-size: 28px; font-weight: 700; }
.drawer .d-head .close { width: 24px; height: 24px; color: var(--ink); }
.drawer .d-body { flex: 1; overflow-y: auto; padding: 32px; display: flex; flex-direction: column; gap: 32px; }
.drawer .d-foot { border-top: 1px solid var(--border); padding: 24px 32px 32px; display: flex; gap: 16px; align-items: center; }
.d-group h4 { font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.check-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; cursor: pointer; }
.check-row .left { display: flex; align-items: center; gap: 12px; }
.check-row .box { width: 16px; height: 16px; border: 1px solid var(--border); border-radius: 4px; display: grid; place-items: center; background: #fff; }
.check-row.on .box { background: var(--accent-btn); border-color: var(--accent-btn); }
.check-row .box svg { width: 10px; height: 8px; opacity: 0; }
.check-row.on .box svg { opacity: 1; }
.check-row .count { font-size: 14px; color: var(--ink-secondary); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.swatch-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Order tracking stepper ---------- */
.track-stepper { max-width: 620px; margin: 0 auto 40px; }
.track-dots { display: flex; align-items: center; }
.track-dots .dot {
  width: 24px; height: 24px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; background: #fff; border: 1.5px solid var(--border);
}
.track-dots .dot.done { background: var(--ink); border-color: var(--ink); color: #fff; }
.track-dots .dot.current { background: var(--accent-btn); border-color: var(--accent-btn); }
.track-dots .dot.current i { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.track-dots .dot svg { width: 12px; height: 9px; }
.track-dots .line { flex: 1; height: 2px; background: var(--border); }
.track-dots .line.done { background: var(--ink); }
.track-labels { display: flex; justify-content: space-between; margin-top: 12px; }
.track-labels .lab { font-size: 13px; color: var(--ink-secondary); text-align: center; flex: 1; }
.track-labels .lab:first-child { text-align: left; }
.track-labels .lab:last-child { text-align: right; }
.track-labels .lab.current { color: var(--ink); font-weight: 600; }
.track-labels .date { display: block; font-size: 11px; color: var(--ink-secondary); margin-top: 2px; }

/* ---------- 404 / No results ---------- */
.msg-page { text-align: center; padding: 100px 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.msg-page .code404 { font-size: 120px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.msg-page .code404 .dot {
  display: inline-block; width: 0.14em; height: 0.14em;
  border-radius: 0.035em; background: var(--accent);
  margin-left: 0.12em; vertical-align: baseline;
}
.msg-page h2 { font-size: 40px; font-weight: 700; }
.msg-page p { color: var(--ink-secondary); max-width: 400px; line-height: 1.6; }
.msg-page .cta { display: flex; gap: 16px; margin-top: 4px; }
.nr-search { max-width: 560px; margin: 0 auto 8px; }
.nr-try { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ---------- Support / content pages (Help, Contact, FAQ, Terms) ---------- */
.support-head { padding: 8px 0 40px; }
.support-head h1 { font-size: 48px; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
.support-head .sub { margin-top: 14px; color: var(--ink-secondary); max-width: 540px; line-height: 1.6; }

/* Help Center category grid */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.help-grid.four { grid-template-columns: repeat(4, 1fr); }
.help-card {
  border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px;
  display: flex; flex-direction: column; gap: 8px; transition: border-color var(--dur);
}
.help-card:hover { border-color: var(--ink); }
.help-card .hc-icon {
  width: 44px; height: 44px; border-radius: var(--radius-pill);
  background: var(--surface-alt); display: grid; place-items: center; color: var(--accent); margin-bottom: 8px;
}
.help-card .hc-icon svg { width: 22px; height: 22px; }
.help-card h3 { font-size: 18px; font-weight: 600; }
.help-card p { font-size: 14px; color: var(--ink-secondary); line-height: 1.6; }
.help-card .hc-link { margin-top: auto; padding-top: 10px; font-size: 14px; font-weight: 500; color: var(--accent-text); }

/* Contact layout */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; padding-bottom: 40px; }
.field textarea {
  width: 100%; min-height: 150px; padding: 12px 16px;
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-input); font: inherit; font-size: 16px; font-weight: 500;
  resize: vertical; transition: border-color var(--dur);
}
.field textarea::placeholder { color: var(--ink-disabled); font-weight: 400; }
.field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.field.error textarea { border-color: var(--error); }
.field select {
  width: 100%; height: 48px; padding: 0 44px 0 16px;
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-input); font-size: 16px; font-weight: 500; color: var(--ink); cursor: pointer;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23141414' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }

.info-card { background: var(--surface-alt); border-radius: var(--radius-card); padding: 32px; }
.info-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.info-block { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: 0; padding-bottom: 0; }
.info-block .ib-icon { color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.info-block .ib-icon svg { width: 20px; height: 20px; }
.info-block h5 { font-size: 14px; font-weight: 600; }
.info-block p { font-size: 14px; color: var(--ink-secondary); line-height: 1.5; margin-top: 3px; }
.info-block a { color: var(--accent-text); }

/* Contact success panel */
.form-success {
  text-align: center; padding: 72px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px;
  border: 1px solid var(--border); border-radius: var(--radius-card);
}
.form-success svg { color: var(--accent); }
.form-success h2 { font-size: 28px; font-weight: 700; }
.form-success p { color: var(--ink-secondary); max-width: 440px; line-height: 1.6; }

/* FAQ */
.faq-section { margin-bottom: 44px; }
.faq-section > h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }

/* Legal / Terms doc */
.doc-layout { display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; padding-bottom: 40px; }
.doc-toc { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 10px; }
.doc-toc .toc-title { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-secondary); margin-bottom: 4px; }
.doc-toc a { font-size: 14px; color: var(--ink-secondary); }
.doc-toc a:hover { color: var(--ink); }
.doc-body { max-width: 720px; }
.doc-body .doc-updated { font-size: 14px; color: var(--ink-secondary); margin-bottom: 36px; }
.doc-body section { margin-bottom: 44px; scroll-margin-top: 96px; }
.doc-body section h2 { font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.doc-body section h3 { font-size: 16px; font-weight: 600; margin: 22px 0 8px; }
.doc-body section p { font-size: 15px; line-height: 1.7; color: var(--ink-secondary); margin-bottom: 12px; }
.doc-body section ul { padding-left: 20px; margin-bottom: 12px; }
.doc-body section li { font-size: 15px; line-height: 1.7; color: var(--ink-secondary); list-style: disc; margin-bottom: 6px; }

/* Shared support CTA banner */
.support-cta { background: var(--surface-section); border-radius: var(--radius-card); padding: 56px 48px; text-align: center; margin-top: 40px; }
.support-cta h3 { font-size: 24px; font-weight: 700; }
.support-cta p { color: var(--ink-secondary); margin: 10px 0 24px; }
.support-cta .cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Company pages (About, Careers, Blog, Article, Partners) ---------- */
.page-block { margin: 72px 0; }
.sec-title { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.sec-intro { color: var(--ink-secondary); max-width: 540px; line-height: 1.6; margin-bottom: 32px; }

/* About — story split */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-split .fs-media { aspect-ratio: 4 / 5; border-radius: var(--radius-card); overflow: hidden; background: var(--surface-alt); }
.feature-split .fs-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px; }
.feature-split p { color: var(--ink-secondary); line-height: 1.7; margin-bottom: 14px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: var(--surface-alt); border-radius: var(--radius-card); padding: 48px; }
.stat { text-align: center; }
.stat .num { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); }
.stat .lbl { font-size: 14px; color: var(--ink-secondary); margin-top: 6px; }

/* Careers — job list */
.job-list { border-top: 1px solid var(--border); }
.job-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); transition: padding-left var(--dur); }
.job-card:hover { padding-left: 8px; }
.job-card .jc-main h3 { font-size: 18px; font-weight: 600; }
.job-card .jc-meta { font-size: 14px; color: var(--ink-secondary); margin-top: 4px; }
.job-card .jc-apply { font-size: 14px; font-weight: 500; color: var(--accent-text); white-space: nowrap; }

/* Blog — featured + grid */
.featured-post { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; }
.featured-post .fp-media { background: var(--surface-alt); min-height: 320px; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-post .fp-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.post-cat { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
.featured-post h2 { font-size: 32px; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; margin: 12px 0; }
.featured-post p { color: var(--ink-secondary); line-height: 1.6; margin-bottom: 16px; }
.post-meta { font-size: 13px; color: var(--ink-secondary); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 24px; }
.post-card { display: flex; flex-direction: column; }
.post-card .pc-media { aspect-ratio: 3 / 2; border-radius: var(--radius-card); overflow: hidden; background: var(--surface-alt); margin-bottom: 16px; }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.post-card:hover .pc-media img { transform: scale(1.03); }
.post-card h3 { font-size: 18px; font-weight: 600; line-height: 1.3; margin: 8px 0; }
.post-card p { font-size: 14px; color: var(--ink-secondary); line-height: 1.6; margin-bottom: 10px; }

/* Article */
.article { max-width: 720px; margin: 0 auto; }
.article .art-cat { color: var(--accent-text); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.article h1 { font-size: 44px; line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; margin: 14px 0 16px; }
.article .art-meta { font-size: 14px; color: var(--ink-secondary); margin-bottom: 32px; }
.article .art-hero { aspect-ratio: 16 / 9; border-radius: var(--radius-card); overflow: hidden; background: var(--surface-alt); margin-bottom: 40px; }
.article .art-hero img { width: 100%; height: 100%; object-fit: cover; }
.pull-quote { font-size: 22px; line-height: 1.5; font-weight: 500; color: var(--ink); border-left: 3px solid var(--accent); padding-left: 24px; margin: 28px 0; }

/* Partners — logo strip */
.partner-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-logo { height: 88px; border: 1px solid var(--border); border-radius: var(--radius-card); display: grid; place-items: center; font-size: 18px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-secondary); }
