/* =========================================================
   Appelman Transport — Premium Equine Transport
   Design system
   Palette : warm stable-oak ink, bone, saddle cognac, brass
   Type    : Bodoni Moda (display) / Marcellus (labels) / Hanken Grotesk (body)
   ========================================================= */

:root {
  /* Colour */
  --ink:      #16140F;   /* warm near-black, dark stable oak     */
  --ink-2:    #211D16;   /* lifted dark for panels/cards         */
  --ink-3:    #2C2820;   /* hairline-on-dark base                */
  --bone:     #F1EBDF;   /* warm bone — primary light surface    */
  --bone-2:   #E7DDCC;   /* deeper bone panel                    */
  --ivory:    #FBF8F2;   /* lightest                             */
  --green:    #2C382E;   /* deep loden, occasional accent        */
  --cognac:   #8A5A2B;   /* saddle-leather accent on light       */
  --brass:    #C6A15B;   /* metallic highlight / 3D line         */
  --brass-2:  #D9BC82;   /* lighter brass                        */

  /* Text roles */
  --tx-dark-strong: #16140F;
  --tx-dark-soft:   #4A4336;
  --tx-light-strong:#FBF8F2;
  --tx-light-soft:  #D6CEBD;

  /* Type */
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-label:   "Marcellus", Georgia, serif;
  --f-body:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale (fluid) */
  --step--1: clamp(0.78rem, 0.74rem + 0.18vw, 0.88rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.35rem + 1.1vw, 2.4rem);
  --step-3:  clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);
  --step-4:  clamp(2.8rem, 1.9rem + 4.4vw, 6rem);
  --step-5:  clamp(3.4rem, 2rem + 6.6vw, 8.2rem);

  /* Spacing / layout */
  --pad-x: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1280px;
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 2px;
  --line: rgba(198, 161, 91, 0.30);   /* brass hairline */
  --line-soft: rgba(84, 77, 64, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--tx-dark-strong);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--brass); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); position: relative; }
.section--ink { background: var(--ink); color: var(--tx-light-strong); }
.section--bone { background: var(--bone); }
.section--green { background: var(--green); color: var(--tx-light-strong); }

.eyebrow {
  font-family: var(--f-label);
  font-size: var(--step--1);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cognac);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.section--ink .eyebrow, .section--green .eyebrow { color: var(--brass); }

.display {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.lead {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--tx-dark-soft);
  font-weight: 400;
  max-width: 46ch;
}
.section--ink .lead, .section--green .lead { color: var(--tx-light-soft); }

.serif-accent { font-family: var(--f-display); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-label);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
  white-space: nowrap;
}
.btn span { position: relative; z-index: 2; }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  z-index: 1;
}
.btn:hover::after, .btn:focus-visible::after { transform: translateY(0); }

/* solid dark button (for light backgrounds) */
.btn--solid { background: var(--ink); color: var(--ivory); }
.btn--solid::after { background: var(--cognac); }

/* solid light button (for dark backgrounds) */
.btn--light { background: var(--ivory); color: var(--ink); }
.btn--light::after { background: var(--brass); }

/* ghost / outline */
.btn--ghost { border: 1px solid var(--line); color: inherit; }
.btn--ghost::after { background: var(--brass); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); border-color: transparent; }

.arrow { transition: transform 0.45s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.3rem;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(22, 20, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.85rem;
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--ivory);
}
.brand__mark { width: 42px; height: 42px; flex: none; object-fit: contain; }
.brand__name {
  font-family: var(--f-display); font-weight: 600;
  font-size: 1.15rem; letter-spacing: 0.04em; line-height: 1;
}
.brand__name small {
  display: block;
  font-family: var(--f-label);
  font-size: 0.52rem; letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px; font-weight: 400;
}
.nav__links {
  display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.8rem);
}
.nav__link {
  font-family: var(--f-label);
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tx-light-soft);
  position: relative; padding-block: 0.3rem;
  transition: color 0.4s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ivory); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { display: inline-flex; }
.nav__cta .btn { padding: 0.75rem 1.5rem; }

/* burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative; z-index: 120;
}
.burger span {
  position: absolute; left: 9px; right: 9px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad-x);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 11vw, 3.6rem);
  color: var(--ivory);
  padding-block: 0.4rem;
  display: flex; align-items: baseline; gap: 1rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu a span { font-family: var(--f-label); font-size: 0.8rem; color: var(--brass); letter-spacing: 0.2em; }
.mobile-menu__foot {
  margin-top: 2.5rem; color: var(--tx-light-soft);
  font-size: var(--step--1); letter-spacing: 0.04em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.hero__canvas {
  position: absolute; inset: 0; z-index: 1;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0.42;
  filter: grayscale(0.25) contrast(1.02) brightness(0.72) sepia(0.12);
}
/* mobile / no-webgl fallback: no 3D, so let the photo carry the hero */
.hero--static .hero__photo {
  opacity: 0.62;
  filter: grayscale(0.18) contrast(1.03) brightness(0.82) sepia(0.08);
}
.hero--static .hero__canvas { display: none; }
.hero__veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(22,20,15,0) 30%, rgba(22,20,15,0.55) 75%, rgba(22,20,15,0.92) 100%),
    linear-gradient(to top, rgba(22,20,15,0.96) 0%, rgba(22,20,15,0.45) 45%, rgba(22,20,15,0.25) 100%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__eyebrow { margin-bottom: clamp(1.5rem, 3vw, 2.2rem); }
.hero__title {
  font-size: var(--step-5);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; }
.hero__title em { font-style: italic; color: var(--brass-2); font-weight: 500; }
.hero__sub {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 52ch;
  color: var(--tx-light-soft);
  font-size: var(--step-1);
  line-height: 1.5;
}
.hero__actions {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  display: flex; flex-wrap: wrap; gap: 1rem;
}
.hero__scroll {
  position: absolute; z-index: 3;
  right: var(--pad-x); bottom: clamp(3rem, 7vw, 6rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: var(--f-label); font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--tx-light-soft);
  writing-mode: vertical-rl;
}
.hero__scroll i {
  writing-mode: horizontal-tb;
  width: 1px; height: 54px; background: linear-gradient(var(--brass), transparent);
  display: block;
}

/* ---------- Generic section heading ---------- */
.sec-head {
  display: grid; gap: 1.4rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 30ch;
}
.sec-head h2 { font-size: var(--step-3); }
.sec-head--wide { max-width: none; }
.two-col {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 0.95fr 1.05fr; }
  .two-col--titleside { grid-template-columns: 0.8fr 1.2fr; }
}

/* ---------- Intro statement ---------- */
.statement {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--step-3);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.statement em { font-style: italic; color: var(--cognac); }
.intro__body { display: grid; gap: 1.5rem; align-content: start; }
.intro__body p { color: var(--tx-dark-soft); max-width: 48ch; }

/* feature list */
.ledger { display: grid; gap: 0; margin-top: 0.5rem; }
.ledger li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  align-items: baseline;
  padding-block: 1.05rem;
  border-top: 1px solid var(--line-soft);
}
.ledger li:last-child { border-bottom: 1px solid var(--line-soft); }
.ledger .num {
  font-family: var(--f-label); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--cognac);
}
.section--ink .ledger li, .section--green .ledger li { border-color: var(--ink-3); }
.section--ink .ledger .num, .section--green .ledger .num { color: var(--brass); }
.ledger .lbl { font-family: var(--f-body); font-weight: 500; }
.ledger .lbl small { display: block; font-weight: 400; color: var(--tx-dark-soft); margin-top: 0.2rem; }
.section--ink .ledger .lbl small { color: var(--tx-light-soft); }

/* ---------- Stats ---------- */
.stats {
  display: grid; gap: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: clamp(1.8rem, 4vw, 3rem) 1.2rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.stat:nth-child(2n) { border-right: none; }
@media (min-width: 760px) {
  .stat { border-bottom: none; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: none; }
}
.stat__num {
  font-family: var(--f-display); font-weight: 600;
  font-size: var(--step-4); line-height: 1; letter-spacing: -0.02em;
  color: var(--ivory);
}
.stat__num .suffix { color: var(--brass); }
.stat__label {
  margin-top: 0.8rem;
  font-family: var(--f-label); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--tx-light-soft);
}

/* ---------- Process ---------- */
.process { display: grid; gap: clamp(1.5rem, 3vw, 2rem); }
@media (min-width: 880px) { .process { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
  display: grid; gap: 1rem; align-content: start;
}
.step__no {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: var(--step-3); color: var(--brass); line-height: 1;
}
.step h3 { font-family: var(--f-display); font-weight: 600; font-size: var(--step-2); }
.step p { color: var(--tx-light-soft); max-width: 34ch; }
.step__img {
  margin-top: 0.6rem;
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius);
  background: var(--ink-2) center/cover no-repeat;
  position: relative;
}
.step__img::after {
  content:""; position:absolute; inset:0;
  box-shadow: inset 0 0 0 1px var(--line);
  background: linear-gradient(to top, rgba(22,20,15,0.5), transparent 60%);
}

/* ---------- Framed image / figure ---------- */
.figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-2);
}
.figure::after {
  content:""; position:absolute; inset:0;
  box-shadow: inset 0 0 0 1px var(--line);
  pointer-events: none;
}
.figure img { width: 100%; height: 100%; object-fit: cover; display:block; }
.figure--tall { aspect-ratio: 3 / 4; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1 / 1; }
.figure__cap {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-family: var(--f-label); font-size: 0.66rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ivory);
  background: rgba(22,20,15,0.55); backdrop-filter: blur(6px);
  padding: 0.5rem 0.9rem; border-radius: 999px;
}
.parallax-media { overflow: hidden; }
.parallax-media img { will-change: transform; }

