/* =============================================================
   POSTMARK — Destination apparel, made for destination retail.
   Wholesale-demand story site.
   Palette + type from the official Postmark brand board:
   Headlines/Wordmark = GT America (grotesque)  → Archivo substitute
   Taglines/Accents/Body = Freight Text Pro      → Newsreader substitute
   Postmark-stamp motif (pine roundel + waves) throughout.
   ============================================================= */

:root{
  /* --- brand board palette --- */
  --navy:#1B2636;       /* Navy Ink   — primary dark */
  --navy-2:#26384c;     /* lifted navy for gradients */
  --navy-3:#131b28;     /* deepest navy */
  --salt:#F2EEE6;       /* Salt       — light paper */
  --salt-2:#e8e0d1;     /* deeper salt for bands */
  --sage:#6B7B6A;       /* Sage */
  --clay:#A35B3F;       /* Clay       — primary accent / CTA */
  --clay-ink:#8a4a33;   /* darker clay for hover */
  --dune:#D2B48C;       /* Dune */
  --coast:#4E6A7A;      /* Coast      — secondary accent */
  --charcoal:#2E2E2E;   /* Charcoal */

  /* semantic aliases */
  --ink:var(--navy);
  --ink-2:var(--navy-2);
  --ink-3:var(--navy-3);
  --paper:var(--salt);
  --paper-2:var(--salt-2);

  --on-dark:#F2EEE6;
  --on-dark-soft:#bdc2c9;
  --ink-body:#2c3742;   /* body copy on salt */
  --ink-soft:#5b6672;   /* muted body on salt */
  --line:#d9cfbc;       /* hairline on salt */
  --line-dark:rgba(242,238,230,.15);

  --head:'GT America','Archivo','Helvetica Neue',Arial,sans-serif;
  --serif:'Freight Text Pro','Newsreader',Georgia,'Times New Roman',serif;

  --maxw:1180px;
  --wide:1340px;
  --gutter:clamp(1.4rem,5vw,4.5rem);
  --ease:cubic-bezier(.2,.7,.2,1);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--serif);
  background:var(--paper);
  color:var(--ink-body);
  line-height:1.62;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
::selection{background:var(--clay);color:var(--salt)}

/* film grain — house aesthetic */
body::after{
  content:"";position:fixed;inset:0;z-index:60;pointer-events:none;opacity:.045;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   SHARED TYPE + UTILITIES
   ============================================================= */
.wrap{max-width:var(--maxw);margin:0 auto;padding-inline:var(--gutter)}
.wrap--wide{max-width:var(--wide)}
section{position:relative}
.pad{padding-block:clamp(4.5rem,11vw,9rem)}

.eyebrow{
  font-family:var(--head);font-weight:600;text-transform:uppercase;
  letter-spacing:.32em;font-size:.7rem;color:var(--clay);
  display:inline-flex;align-items:center;gap:.7rem;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--clay);opacity:.65}
.eyebrow.on-dark{color:var(--dune)}
.eyebrow.on-dark::before{background:var(--dune);opacity:.6}
.eyebrow.center{justify-content:center}

.wordmark{
  font-family:var(--head);font-weight:700;text-transform:uppercase;
  letter-spacing:.2em;line-height:1;
}

/* headlines = GT America (sans), typically all-caps */
.display{
  font-family:var(--head);font-weight:600;text-transform:uppercase;
  line-height:1.08;letter-spacing:.005em;
  font-size:clamp(1.9rem,4.6vw,3.4rem);color:var(--ink);
}
.display--sm{font-size:clamp(1.6rem,3.4vw,2.5rem)}
.display--lg{font-size:clamp(2.2rem,5.6vw,4.2rem)}

.lede{font-size:clamp(1.08rem,1.5vw,1.28rem);line-height:1.7}

/* taglines / accents = Freight Text Pro italic (serif) */
.accent{font-family:var(--serif);font-style:italic;font-weight:500}

/* two-column section header: copy left, photo fills the space at right */
.sec-head{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.6rem);align-items:center}
.sec-head__text{min-width:0}
.sec-head__media{position:relative;overflow:hidden;border-radius:4px;align-self:stretch;min-height:clamp(250px,30vw,380px);background:var(--paper-2)}
.sec-head__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform 1.2s var(--ease)}
.sec-head__media:hover img{transform:scale(1.04)}
.sec-head__media--tall{min-height:clamp(320px,38vw,520px)}
@media(max-width:820px){
  .sec-head{grid-template-columns:1fr;gap:1.7rem}
  .sec-head__media{min-height:230px;order:2}
  .sec-head__media--tall{min-height:300px}
}

