/* ============================================================
   PEODE Design — showroom stylesheet
   Palette: ivory canvas, ink type, antique-brass accent
   Type: Cormorant Garamond (display) / Inter (UI)
   ============================================================ */

:root {
  --ivory: #F6F3ED;
  --paper: #FBF9F5;
  --ink: #1B1915;
  --ink-soft: #33302A;
  --stone: #6F6858;
  --line: #E2DBCD;
  --brass: #8F7A45;
  --dark: #17140F;
  --dark-2: #14110C;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1400px;
  --pad: clamp(20px, 4vw, 48px);
  --gut: clamp(8px, 0.9vw, 14px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.dia {
  font-style: normal;
  font-size: .55em;
  vertical-align: .25em;
  color: var(--brass);
  letter-spacing: 0;
}

/* ---------- type ---------- */

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: .005em;
}

h1 { font-size: clamp(52px, 8vw, 118px); font-weight: 400; }
h2 { font-size: clamp(36px, 4.4vw, 62px); }

h1 em, h2 em { font-style: italic; font-weight: 300; }
h2 em { font-weight: 400; color: var(--ink-soft); }

.eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 22px;
}

/* ---------- buttons & links ---------- */

.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 17px 38px 16px;
  background: transparent;
  cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease);
}

.btn:hover { background: var(--ink); color: var(--ivory); }
.btn--solid { background: var(--ink); color: var(--ivory); }
.btn--solid:hover { background: var(--ink-soft); }

.link-line {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 6px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.link-line::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .5s var(--ease);
}

.link-line:hover::after { transform: scaleX(.35); }

/* ---------- header ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  /* must sit ABOVE .mobile-menu (70) or the close button is buried by the overlay */
  z-index: 80;
  transition: background .4s ease, box-shadow .4s ease;
}

/* keeps the nav readable over bright hero imagery */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(246,243,237,.85), rgba(246,243,237,0));
  opacity: 1;
  transition: opacity .4s ease;
  pointer-events: none;
}

.header.is-scrolled::before { opacity: 0; }
.header__inner { z-index: 1; }

.header.is-scrolled {
  background: rgba(246, 243, 237, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header__nav { display: flex; gap: 34px; }
.header__nav--right { justify-content: flex-end; margin-right: 168px; }

.header__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 4px;
  position: relative;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.header__nav a:hover::after { transform: scaleX(1); }

.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .38em;
  margin-right: -.38em;
  line-height: 1;
}

.brand__sub {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: .48em;
  margin-right: -.48em;
  text-transform: uppercase;
  color: var(--stone);
}

.brand__name--light { color: var(--ivory); }
.brand__sub--light { color: #A79E8C; }

.header__tel {
  position: absolute;
  right: var(--pad);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-decoration: none;
  color: var(--stone);
  transition: color .3s;
}

.header__tel:hover { color: var(--ink); }

.menu-btn {
  display: none;
  width: 40px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  z-index: 80;
}

.menu-btn span {
  display: block;
  height: 1px;
  width: 26px;
  background: var(--ink);
  transition: transform .35s var(--ease);
}

.menu-btn.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.mobile-menu.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

.mobile-menu__tel {
  font-family: var(--sans) !important;
  font-size: 12px !important;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--stone) !important;
  margin-top: 18px;
}

/* ============================================================
   HERO — full viewport, three panels
   ============================================================ */

.hero {
  position: relative;
  /* full viewport, but never absurdly tall on large displays —
     the cap also lets a sliver of the next section peek through */
  height: min(100svh, 1180px);
  min-height: 620px;
  overflow: hidden;
}

.hero__panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.hero__panel {
  overflow: hidden;
  position: relative;
}

.hero__panel + .hero__panel::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(246, 243, 237, .55);
  z-index: 2;
}

.hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroIn 1.6s var(--ease) both;
}

.hero__panel:nth-child(2) img { animation-delay: .1s; }
.hero__panel:nth-child(3) img { animation-delay: .2s; }

@keyframes heroIn {
  from { opacity: 0; transform: scale(1.07); }
  to   { opacity: 1; transform: scale(1); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(246,243,237,.26) 0%,
      rgba(246,243,237,.06) 32%,
      rgba(246,243,237,.06) 52%,
      rgba(246,243,237,.34) 72%,
      rgba(246,243,237,.82) 88%,
      var(--ivory) 100%);
}

