/* style.css — component & section styles */

.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}
.wrap--narrow { max-width: var(--content-default); }

section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
}

/* ───── Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}
.site-header.scrolled {
  border-bottom-color: var(--color-divider);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 5.5rem;
  padding-block: var(--space-2);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: clamp(6.75rem, 9vw, 8.25rem);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 0 color-mix(in oklab, var(--color-bg) 80%, transparent));
}
.brand-logo--footer {
  width: min(9.5rem, 100%);
}
.brand-name { white-space: nowrap; display: block; }
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .nav {
    min-height: 4.75rem;
    gap: var(--space-3);
  }
  .brand-logo { width: 5.75rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--color-text); }

.nav-tools { display: flex; align-items: center; gap: var(--space-3); }
.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid transparent;
}
.icon-btn:hover {
  color: var(--color-text);
  background: var(--color-surface);
  border-color: var(--color-border);
}
.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
    padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-12)) var(--space-6);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 280ms ease, opacity 280ms ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    border-bottom: 1px solid var(--color-divider);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding-block: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-text);
  }
  .nav-toggle { display: inline-flex; }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.85em 1.4em;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn svg { width: 1em; height: 1em; }

/* ───── Hero ───── */
.hero {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24)) clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-text-muted);
}
.hero h1 {
  font-size: var(--text-hero);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}
.hero-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 38ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Stitched-label hero card */
.stitch-card {
  position: relative;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 3vw, var(--space-12));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stitch-card::before {
  content: '';
  position: absolute;
  inset: var(--space-3);
  border: 1px dashed var(--color-border);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.label-logo {
  display: block;
  width: min(13rem, 78%);
  height: auto;
  margin: 0 auto var(--space-5);
}
.stitch-card h3 {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}
.stitch-card .since {
  text-align: center;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.stitch-card .label-rows {
  display: grid;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.stitch-card .label-rows div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  border-top: 1px dotted var(--color-divider);
  padding-top: var(--space-3);
}
.stitch-card .label-rows div:first-child { border-top: none; padding-top: 0; }
.stitch-card .label-rows dt {
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}
.stitch-card .label-rows dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

/* ───── Trust bar ───── */
.trust {
  border-block: 1px solid var(--color-divider);
  background: var(--color-surface);
  padding-block: var(--space-6);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
@media (max-width: 720px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-6); }
}
.trust-row div {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.trust-row .tnum {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  line-height: 1;
}
.trust-row .tlabel {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
}

/* ───── Sections ───── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: var(--text-2xl);
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.section-head .tag {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

/* ───── Story ───── */
.story {
  background: var(--color-surface);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(var(--space-10), 7vw, var(--space-20));
  align-items: start;
}
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
}
.story-prose p { font-size: var(--text-base); margin-bottom: var(--space-5); color: var(--color-text); }
.story-prose p:last-child { margin-bottom: 0; }
.story-prose .accent { color: var(--color-text-muted); font-style: italic; }
.story-aside {
  position: relative;
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.story-aside::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 14%, var(--color-seaglass-soft) 0%, transparent 38%),
    radial-gradient(circle at 92% 88%, var(--color-coral-soft) 0%, transparent 35%);
  opacity: 0.45;
  mix-blend-mode: multiply;
  z-index: 0;
}
[data-theme='dark'] .story-aside::after { mix-blend-mode: screen; opacity: 0.35; }
.story-aside > * { position: relative; z-index: 1; }
.story-aside .quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-6);
}
.story-aside .quote-attrib {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
}
.story-aside hr {
  border: 0;
  border-top: 1px solid var(--color-divider);
  margin-block: var(--space-6);
}
.timeline {
  display: grid;
  gap: var(--space-4);
  font-size: var(--text-sm);
}
.timeline .row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-4);
  align-items: baseline;
}
.timeline .year {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.timeline .what { color: var(--color-text-muted); }

/* ───── Shop categories ───── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
}
.cat {
  position: relative;
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-6);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.cat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-text-muted);
}
.cat .num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.4em;
  color: var(--color-text-faint);
}
.cat h3 {
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
}
.cat p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.cat .glyph {
  position: absolute;
  right: clamp(var(--space-4), 3vw, var(--space-8));
  bottom: clamp(var(--space-4), 3vw, var(--space-8));
  color: var(--color-primary);
  opacity: 0.85;
}
.cat--feature { grid-column: span 6; min-height: 320px; }
.cat--feature h3 { font-size: var(--text-2xl); }
.cat--feature { background: var(--color-bg); }
.cat--half { grid-column: span 6; }
.cat--third { grid-column: span 4; }
.cat--two-third { grid-column: span 8; }
@media (max-width: 820px) {
  .cat--feature, .cat--half, .cat--third, .cat--two-third { grid-column: span 12; }
}

/* ───── Reviews ───── */
.reviews { background: var(--color-surface); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.review .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-coral);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.review blockquote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.3;
  color: var(--color-text);
}
.review .byline {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  margin-top: auto;
}
.reviews-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ───── Visit ───── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }
.visit-info dl {
  display: grid;
  gap: var(--space-5);
}
.visit-info dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.visit-info dd {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.35;
}
.visit-info dd a { color: inherit; border-bottom: 1px solid var(--color-divider); }
.visit-info dd a:hover { border-bottom-color: var(--color-primary); color: var(--color-primary); }
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.hours-table {
  width: 100%;
  margin-top: var(--space-2);
}
.hours-table th, .hours-table td {
  padding: var(--space-2) 0;
  text-align: left;
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px dotted var(--color-divider);
  font-family: var(--font-body);
}
.hours-table th { font-weight: 500; color: var(--color-text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-size: var(--text-xs); }
.hours-table tr:last-child td, .hours-table tr:last-child th { border-bottom: none; }
.hours-note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* Map embed card */
.map-card {
  position: relative;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.map-embed {
  width: 100%;
  flex: 1 1 auto;
  min-height: 300px;
  border: 0;
  display: block;
}
.map-caption {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface-2);
}
.map-caption .pin { color: var(--color-primary); flex-shrink: 0; }
.map-caption .map-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.map-caption .map-meta strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--color-text);
}
.map-caption .map-meta span { font-size: var(--text-xs); color: var(--color-text-muted); }
.map-caption .map-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: var(--text-sm);
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-divider);
}
.map-caption .map-link:hover { border-bottom-color: var(--color-primary); }
@media (max-width: 540px) {
  .map-caption { flex-wrap: wrap; }
  .map-caption .map-link { margin-left: 0; }
}