/* recurring brand signature */
.stamp-line{
  font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:clamp(1.35rem,2.6vw,1.95rem);color:var(--clay);
}
.stamp-line.on-dark{color:var(--dune)}

/* postmark divider */
.pm-divider{display:flex;align-items:center;gap:1.1rem;justify-content:center}
.pm-divider .rule{height:1px;width:min(90px,16vw);background:var(--line)}
.pm-divider .stamp{width:38px;height:38px;color:var(--clay);opacity:.9}
.pm-divider.on-dark .rule{background:var(--line-dark)}
.pm-divider.on-dark .stamp{color:var(--dune)}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn{
  display:inline-flex;align-items:center;gap:.7rem;
  font-family:var(--head);font-weight:700;text-transform:uppercase;
  letter-spacing:.16em;font-size:.74rem;
  padding:1.02rem 1.6rem;border:1px solid transparent;border-radius:2px;
  cursor:pointer;transition:transform .3s var(--ease),background .3s,color .3s,border-color .3s;
}
.btn .arw{transition:transform .3s var(--ease)}
.btn:hover .arw{transform:translateX(5px)}
.btn--clay{background:var(--clay);color:var(--salt)}
.btn--clay:hover{background:var(--clay-ink)}
.btn--ghost{background:transparent;color:var(--salt);border-color:rgba(242,238,230,.42)}
.btn--ghost:hover{background:var(--salt);color:var(--navy);border-color:var(--salt)}
.btn--ink{background:var(--navy);color:var(--salt)}
.btn--ink:hover{background:var(--navy-2)}
.btn--outline-ink{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn--outline-ink:hover{background:var(--navy);color:var(--salt)}

/* =============================================================
   REVEAL
   ============================================================= */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal[data-d="1"]{transition-delay:.09s}
.reveal[data-d="2"]{transition-delay:.18s}
.reveal[data-d="3"]{transition-delay:.27s}
.reveal[data-d="4"]{transition-delay:.36s}
.no-js .reveal{opacity:1;transform:none}

/* =============================================================
   NAV
   ============================================================= */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:40;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.05rem var(--gutter);
  transition:background .5s var(--ease),padding .5s var(--ease),border-color .5s var(--ease);
  border-bottom:1px solid transparent;
}
.nav.at-top{background:transparent}
.nav.scrolled{
  background:rgba(27,38,54,.92);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line-dark);padding-block:.68rem;
}
.nav__brand{display:flex;align-items:center;gap:.6rem;color:var(--salt)}
.nav__brand .stamp{width:34px;height:34px;color:var(--salt);flex:none}
.nav__word{font-family:var(--head);font-weight:700;text-transform:uppercase;letter-spacing:.24em;font-size:1.02rem;padding-left:.1em}
.nav__links{display:flex;align-items:center;gap:2.05rem}
.nav__links a{
  font-family:var(--head);font-weight:600;text-transform:uppercase;
  letter-spacing:.15em;font-size:.72rem;color:var(--salt);opacity:.82;
  transition:opacity .25s;position:relative;padding-block:.3rem;
}
.nav__links a:hover{opacity:1}
.nav__links a:not(.nav__cta)::after{
  content:"";position:absolute;left:0;bottom:-2px;height:1px;width:0;
  background:var(--dune);transition:width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after{width:100%}
.nav__cta{
  color:var(--salt);background:var(--clay);opacity:1;
  padding:.6rem 1rem;border-radius:2px;font-size:.68rem;
  display:inline-flex;align-items:center;gap:.45rem;transition:background .3s;
}
.nav__cta:hover{background:var(--clay-ink)}
.nav__toggle{display:none;background:none;border:0;color:var(--salt);cursor:pointer;font-size:1.35rem;line-height:1}

/* =============================================================
   HERO
   ============================================================= */
.hero{position:relative;min-height:100vh;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden}
.hero__photo{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 45%;z-index:0;
  animation:heroZoom 22s ease-out forwards;
}
@keyframes heroZoom{from{transform:scale(1.08)}to{transform:scale(1)}}
.hero__grad{position:absolute;inset:0;z-index:1;
  background:linear-gradient(to top,rgba(19,27,40,.94) 0%,rgba(19,27,40,.5) 40%,rgba(19,27,40,.1) 66%,rgba(19,27,40,.4) 100%)}
.hero__inner{position:relative;z-index:2;width:100%;max-width:var(--wide);margin:0 auto;padding:0 var(--gutter) clamp(3rem,7vw,5.5rem)}
.hero__eyebrow{color:var(--dune)}
.hero__eyebrow::before{background:var(--dune);opacity:.65}
.hero__word{
  color:var(--salt);font-size:clamp(3rem,12vw,9.5rem);letter-spacing:.16em;
  margin:.5rem 0 .25rem;text-shadow:0 2px 44px rgba(0,0,0,.34);
}
.hero__tag{
  font-family:var(--serif);font-style:italic;font-weight:500;color:var(--salt);
  font-size:clamp(1.55rem,3.6vw,2.7rem);line-height:1.08;
}
.hero__sub{color:var(--on-dark-soft);max-width:36ch;margin-top:1.1rem;font-size:clamp(1rem,1.4vw,1.16rem)}
.hero__row{display:flex;align-items:center;gap:1.6rem;flex-wrap:wrap;margin-top:2rem}
.hero__proof{font-family:var(--serif);font-style:italic;color:var(--dune);font-size:1.1rem}
.hero__scroll{
  position:absolute;left:50%;bottom:1.5rem;transform:translateX(-50%);z-index:2;
  color:var(--on-dark-soft);font-family:var(--head);text-transform:uppercase;
  letter-spacing:.28em;font-size:.6rem;display:flex;flex-direction:column;align-items:center;gap:.5rem;
}
.hero__scroll .dot{width:1px;height:34px;background:linear-gradient(var(--dune),transparent);animation:scrollpulse 2.2s var(--ease) infinite}
@keyframes scrollpulse{0%,100%{opacity:.3;transform:scaleY(.6)}50%{opacity:1;transform:scaleY(1)}}
.hero__stamp{
  position:absolute;top:clamp(5.5rem,12vw,7.5rem);right:var(--gutter);z-index:2;
  width:clamp(104px,13vw,160px);height:auto;color:var(--salt);opacity:.52;transform:rotate(-10deg);
}

/* =============================================================
   SECTION 2 — THE CORE IDEA
   ============================================================= */
.idea{background:var(--paper)}
.idea__display{margin:1.1rem 0 0}
.idea__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,6vw,5rem);align-items:start;margin-top:clamp(2rem,5vw,3.4rem)}
.idea__places{list-style:none;border-top:1px solid var(--line)}
.idea__places li{
  padding:1.1rem 0;border-bottom:1px solid var(--line);
  font-family:var(--serif);font-size:clamp(1.2rem,2.3vw,1.6rem);color:var(--ink);
  font-weight:400;line-height:1.25;display:flex;gap:1rem;align-items:baseline;
}
.idea__places .n{font-family:var(--head);font-weight:600;font-size:.7rem;color:var(--clay);letter-spacing:.08em;transform:translateY(-.2em)}
.idea__places .it{font-style:italic;color:var(--coast)}
.idea__aside p{margin-bottom:1.1rem;color:var(--ink-soft)}
.idea__made{font-family:var(--head);text-transform:uppercase;font-weight:600;font-size:clamp(1.2rem,2.2vw,1.6rem);letter-spacing:.01em;color:var(--ink) !important;line-height:1.15;margin-bottom:1.3rem !important}
.idea__proof{margin-top:1.5rem}