.hero__content {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(74px, 13vh, 150px);
  z-index: 3;
  text-align: center;
  padding: 0 var(--pad);
  animation: fadeUp 1.2s var(--ease) .35s both;
}

/* soft halo so type stays crisp without washing out the panels */
.hero__content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(94%, 1020px);
  height: 165%;
  background: radial-gradient(ellipse at center,
    rgba(246,243,237,.92) 0%,
    rgba(246,243,237,.80) 32%,
    rgba(246,243,237,.42) 54%,
    rgba(246,243,237,0) 72%);
  z-index: 0;
  pointer-events: none;
}

.hero__content > * { position: relative; z-index: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero__eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 22px; }

.hero__lede {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 50ch;
  margin: 0 auto;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: rgba(27, 25, 21, .22);
  overflow: hidden;
}

.hero__scroll span {
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: scrollCue 2.4s ease-in-out infinite;
}

@keyframes scrollCue {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ---------- marquee ---------- */

.marquee {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 42s linear infinite;
}

.marquee__track span {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--stone);
  padding-right: 12px;
}

.marquee__track .dia { font-size: .5em; padding: 0 12px; }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- sections ---------- */

.section { padding: clamp(74px, 10vh, 128px) 0 0; }
.section--tight { padding-bottom: 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(32px, 4.5vh, 52px);
}

.section-head__note {
  font-size: 12px;
  color: var(--stone);
  text-align: right;
  line-height: 2;
}

/* ---------- filters ---------- */

.filters {
  display: flex;
  gap: clamp(16px, 2.4vw, 36px);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: clamp(20px, 3vh, 34px);
}

.filter {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  padding-bottom: 6px;
  position: relative;
  transition: color .3s;
}

.filter::after {
  content: "";
  position: absolute;
  left: 0; bottom: -17px;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}

.filter:hover, .filter.is-active { color: var(--ink); }
.filter.is-active::after { transform: scaleX(1); }

/* ---------- collection grid (dense, near full-bleed) ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gut);
  padding: 0 var(--gut);
}

.card.is-hidden { display: none; }

.card__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--paper);
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.card__zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.card__zoom:hover img { transform: scale(1.05); }

.card figcaption {
  margin: 11px 0 4px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- editorial (full bleed) ---------- */

.editorial {
  position: relative;
  margin-top: clamp(74px, 10vh, 128px);
  min-height: clamp(460px, 76vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.editorial__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.editorial__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23,20,15,.72), rgba(23,20,15,.38));
}

.editorial__inner {
  position: relative;
  text-align: center;
  color: var(--ivory);
  padding: 80px var(--pad);
  max-width: 760px;
}

.editorial .eyebrow { color: #C3BBA8; }

.editorial__quote {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 1.04;
}

.editorial__quote em { font-style: italic; font-weight: 300; }

.editorial__text {
  color: #D6CFC0;
  max-width: 46ch;
  margin: 26px auto 0;
}

/* ---------- detail band (full bleed) ---------- */

.detail-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* ---------- looks strip (full-length styled shots) ---------- */

/* 9 looks in 3 columns = three clean rows, and full-length shots get room */
.looks-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gut);
  padding: 0 var(--gut);
}

.look .card__zoom { aspect-ratio: 3 / 4; }

.detail { overflow: hidden; position: relative; }

.detail img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform 1.1s var(--ease);
}

.detail:hover img { transform: scale(1.06); }

.detail figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(23,20,15,.62), transparent);
}

/* ---------- split editorial ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: clamp(74px, 10vh, 128px);
}

.split__media { overflow: hidden; }

.split__media img {
  width: 100%;
  height: 100%;
  max-height: 88vh;
  object-fit: cover;
  object-position: center 25%;
}

.split__copy { padding: clamp(48px, 7vw, 110px); }
.split__copy p:not(.eyebrow) { color: var(--stone); max-width: 44ch; margin: 26px 0 32px; }

/* ---------- about ---------- */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5.4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about__text { margin-top: 34px; }
.about__text p { color: var(--stone); max-width: 54ch; }
.about__text p + p { margin-top: 18px; }