/* ───── FAQ ───── */
.faq { background: var(--color-surface); }
.faq-list {
  display: grid;
  gap: var(--space-3);
  max-width: 880px;
}
.faq details {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  transition: border-color var(--transition-interactive);
}
.faq details[open] { border-color: var(--color-text-muted); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 200ms ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  font-family: var(--font-body);
}

/* ───── Footer ───── */
.footer {
  padding-block: var(--space-16);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-weight: 500;
}
.footer ul { list-style: none; display: grid; gap: var(--space-2); font-size: var(--text-sm); }
.footer ul a { color: var(--color-text); }
.footer ul a:hover { color: var(--color-primary); }
.footer .colophon {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); max-width: 28ch; }
.footer-brand p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ───── Family badge ───── */
.fam-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  background: var(--color-surface);
}
.fam-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-coral);
}

/* small helpers */
.divider-rule {
  height: 1px;
  background: var(--color-divider);
  border: 0;
  margin: 0;
}

/* ───── Palette switcher chip ───── */
.palette-name {
  display: none;
}

/* ───── Gallery / Lookbook ───── */
.gallery .section-head { margin-bottom: var(--space-6); }
.gallery-intro {
  max-width: 64ch;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}
.lookbook {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
  grid-auto-rows: clamp(170px, 22vw, 240px);
}
.shot {
  position: relative;
  isolation: isolate;
  grid-column: span 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-end;
  padding: clamp(var(--space-5), 2.4vw, var(--space-8));
  color: #fff;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.shot::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--shot-grad, var(--color-primary));
  transition: transform var(--transition-interactive);
}
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(20, 14, 8, 0.42), rgba(20, 14, 8, 0) 58%);
}
.shot:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.shot:hover::before { transform: scale(1.04); }
.shot figcaption {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.12;
  letter-spacing: 0.005em;
  max-width: 18ch;
  text-shadow: 0 1px 12px rgba(20, 14, 8, 0.35);
}
.shot-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: ui-monospace, 'SF Mono', 'Menlo', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(20, 14, 8, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 0.34em 0.7em;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.94);
}
/* tones */
.shot--teal { --shot-grad: linear-gradient(152deg, #0d4a52, #1c7a86 58%, #8ab9a8); }
.shot--seaglass { --shot-grad: linear-gradient(152deg, #4f968a, #8ab9a8 55%, #cfe1dc); }
.shot--seaglass2 { --shot-grad: linear-gradient(152deg, #1c7a86, #6fb0a4 70%, #d3e4dd); }
.shot--coral { --shot-grad: linear-gradient(152deg, #bb4f37, #d96a4f 52%, #f1c8b9); }
.shot--dusk { --shot-grad: linear-gradient(162deg, #0f2e2d, #0d4a52 58%, #2a6a66); }
.shot--sand { --shot-grad: linear-gradient(152deg, #c6a468, #e0d6bd 58%, #f5efe1); color: #3a3322; }
.shot--sand::after { background: linear-gradient(to top, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 58%); }
.shot--sand figcaption { text-shadow: 0 1px 10px rgba(255, 255, 255, 0.5); }
.shot--sand .shot-tag { background: rgba(58, 51, 34, 0.16); color: #463d28; }
/* layout spans */
.shot--a { grid-column: span 7; grid-row: span 2; }
.shot--b { grid-column: span 5; }
.shot--c { grid-column: span 5; }
@media (max-width: 820px) {
  .shot--a { grid-column: span 12; grid-row: span 2; }
  .shot--b, .shot--c, .shot--d, .shot--e, .shot--f,
  .shot--g, .shot--h, .shot--i { grid-column: span 6; }
}
@media (max-width: 540px) {
  .lookbook { grid-auto-rows: 200px; }
  .lookbook .shot { grid-column: span 12 !important; grid-row: auto !important; }
}

/* ───── Newsletter band ───── */
.newsletter {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, color-mix(in oklab, var(--color-seaglass) 70%, transparent) 0, transparent 42%),
    radial-gradient(circle at 88% 86%, color-mix(in oklab, var(--color-coral) 60%, transparent) 0, transparent 42%);
  opacity: 0.28;
  pointer-events: none;
}
.news-card {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: var(--space-5);
  justify-items: center;
}
.news-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: color-mix(in oklab, var(--color-text-inverse) 78%, transparent);
}
.newsletter h2 {
  font-size: var(--text-2xl);
  color: var(--color-text-inverse);
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.newsletter p {
  color: color-mix(in oklab, var(--color-text-inverse) 84%, transparent);
  max-width: 54ch;
}
.news-form {
  display: flex;
  gap: var(--space-3);
  width: 100%;
  max-width: 480px;
  margin-top: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}
.news-form input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.85em 1.2em;
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-surface-2);
  border: 1px solid color-mix(in oklab, var(--color-text-inverse) 30%, transparent);
  border-radius: var(--radius-full);
}
.news-form input::placeholder { color: var(--color-text-faint); }
.news-form input:focus-visible { outline-color: var(--color-text-inverse); }
.news-form .btn {
  flex: 0 0 auto;
  background: var(--color-text-inverse);
  color: var(--color-primary);
  border-color: transparent;
}
.news-form .btn:hover {
  background: color-mix(in oklab, var(--color-text-inverse) 90%, var(--color-primary));
  color: var(--color-primary);
  transform: translateY(-1px);
}
.news-thanks {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-inverse);
  margin: var(--space-2) 0;
}
.news-fine {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: color-mix(in oklab, var(--color-text-inverse) 70%, transparent);
}

/* Real photo inside a lookbook tile */
.shot--photo::before { display: none; }
.shot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -2;
}

/* ───── Brands ───── */
.brands { background: var(--color-surface); }
.brands .section-head { margin-bottom: var(--space-6); }
.brands-intro {
  max-width: 64ch;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}
.brand-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  list-style: none;
}
.brand-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 104px;
  padding: var(--space-6) var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-text);
  max-width: none;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive), color var(--transition-interactive);
}
.brand-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-text-muted);
  color: var(--color-primary);
}