/* places triptych */
.triptych{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(.7rem,1.4vw,1.1rem);margin-top:clamp(2.4rem,5vw,3.6rem)}
.trip{position:relative;overflow:hidden;border-radius:3px;aspect-ratio:4/5;background:var(--paper-2)}
.trip img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--ease);filter:saturate(.94)}
.trip:hover img{transform:scale(1.05)}
.trip__grad{position:absolute;inset:0;background:linear-gradient(to top,rgba(19,27,40,.72),transparent 55%)}
.trip__label{
  position:absolute;left:1rem;bottom:.9rem;color:var(--salt);
  font-family:var(--head);text-transform:uppercase;letter-spacing:.18em;
  font-size:.72rem;font-weight:600;display:flex;align-items:center;gap:.5rem;
}
.trip__label::before{content:"";width:6px;height:6px;border:1.5px solid var(--dune);border-radius:50%}

/* =============================================================
   SECTION 3 — THE POSTMARK STANDARD
   ============================================================= */
.standard{background:var(--ink);color:var(--on-dark)}
.standard__display{color:var(--salt);margin:1.1rem 0 1rem}
.standard__lead{font-family:var(--serif);font-style:italic;font-weight:500;color:var(--dune);font-size:clamp(1.2rem,2.3vw,1.6rem);margin-bottom:1rem}
.standard__intro{color:var(--on-dark-soft);max-width:54ch}
.standard__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1.6rem,3vw,2.4rem);margin-top:clamp(2.6rem,6vw,4rem)}
.pillar{position:relative;padding-top:1.5rem;border-top:1px solid var(--line-dark)}
.pillar__num{font-family:var(--head);font-weight:700;font-size:.72rem;letter-spacing:.12em;color:var(--dune);opacity:.85}
.pillar__k{font-family:var(--head);font-weight:600;font-size:1.12rem;color:var(--salt);margin:.7rem 0 .55rem;letter-spacing:.005em}
.pillar__d{font-family:var(--serif);font-size:1rem;color:var(--on-dark-soft);line-height:1.6}