.about__media { position: relative; padding-bottom: 76px; }

.about__img--main {
  width: 80%;
  margin-left: auto;
  box-shadow: 0 30px 70px rgba(27, 25, 21, .12);
}

.about__img--offset {
  position: absolute;
  left: 0; bottom: 0;
  width: 46%;
  border: 6px solid var(--ivory);
  box-shadow: 0 22px 55px rgba(27, 25, 21, .16);
}

/* ---------- contact ---------- */

.contact {
  padding: clamp(80px, 11vh, 140px) 0 clamp(92px, 12vh, 150px);
  text-align: center;
}

.contact__inner { max-width: 680px; }
.contact__lede { color: var(--stone); margin: 24px 0 50px; }

.form { text-align: left; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.field { margin-bottom: 28px; }

.field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}

.field .opt { text-transform: none; letter-spacing: .06em; font-weight: 400; }

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  padding: 10px 0 12px;
  border-radius: 0;
  transition: border-color .3s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--ink); }

.form .btn { margin-top: 8px; }
.form__error { color: #8C3B2E; font-size: 13px; margin-bottom: 18px; }
.form__error a { color: inherit; }

.form__success {
  padding: 56px 0 28px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
}

.form__success-mark { color: var(--brass); font-size: 14px; margin-bottom: 16px; }

/* ---------- footer ---------- */

.footer {
  background: var(--dark-2);
  color: var(--ivory);
  padding: clamp(60px, 8vh, 96px) 0 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(246, 243, 237, .12);
}

.footer__brand { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }

.footer__tag {
  color: #A79E8C;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  margin-top: 20px;
  line-height: 1.6;
}

.footer__nav { display: flex; flex-direction: column; gap: 14px; }

.footer__nav a, .footer__tel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  opacity: .82;
  transition: opacity .3s;
}

.footer__nav a:hover, .footer__tel:hover { opacity: 1; }

.footer__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #A79E8C;
  margin-bottom: 16px;
}

.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 11px;
  color: #8D8471;
}

/* ---------- lightbox ---------- */

.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(246, 243, 237, .97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.lightbox.is-open { opacity: 1; }

.lightbox__stage { max-width: min(86vw, 820px); text-align: center; }

.lightbox__img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  box-shadow: 0 40px 100px rgba(27, 25, 21, .22);
}

.lightbox__caption {
  margin-top: 20px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
}

.lightbox__count {
  margin-top: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--stone);
}

.lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  transition: transform .3s var(--ease);
}

.lightbox__close:hover { transform: rotate(90deg); }

.lightbox__arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 22px;
  opacity: .7;
  transition: opacity .3s, transform .3s var(--ease);
}