/* ---------- Standards grid ---------- */
.standards { display: grid; gap: 0; }
@media (min-width: 720px) { .standards { grid-template-columns: repeat(2, 1fr); } }
.standard {
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.4rem,3vw,2rem) clamp(1.6rem,3vw,2.2rem) 0;
  border-top: 1px solid var(--ink-3);
  display: grid; gap: 0.6rem; align-content: start;
}
.standard__k {
  font-family: var(--f-label); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass);
}
.standard h3 { font-family: var(--f-display); font-weight: 600; font-size: var(--step-1); }
.standard p { color: var(--tx-light-soft); max-width: 38ch; font-size: var(--step--1); line-height: 1.6; }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: 24ch; margin-inline: auto; }
.quote blockquote {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: var(--step-3); line-height: 1.25; letter-spacing: -0.01em;
}
.quote .by {
  margin-top: 2rem; font-family: var(--f-label);
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass);
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: var(--step-4); max-width: 16ch; margin-inline: auto; }
.cta-band p { margin: 1.4rem auto 2.4rem; max-width: 44ch; color: var(--tx-light-soft); }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; background: var(--ink); color: var(--ivory);
  padding-top: clamp(8rem, 16vw, 12rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.page-hero__photo {
  position:absolute; inset:0;
  background-size: cover; background-position: center 35%;
  opacity: 0.3; filter: grayscale(0.3) brightness(0.7) sepia(0.1);
}
.page-hero__veil {
  position:absolute; inset:0;
  background: linear-gradient(to top, var(--ink), rgba(22,20,15,0.55));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: var(--step-4); font-weight: 600; max-width: 18ch; margin-top: 1.4rem; }
.page-hero p { margin-top: 1.4rem; max-width: 50ch; color: var(--tx-light-soft); font-size: var(--step-1); }

/* ---------- About specifics ---------- */
.story p { color: var(--tx-dark-soft); max-width: 60ch; margin-bottom: 1.3rem; }
.story p.drop:first-letter {
  font-family: var(--f-display); font-weight: 600;
  float: left; font-size: 3.6em; line-height: 0.78; padding: 0.1em 0.12em 0 0; color: var(--cognac);
}
.values { display: grid; gap: 0; }
@media (min-width: 760px){ .values { grid-template-columns: repeat(3,1fr); } }
.value {
  padding: clamp(1.6rem,3vw,2.2rem) 1.4rem clamp(1.6rem,3vw,2.2rem) 0;
  border-top: 1px solid var(--line-soft);
  display:grid; gap: 0.7rem; align-content:start;
}
.value .vno { font-family: var(--f-display); font-style: italic; color: var(--cognac); font-size: var(--step-1); }
.value h3 { font-family: var(--f-display); font-weight: 600; font-size: var(--step-1); }
.value p { color: var(--tx-dark-soft); font-size: var(--step--1); line-height: 1.6; max-width: 32ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem,5vw,4.5rem); grid-template-columns: 1fr; }
@media (min-width: 920px){ .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }

.form { display: grid; gap: 1.5rem; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-family: var(--f-label); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--tx-dark-soft);
}
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cognac);
  box-shadow: 0 0 0 3px rgba(138,90,43,0.12);
}
.field-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 560px){ .field-row { grid-template-columns: 1fr 1fr; } }
.form__submit { justify-self: start; margin-top: 0.4rem; }
.form__note { font-size: var(--step--1); color: var(--tx-dark-soft); }

.contact-aside { display: grid; gap: 2rem; align-content: start; }
.contact-card {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem; display: grid; gap: 0.35rem;
}
.contact-card .k {
  font-family: var(--f-label); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cognac);
}
.contact-card .v { font-size: var(--step-1); font-family: var(--f-display); font-weight: 500; }
.contact-card a.v:hover { color: var(--cognac); }
.contact-card .meta { color: var(--tx-dark-soft); font-size: var(--step--1); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--tx-light-soft);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem;
}
.footer-top {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
  padding-bottom: 3rem; border-bottom: 1px solid var(--ink-3);
}
@media (min-width: 820px){ .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand__name { font-size: 1.5rem; }
.footer-brand p { margin-top: 1.2rem; max-width: 38ch; color: var(--tx-light-soft); }
.footer-col h4 {
  font-family: var(--f-label); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 1.2rem; font-weight: 400;
}
.footer-col a, .footer-col p { display: block; padding-block: 0.35rem; color: var(--tx-light-soft); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  margin-top: 2.2rem; font-size: var(--step--1); color: var(--tx-light-soft);
}
.footer-bottom a:hover { color: var(--ivory); }

/* ---------- Reveal (GSAP base state) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Responsive nav ---------- */
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
}

/* ---------- Mobile hero / type tuning ---------- */
@media (max-width: 700px) {
  .hero {
    align-items: flex-end;
    padding-top: 6.5rem;          /* clear the fixed header */
    padding-bottom: 2.8rem;
    min-height: 100svh;
  }
  .hero__eyebrow { margin-bottom: 1rem; }
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    gap: 0.6rem;
  }
  .eyebrow::before { width: 1.4rem; }
  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.06;
    max-width: 18ch;
  }
  .hero__sub {
    font-size: var(--step-0);
    margin-top: 1.2rem;
    max-width: 40ch;
  }
  .hero__actions { margin-top: 1.6rem; gap: 0.8rem; }
  .hero__actions .btn { padding: 0.9rem 1.5rem; }
  .hero__scroll { display: none; }   /* avoid clutter on small screens */
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__scroll i { background: var(--brass); }
}