.standard__foot{
  margin-top:clamp(3rem,6vw,4.6rem);padding-top:clamp(2.4rem,5vw,3.4rem);border-top:1px solid var(--line-dark);
  display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(1.6rem,5vw,4rem);align-items:center;
}
.standard__foot h3{font-family:var(--head);text-transform:uppercase;font-weight:600;font-size:clamp(1.6rem,3.2vw,2.4rem);color:var(--salt);line-height:1.1}
.standard__foot p{font-family:var(--serif);color:var(--on-dark-soft)}

/* =============================================================
   SECTION 4 — ONLY FOUND THERE (image band)
   ============================================================= */
.found{position:relative;color:var(--salt);overflow:hidden;isolation:isolate}
.found__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 42%;z-index:-2}
.found::before{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(102deg,rgba(19,27,40,.92) 0%,rgba(19,27,40,.72) 46%,rgba(19,27,40,.32) 100%)}
.found .wrap{padding-block:clamp(5rem,13vw,9rem)}
.found__inner{max-width:46ch}
.found__display{color:var(--salt);margin:1.1rem 0 1.3rem}
.found__lead{font-family:var(--serif);font-style:italic;font-weight:500;font-size:clamp(1.3rem,2.6vw,1.8rem);color:var(--salt);margin-bottom:1.1rem}
.found__p{font-family:var(--serif);color:var(--on-dark-soft);max-width:42ch;margin-bottom:2rem}
.found__steps{display:flex;gap:1.5rem;flex-wrap:wrap;margin-bottom:1.8rem;list-style:none}
.found__steps li{display:flex;align-items:center;gap:.7rem;font-family:var(--head);text-transform:uppercase;letter-spacing:.14em;font-size:.76rem;font-weight:600;color:var(--salt)}
.found__steps .num{width:26px;height:26px;border:1px solid var(--dune);border-radius:50%;display:grid;place-items:center;font-size:.66rem;color:var(--dune)}
.found__steps li:not(:last-child)::after{content:"→";margin-left:.35rem;color:var(--dune);opacity:.75}

/* =============================================================
   SECTION 5 — PRODUCT PHILOSOPHY
   ============================================================= */