.lightbox__arrow:hover { opacity: 1; }
.lightbox__arrow--prev:hover { transform: translateX(-4px); }
.lightbox__arrow--next:hover { transform: translateX(4px); }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__panel img, .hero__content { animation: none; }
  .hero__scroll span { animation: none; }
  .card__zoom img, .detail img { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1180px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .detail-band { grid-template-columns: repeat(3, 1fr); }
  .looks-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .header__nav, .header__tel { display: none; }
  .menu-btn { display: flex; }
  .header__inner { grid-template-columns: 40px 1fr 40px; }

  .hero__panels { grid-template-columns: 1fr 1fr; }
  .hero__panel:nth-child(3) { display: none; }

  .split { grid-template-columns: 1fr; }
  .split__media img { max-height: 62vh; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 540px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }

  /* the mobile panel is dark up top (hair + black knit) — keep the wordmark readable */
  .header::before {
    background: linear-gradient(to bottom,
      rgba(246,243,237,.95) 0%,
      rgba(246,243,237,.80) 45%,
      rgba(246,243,237,0) 100%);
    height: 150%;
  }

  /* ---- hero: single panel (the olive look) ---- */
  .hero { height: min(94svh, 780px); min-height: 520px; }
  .hero__panels { grid-template-columns: 1fr; }
  .hero__panel:nth-child(2), .hero__panel:nth-child(3) { display: none; }

  .hero__veil {
    background: linear-gradient(to bottom,
      rgba(246,243,237,.34) 0%,
      rgba(246,243,237,.12) 26%,
      rgba(246,243,237,.24) 44%,
      rgba(246,243,237,.72) 64%,
      rgba(246,243,237,.95) 82%,
      var(--ivory) 100%);
  }

  .hero__content { bottom: clamp(46px, 8vh, 84px); }
  .hero__content::before { width: 130%; height: 150%; }
  .hero__eyebrow { font-size: 9.5px; letter-spacing: .3em; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(44px, 13.5vw, 60px); margin-bottom: 18px; }
  .hero__lede { font-size: 14.5px; max-width: 34ch; }
  .hero__cta { flex-direction: column; gap: 20px; margin-top: 30px; }
  .hero__cta .btn { width: 100%; max-width: 320px; padding: 18px 24px 17px; }
  .br-desk { display: none; }
  .hero__scroll { height: 34px; bottom: 18px; }

  .marquee { padding: 12px 0; }
  .marquee__track span { font-size: 16px; }

  /* ---- sections ---- */
  .section { padding-top: clamp(56px, 8vh, 84px); }

  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
  .section-head__note { text-align: left; font-size: 12.5px; line-height: 1.85; }
  .section-head__note br { display: none; }

  /* filters become a swipeable strip instead of wrapping */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 22px;
    padding-bottom: 14px;
    margin-bottom: 22px;
    /* bleed to the screen edges so the strip reads as scrollable */
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .filters::-webkit-scrollbar { display: none; }
  /* taller hit area — 11px type alone gives a ~23px target */
  .filter { flex: 0 0 auto; font-size: 11px; padding: 12px 0 14px; }
  .filter::after { bottom: -14px; }

  /* ---- collection ---- */
  .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 8px; }
  .card figcaption {
    font-size: 9.5px;
    letter-spacing: .11em;
    line-height: 1.5;
    margin: 9px 0 2px;
  }

  /* ---- editorial ---- */
  .editorial { min-height: 62vh; }
  .editorial__inner { padding: 64px var(--pad); }
  .editorial__quote { font-size: clamp(36px, 11vw, 50px); }
  .editorial__text { font-size: 14.5px; }

  /* ---- craft band + looks ---- */
  .detail-band { grid-template-columns: repeat(2, 1fr); }
  .looks-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 8px; }
  .detail figcaption { font-size: 8.5px; letter-spacing: .16em; padding: 22px 8px 10px; }

  /* ---- split ---- */
  .split { margin-top: clamp(56px, 8vh, 84px); }
  .split__media img { max-height: 68vh; }
  .split__copy { padding: 44px var(--pad) 0; }
  .split__copy p:not(.eyebrow) { margin: 20px 0 26px; }

  /* ---- about ---- */
  .about__grid { gap: 40px; }
  .about__text { margin-top: 26px; }
  .about__media { max-width: none; padding-bottom: 64px; }
  .about__img--main { width: 76%; }
  .about__img--offset { width: 48%; border-width: 5px; }

  /* ---- contact ---- */
  .contact { padding: clamp(64px, 9vh, 96px) 0 clamp(72px, 10vh, 110px); }
  .contact__lede { margin: 20px 0 38px; }
  .contact__lede br { display: none; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field textarea { font-size: 17px; }
  .form .btn { width: 100%; padding: 18px 24px 17px; }

  /* ---- footer ---- */
  .footer__grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
  .footer__base { flex-direction: column; gap: 6px; }

  /* ---- lightbox: bigger tap targets, arrows out of the way ---- */
  .lightbox__stage { max-width: 92vw; }
  .lightbox__img { max-height: 62vh; }
  .lightbox__arrow { position: absolute; bottom: 12px; padding: 18px 26px; opacity: .85; }
  .lightbox__arrow--prev { left: 6vw; }
  .lightbox__arrow--next { right: 6vw; }
  .lightbox__close { top: 10px; right: 12px; padding: 8px 12px; font-size: 32px; }
  .lightbox__caption { margin-top: 16px; }
}

/* very small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 42px; }
  .grid { gap: 6px; padding: 0 6px; }
  .card figcaption { font-size: 9px; letter-spacing: .08em; }
}