.product{background:var(--paper-2)}
.product__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,5rem);align-items:center}
.product__display{margin:1.1rem 0 1.2rem}
.product p{color:var(--ink-soft);margin-bottom:1.1rem}
.product__list{list-style:none;margin:1.5rem 0 0}
.product__list li{
  display:flex;align-items:flex-start;gap:.9rem;padding:.85rem 0;border-top:1px solid var(--line);
  font-family:var(--serif);font-size:1.15rem;color:var(--ink);font-weight:400;
}
.product__list li:last-child{border-bottom:1px solid var(--line)}
.product__list .tree{width:22px;height:22px;color:var(--sage);flex:none;margin-top:.2rem}
.product__punch{
  margin-top:1.9rem !important;font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:clamp(1.25rem,2.4vw,1.6rem);color:var(--clay) !important;line-height:1.25;
}
/* stamp card visual */
.product__card{
  position:relative;background:var(--salt);border-radius:4px;padding:clamp(1.6rem,3.5vw,2.6rem);
  box-shadow:0 30px 70px -42px rgba(27,38,54,.6);border:1px solid var(--line);
}
.product__card::before,.product__card::after{content:"";position:absolute;left:6%;right:6%;border-top:2px dashed var(--line)}
.product__card::before{top:0}.product__card::after{bottom:0}
.stampcard__top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.4rem}
.stampcard__stamp{width:82px;height:82px;color:var(--navy);opacity:.92;transform:rotate(-8deg)}
.stampcard__meta{text-align:right;font-family:var(--head);text-transform:uppercase;letter-spacing:.14em;font-size:.62rem;color:var(--ink-soft);line-height:1.95}
.stampcard__meta strong{color:var(--ink)}
.stampcard__big{font-family:var(--head);text-transform:uppercase;font-weight:600;font-size:clamp(1.35rem,2.7vw,1.9rem);color:var(--ink);line-height:1.12}
.stampcard__rule{height:1px;background:var(--line);margin:1.3rem 0}
.stampcard__tags{display:flex;flex-wrap:wrap;gap:.5rem}
.stampcard__tag{font-family:var(--head);text-transform:uppercase;letter-spacing:.1em;font-size:.62rem;font-weight:600;color:var(--sage);background:rgba(107,123,106,.12);border:1px solid rgba(107,123,106,.3);padding:.4rem .7rem;border-radius:2px}
.stampcard__wave{margin-top:1.4rem;color:var(--clay);opacity:.55;width:130px;height:auto}

/* =============================================================
   SECTION 6 — FOR RETAILERS
   ============================================================= */
.retail{background:var(--ink);color:var(--on-dark)}
.retail__display{color:var(--salt);margin:1.1rem 0 1rem}
.retail__intro{font-family:var(--serif);color:var(--on-dark-soft);max-width:56ch}
.retail__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.6rem,3vw,2.4rem);margin-top:clamp(2.6rem,6vw,3.8rem)}
.benefit{padding-top:1.5rem;border-top:1px solid var(--line-dark)}
.benefit__n{font-family:var(--head);font-weight:700;font-size:.72rem;letter-spacing:.12em;color:var(--clay)}
.benefit__k{font-family:var(--head);font-weight:600;font-size:1.14rem;color:var(--salt);margin:.7rem 0 .5rem}
.benefit__d{font-family:var(--serif);font-size:1rem;color:var(--on-dark-soft);line-height:1.6}

/* inquiry form */
.inquire{
  margin-top:clamp(3rem,6vw,4.4rem);padding-top:clamp(2.6rem,5vw,3.4rem);border-top:1px solid var(--line-dark);
  display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(1.8rem,5vw,4rem);align-items:start;
}
.inquire__pitch h3{font-family:var(--head);text-transform:uppercase;font-weight:600;font-size:clamp(1.4rem,2.9vw,2rem);color:var(--salt);line-height:1.12;margin-bottom:.9rem}
.inquire__pitch p{font-family:var(--serif);color:var(--on-dark-soft);max-width:34ch}
.inquire__pitch .stamp{width:52px;height:52px;color:var(--dune);opacity:.8;margin-top:1.4rem}
.inquire__form{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.inquire__form .full{grid-column:1/-1}
.field{display:flex;flex-direction:column;gap:.4rem}
.field label{font-family:var(--head);text-transform:uppercase;letter-spacing:.14em;font-size:.62rem;color:var(--dune)}
.field input,.field textarea{
  font-family:var(--serif);font-size:.98rem;color:var(--salt);
  background:rgba(242,238,230,.06);border:1px solid var(--line-dark);border-radius:2px;
  padding:.82rem .9rem;transition:border-color .3s,background .3s;
}
.field input::placeholder,.field textarea::placeholder{color:rgba(189,194,201,.55)}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--dune);background:rgba(242,238,230,.1)}
.field textarea{resize:vertical;min-height:96px}
.inquire__actions{grid-column:1/-1;display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap;margin-top:.3rem}
.inquire__fine{font-family:var(--serif);font-size:.86rem;color:var(--on-dark-soft)}
.inquire__ok{display:none;grid-column:1/-1;align-items:center;gap:.7rem;color:var(--dune);font-family:var(--serif);font-style:italic;font-size:1.18rem}
.inquire.done .inquire__form>*:not(.inquire__ok){display:none}
.inquire.done .inquire__ok{display:flex}
.inquire__ok .stamp{width:30px;height:30px;color:var(--dune)}

/* =============================================================
   SECTION 7 — CLOSING
   ============================================================= */
.closing{position:relative;color:var(--salt);overflow:hidden;isolation:isolate;text-align:center}
.closing__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 52%;z-index:-2}
.closing::before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(to bottom,rgba(19,27,40,.5),rgba(19,27,40,.8))}
.closing .wrap{padding-block:clamp(6rem,16vw,11rem);display:flex;flex-direction:column;align-items:center}
.closing__go{font-family:var(--head);text-transform:uppercase;font-weight:600;font-size:clamp(2.4rem,8vw,5.6rem);line-height:1;color:var(--salt);letter-spacing:.01em}
.closing__go .it{font-family:var(--serif);text-transform:none;font-style:italic;font-weight:500;display:block;color:var(--dune);letter-spacing:0;margin-top:.2em}
.closing__word{color:var(--salt);font-size:clamp(1.6rem,4.5vw,2.6rem);letter-spacing:.4em;margin:2.2rem 0 .8rem;padding-left:.4em}
.closing__proof{font-family:var(--serif);font-style:italic;font-size:clamp(1.15rem,2.2vw,1.5rem);color:var(--dune)}
.closing__stamp{width:52px;height:52px;color:var(--salt);opacity:.9;margin-bottom:1.6rem}

/* =============================================================
   FOOTER
   ============================================================= */
.footer{background:var(--charcoal);color:var(--on-dark-soft);padding-block:clamp(3rem,6vw,4.5rem)}
.footer__top{display:flex;justify-content:space-between;gap:2rem;flex-wrap:wrap;align-items:flex-start}
.footer__brand{display:flex;align-items:center;gap:.6rem;color:var(--salt)}
.footer__brand .stamp{width:34px;height:34px;color:var(--salt)}
.footer__brand .fw{font-family:var(--head);font-weight:700;text-transform:uppercase;letter-spacing:.24em;font-size:1.02rem}
.footer__tag{margin-top:.7rem;font-family:var(--serif);font-style:italic;color:var(--dune);font-size:1.08rem}
.footer__nav{display:flex;flex-wrap:wrap;gap:1.4rem}
.footer__nav a{font-family:var(--head);text-transform:uppercase;letter-spacing:.14em;font-size:.7rem;color:var(--on-dark-soft);transition:color .25s}
.footer__nav a:hover{color:var(--salt)}
.footer__bottom{margin-top:clamp(2.2rem,4vw,3rem);padding-top:1.4rem;border-top:1px solid var(--line-dark);display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-family:var(--serif);font-size:.82rem}
.footer__bottom .co{color:var(--dune)}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media(max-width:900px){
  .idea__grid{grid-template-columns:1fr}
  .standard__grid{grid-template-columns:1fr 1fr}
  .standard__foot{grid-template-columns:1fr}
  .product__grid{grid-template-columns:1fr}
  .product__frame{order:-1}
  .retail__grid{grid-template-columns:1fr}
  .inquire{grid-template-columns:1fr}
}
@media(max-width:760px){
  .nav__links{
    position:fixed;inset:0 0 auto 0;flex-direction:column;align-items:flex-start;gap:1.3rem;
    background:rgba(27,38,54,.98);backdrop-filter:blur(14px);
    padding:5.5rem var(--gutter) 2.2rem;transform:translateY(-100%);
    transition:transform .5s var(--ease);border-bottom:1px solid var(--line-dark);
  }
  .nav.open .nav__links{transform:translateY(0)}
  .nav__toggle{display:block;z-index:2}
  .nav__links a{font-size:1rem}
  .nav__cta{font-size:.8rem}
}
@media(max-width:560px){
  .triptych{grid-template-columns:1fr;gap:.9rem}
  .trip{aspect-ratio:16/10}
  .standard__grid{grid-template-columns:1fr}
  .inquire__form{grid-template-columns:1fr}
  .hero__stamp{width:82px;top:4.8rem;opacity:.4}
}
@media(prefers-reduced-motion:reduce){
  .hero__photo{animation:none}
  .reveal{transition:none}
  .hero__scroll .dot{animation:none}
}
