/* =====================================================================
   SIXTEEN ELITE — styles.css
   Angled elements, condensed display type, light + dark section rhythm.
   Brand colors live in :root just below.
   ===================================================================== */

:root {
  --bg:        #0B0C0E;
  --bg-elev:   #131519;
  --panel:     #171A1F;
  --line:      rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);

  --light:     #EAE8E2;   /* warm light section bg */
  --light-2:   #E1DFD8;
  --card:      #FAF9F5;   /* cards on the light sections */
  --ink:       #16171B;   /* dark text on light */
  --ink-dim:   #55575F;
  --ink-line:  rgba(20,21,26,0.12);

  --text:      #F4F3EF;   /* light text on dark */
  --text-dim:  #9A9DA5;

  --accent:      #FF5A1F;  /* orange */
  --accent-bright:#FF7A3D;
  --accent-deep: #D8430A;
  --on-accent:   #180A03;  /* near-black text on orange */
  --accent-rgb:  255,90,31;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 74px;
  --skew: -8deg;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 17px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* anchor landing: bare ids (pillar cards etc.) sit just under the fixed nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
/* full-bleed section: its photo edge lines up exactly with the nav bottom */
.meetpat { scroll-margin-top: var(--nav-h); }
/* padded sections: scroll past their internal top padding so the heading,
   not empty space, lands ~28px under the nav (each clamp mirrors that
   section's padding-block; negative scroll margins are valid) */
.why, .pillars { scroll-margin-top: calc(var(--nav-h) + 28px - clamp(60px, 8vw, 108px)); }
.quotes { scroll-margin-top: calc(var(--nav-h) + 28px - clamp(64px, 9vw, 116px)); }
.act { scroll-margin-top: calc(var(--nav-h) + 28px - clamp(58px, 8vw, 104px)); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--accent); color: #000; padding: 10px 16px; font-weight: 800; }
.skip-link:focus { left: 0; }

/* --- Type helpers --- */
.kicker {
  display: inline-block; font-style: italic; text-transform: uppercase;
  font-weight: 800; letter-spacing: 0.12em; font-size: 0.78rem;
  color: var(--accent); margin-bottom: 18px;
}
.kicker--dark { color: var(--accent-deep); }
.h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.02;
  letter-spacing: 0.008em; text-transform: uppercase; color: var(--text);
}
.h2--dark { color: var(--ink); }
.u-accent { color: var(--accent); }

/* --- Buttons (slanted parallelogram fill via ::before, upright text) --- */
.btn {
  position: relative; z-index: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 0.92rem; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 14px 28px; border: 0; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease);
}
.btn--accent { background: var(--accent); color: var(--on-accent); }
.btn--dark   { background: #131417; color: var(--text); }
.btn--ghost  { background: rgba(255,255,255,0.03); color: var(--text); box-shadow: inset 0 0 0 1.5px var(--line); }
/* slant: fill moves to a skewed ::before so the label stays straight */
.btn--slant { background: transparent; box-shadow: none; }
.btn--slant::before {
  content: ""; position: absolute; inset: 0; z-index: -1; transform: skewX(var(--skew));
  transition: filter .2s, box-shadow .2s, border-color .2s;
}
.btn--accent.btn--slant::before { background: var(--accent); box-shadow: 0 12px 26px -14px rgba(var(--accent-rgb),0.75); }
.btn--dark.btn--slant::before   { background: #131417; }
.btn--ghost.btn--slant::before  { background: rgba(255,255,255,0.03); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost.btn--slant:hover { box-shadow: none; }
.btn--ghost.btn--slant:hover::before { box-shadow: inset 0 0 0 1.5px var(--text); }
.btn:hover { transform: translateY(-2px); }
.btn--slant:hover::before { filter: brightness(1.07); }
.btn--sm { padding: 10px 18px; font-size: 0.8rem; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
/* native <button> doesn't inherit font-family (falls back to Arial) or line-height
   (resets to normal) — match the <a> buttons so text + the arrow glyph render identically */
button.btn { font-family: inherit; line-height: inherit; }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--text); }
/* the → arrow glyphs nudge right on hover */
.btn span[aria-hidden],
.pillar__more span[aria-hidden],
.facility__dir span[aria-hidden] { transition: transform .25s var(--ease); }
.btn:hover span[aria-hidden],
.pillar__more:hover span[aria-hidden],
.facility__dir:hover span[aria-hidden] { transform: translateX(4px); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center; border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
}
.nav.is-scrolled { background: rgba(11,12,14,0.86); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) { position: relative; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dim); transition: color .2s; }
.nav__links a:not(.btn):hover, .nav__links a:not(.btn).is-active { color: var(--text); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav__links a:not(.btn):hover::after, .nav__links a:not(.btn).is-active::after { transform: scaleX(1); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__toggle[aria-expanded="true"] span { background: var(--text); }
body.menu-open { overflow: hidden; }
/* backdrop-filter on the nav makes it the containing block for the fixed
   full-screen menu, breaking inset:0 once scrolled — drop it while open */
body.menu-open .nav { backdrop-filter: none; transition: none; }

/* =====================================================================
   HERO
   ===================================================================== */
/* height leaves the stats strip peeking below the fold on desktop to tease the next section */
.hero { position: relative; min-height: 90svh; display: flex; align-items: center; overflow: hidden; padding-top: var(--nav-h); background: var(--bg); }
/* base framing (tablet/general): Pat toward the right, dark wall on the left for the copy. Desktop centers (below). */
/* the frame only becomes a real box on small screens, where it crops the zoomed photo */
.hero__frame { display: contents; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 44% center; z-index: 0; }
@keyframes hero-drift { from { transform: scale(1.05); } to { transform: none; } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(11,12,14,0.97) 6%, rgba(11,12,14,0.88) 32%, rgba(11,12,14,0.5) 58%, rgba(11,12,14,0.34) 100%),
    linear-gradient(180deg, rgba(11,12,14,0.72) 0%, transparent 22%, transparent 62%, rgba(11,12,14,0.85) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__copy { max-width: 640px; }
.hero__title {
  font-family: var(--font-display); font-weight: 400; font-style: italic; text-transform: uppercase;
  font-size: clamp(3.3rem, 9.4vw, 7.2rem); line-height: 0.92; letter-spacing: 0.005em;
  text-shadow: 0 3px 40px rgba(0,0,0,0.5);
}
.hero__title br { line-height: 0; }
.hero__sub { margin: 24px 0 34px; font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: #E7E6E1; max-width: 42ch; }
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* right-column lockup (desktop only): name + signature + location, held inside the container grid */
.hero__lockup { display: none; flex-direction: column; align-items: flex-end; text-align: right; gap: 9px; flex: 0 0 auto; text-shadow: 0 2px 20px rgba(0,0,0,0.65); }
/* mobile-only signature overlay — hidden by default, shown over the photo on small screens */
.hero__sig-mob { display: none; }
.hero__lockup-name { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2.05rem); text-transform: uppercase; letter-spacing: 0.01em; line-height: 0.95; }
.hero__lockup-role { font-style: italic; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.hero__sig { width: clamp(150px, 13vw, 205px); height: auto; opacity: 0.9; margin: 6px 0 3px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
.hero__loc {
  margin-top: 5px;
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 11px 18px;
  background: rgba(11,12,14,0.55); box-shadow: inset 0 0 0 1.5px var(--line); backdrop-filter: blur(6px);
  transform: skewX(var(--skew));
}
.hero__loc > * { transform: skewX(calc(-1 * var(--skew))); }
.hero__loc-pin { color: var(--accent); }

/* DESKTOP: two-column hero — copy left, Pat slid left next to it, lockup within the grid on the right */
@media (min-width: 961px) {
  .hero__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 4vw, 64px); }
  .hero__copy { max-width: 600px; flex: 0 1 auto; }
  .hero__lockup { display: flex; }
  /* slow settle-in on load; killed by the global reduced-motion rule */
  .hero__bg { object-position: 49% center; animation: hero-drift 2.6s var(--ease) both; }
}

/* =====================================================================
   STATS STRIP (social proof)
   ===================================================================== */
.stats { background: var(--bg-elev); border-block: 1px solid var(--line); }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: clamp(26px, 3.4vw, 40px) clamp(18px, 2.6vw, 36px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat__ico { width: 26px; height: 26px; color: var(--accent); margin-bottom: 8px; }
.stat__ico svg { width: 100%; height: 100%; stroke-linecap: round; stroke-linejoin: round; }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 0.9; letter-spacing: 0.01em; }
.stat__label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }

/* =====================================================================
   WHY SIXTEEN ELITE (light — big numbered value props)
   ===================================================================== */
.why { background: #FFFFFF; color: var(--ink); padding-block: clamp(60px, 8vw, 108px); }
.why__inner { display: grid; grid-template-columns: 1.16fr 0.84fr; gap: clamp(28px, 4vw, 60px); align-items: stretch; }
.why__main { min-width: 0; }
.why__head { margin-bottom: clamp(18px, 3vw, 34px); }
.why__props { display: flex; flex-direction: column; }
.why__prop {
  display: grid; grid-template-columns: minmax(92px, 0.6fr) 3fr; gap: clamp(20px, 5vw, 60px);
  align-items: center; padding-block: clamp(24px, 3.4vw, 42px); border-top: 1px solid var(--ink-line);
}
.why__prop:last-child { border-bottom: 1px solid var(--ink-line); }
.why__big {
  font-family: var(--font-display); font-style: italic; font-size: clamp(3.4rem, 8vw, 6.2rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 2px var(--accent); letter-spacing: 0.04em;
}
.why__txt h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1; letter-spacing: 0.02em; color: var(--ink); margin-bottom: 10px; }
.why__txt p { color: #2C2D33; font-size: clamp(0.98rem, 1.4vw, 1.1rem); max-width: 60ch; }

/* FACILITY — gym image column worked in beside the props, location surfaced on it */
.why__figure { position: relative; overflow: hidden; min-height: clamp(420px, 52vh, 600px); }
.why__figure img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.why__figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(11,12,14,0.9) 0%, rgba(11,12,14,0.28) 26%, rgba(11,12,14,0) 48%);
}
.facility__card { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(22px, 2.4vw, 32px); }
.facility__addr { font-size: 1.0rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.facility__dir { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; color: var(--accent); }
.facility__dir:hover { opacity: 0.75; }
@media (max-width: 860px) {
  .why__inner { grid-template-columns: 1fr; gap: clamp(30px, 6vw, 44px); }
  .why__figure { min-height: 0; aspect-ratio: 4 / 5; }
  .why__figure img { object-position: 50% 26%; }
}

/* =====================================================================
   MEET PAT (dark)
   ===================================================================== */
/* MEET PAT — full-bleed action photo (left) fading into a dark copy panel (right) */
.meetpat { background: var(--bg); color: var(--text); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.meetpat__media { position: relative; min-height: clamp(440px, 62vh, 720px); }
.meetpat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.meetpat__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  /* eased fade (many stops = no visible kink) so the photo dissolves into the panel */
  background:
    linear-gradient(90deg,
      rgba(11,12,14,0)    40%,
      rgba(11,12,14,0.01) 49%,
      rgba(11,12,14,0.03) 56%,
      rgba(11,12,14,0.08) 62%,
      rgba(11,12,14,0.15) 68%,
      rgba(11,12,14,0.25) 74%,
      rgba(11,12,14,0.37) 79%,
      rgba(11,12,14,0.50) 84%,
      rgba(11,12,14,0.63) 88%,
      rgba(11,12,14,0.75) 92%,
      rgba(11,12,14,0.86) 95%,
      rgba(11,12,14,0.94) 97.5%,
      var(--bg)           100%),
    linear-gradient(180deg, rgba(11,12,14,0.16), rgba(11,12,14,0) 24%);
}
.meetpat__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 6vw, 100px) clamp(28px, 5vw, 92px);
  max-width: 640px;
}
.meetpat__copy .kicker { margin-bottom: 16px; }
.meetpat__copy .h2 { margin: 0 0 22px; }
.meetpat__body { color: var(--text); font-size: 1.06rem; line-height: 1.6; margin-bottom: 16px; }
/* flex column would stretch the button full-width — keep it hugging its label */
.meetpat__body + .btn { margin-top: 24px; align-self: flex-start; }

/* =====================================================================
   PROGRAMS  (white section · dark cards · photos fade into the card body)
   ===================================================================== */
.pillars { background: #FFFFFF; color: var(--ink); padding-block: clamp(60px, 8vw, 108px); }
.pillars__head { margin-bottom: clamp(28px, 4vw, 48px); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.pillar {
  display: flex; flex-direction: column; background: var(--panel);
  box-shadow: 0 26px 56px -30px rgba(0,0,0,0.45); overflow: hidden;
}
.pillar__media { position: relative; aspect-ratio: 16/12; overflow: hidden; }
.pillar__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pillar:hover .pillar__media img { transform: scale(1.05); }
/* fade the bottom of the photo down into the dark card body */
.pillar__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 46%, rgba(23,26,31,0.55) 74%, var(--panel) 100%); }
.pillar__body { padding: 16px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pillar__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 0.92; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text); white-space: nowrap; }
.pillar__kicker { font-style: italic; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; color: var(--accent); margin: 10px 0 12px; }
.pillar__who { color: var(--text); font-weight: 600; font-size: 0.98rem; margin-bottom: 14px; }
.pillar__list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.pillar__list li { position: relative; padding-left: 20px; color: var(--text-dim); font-size: 0.92rem; }
.pillar__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; background: var(--accent); transform: skewX(var(--skew)); }
.pillar__foot { margin-top: auto; border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.pillar__price { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.pillar__price b { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; }
.pillar__more { align-self: flex-start; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: var(--accent); transition: color .2s; display: inline-flex; gap: 7px; }
.pillar__more:hover { color: var(--accent-bright); }

/* =====================================================================
   RESULTS (dark)
   ===================================================================== */
.quotes { background: var(--bg); padding-block: clamp(64px, 9vw, 116px); }
.quotes__head { margin-bottom: clamp(18px, 3vw, 40px); }
/* borderless editorial: big quotes separated by thin rules, no boxes */
.quotes__list { display: flex; flex-direction: column; }
.quote {
  display: grid; grid-template-columns: auto 1fr; column-gap: clamp(16px, 3vw, 38px);
  align-items: start; padding-block: clamp(28px, 4vw, 52px); border-top: 1px solid var(--line);
}
.quote:last-child { border-bottom: 1px solid var(--line); }
.quote__mark { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 0.72; color: var(--accent); }
.quote blockquote { font-size: clamp(1.28rem, 2.7vw, 2.05rem); line-height: 1.4; color: #ECEAE3; font-weight: 400; letter-spacing: -0.01em; max-width: 46ch; }
.quote blockquote em { font-style: normal; font-weight: 600; color: var(--accent); }
.quote figcaption { grid-column: 2; margin-top: clamp(14px, 1.6vw, 20px); text-align: right; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dim); }
.quote__name { color: var(--accent); }

/* =====================================================================
   FINALE — READY TO BE ELITE + FORM
   Contained orange panel on the dark page: distinct from the dark
   testimonials above without going full bleed. Solid two-tone headline,
   cream boxed fields, dark send button. Edge-to-edge on phones.
   ===================================================================== */
.act { background: var(--bg); overflow: hidden; padding-block: clamp(58px, 8vw, 104px); }
.act__panel { background: var(--accent); padding: clamp(32px, 5vw, 72px); }
.act .kicker { color: #7A2E0C; }

.act__head { margin-bottom: clamp(32px, 4.5vw, 54px); }
.act__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.9rem, 8.4vw, 6.4rem); line-height: 0.98;
  letter-spacing: 0.008em; text-transform: uppercase; color: var(--on-accent);
}
.act__hl { color: var(--card); }
.act__note { margin-top: clamp(16px, 2.2vw, 24px); max-width: 52ch; font-size: 1.02rem; line-height: 1.6; color: #2A1206; }

/* cream boxed fields on orange */
.act__form { max-width: 860px; }
.act__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px clamp(18px, 2.4vw, 28px); }
.field--wide { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: #7A2E0C; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--card); color: var(--ink); font-family: inherit; font-size: 1.02rem;
  border: 2px solid transparent; border-radius: 0; padding: 13px 15px; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--on-accent); }
.field input:-webkit-autofill { -webkit-text-fill-color: var(--ink); transition: background-color 999999s; }
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23D8430A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 12px 8px;
}
.field option { background: var(--card); color: var(--ink); }

.act__actions { display: flex; align-items: center; gap: 14px 26px; flex-wrap: wrap; margin-top: clamp(22px, 3vw, 30px); }
.act__form-status { font-size: 0.98rem; font-weight: 700; line-height: 1.5; color: var(--on-accent); }
.act__form-status.is-error { color: var(--card); }

/* contact strip — ruled, three columns, dark on orange */
.act__details {
  list-style: none; padding: clamp(28px, 3.6vw, 42px) 0 0; margin-top: clamp(44px, 6vw, 76px);
  border-top: 1px solid rgba(24, 10, 3, 0.25);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px clamp(24px, 3.4vw, 48px);
}
.act__details li { display: flex; flex-direction: column; gap: 4px; }
.act__label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #7A2E0C; }
.act__details a { font-size: 1.0rem; font-weight: 600; color: var(--on-accent); }
.act__details a:hover { color: var(--card); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: #08090B; border-top: 1px solid var(--line); padding-block: 30px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px 28px; flex-wrap: wrap; }
.footer__info { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 26px; }
.footer__info a { font-size: 0.9rem; color: var(--text-dim); }
.footer__info a:hover { color: var(--accent); }
.footer__copy { font-size: 0.82rem; letter-spacing: 0.02em; color: var(--text-dim); }

/* =====================================================================
   REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
/* gentle stagger when sibling elements reveal together */
.hero__sub.reveal { transition-delay: .1s; }
.hero__cta.reveal { transition-delay: .2s; }
.hero__lockup.reveal { transition-delay: .3s; }
.why__prop.reveal:nth-child(2), .pillar.reveal:nth-child(2), .quote.reveal:nth-child(2) { transition-delay: .12s; }
.why__prop.reveal:nth-child(3), .pillar.reveal:nth-child(3), .quote.reveal:nth-child(3) { transition-delay: .24s; }
/* No scroll-reveal on phones — content just appears (the effect fights fast
   flick-scrolling and single-column stacking makes it feel repetitive). */
@media (max-width: 700px) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .meetpat { grid-template-columns: 1fr; }
  .meetpat__media { order: -1; min-height: clamp(340px, 52vh, 520px); }
  .meetpat__media img { object-position: 50% 22%; }
  .meetpat__media::after {
    background: linear-gradient(180deg,
      rgba(11,12,14,0)    50%,
      rgba(11,12,14,0.03) 62%,
      rgba(11,12,14,0.10) 68%,
      rgba(11,12,14,0.19) 73%,
      rgba(11,12,14,0.30) 78%,
      rgba(11,12,14,0.44) 82%,
      rgba(11,12,14,0.58) 86%,
      rgba(11,12,14,0.72) 90%,
      rgba(11,12,14,0.84) 93%,
      rgba(11,12,14,0.93) 96%,
      var(--bg)           100%);
  }
  .meetpat__copy { max-width: none; padding: clamp(30px, 7vw, 56px) var(--gutter) clamp(40px, 8vw, 64px); }
}
@media (max-width: 860px) {
  /* --- Full-screen mobile menu takeover --- */
  .brand      { position: relative; z-index: 3; }
  .nav__toggle { display: flex; position: relative; z-index: 3; }

  .nav__links {
    position: fixed; inset: 0; z-index: 1; counter-reset: navitem;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: clamp(2px, 1.2vh, 12px);
    padding: calc(var(--nav-h) + 5vh) var(--gutter) 6vh;
    background:
      radial-gradient(125% 90% at 100% 0%, rgba(var(--accent-rgb),0.16), transparent 55%),
      radial-gradient(120% 80% at 0% 100%, rgba(var(--accent-rgb),0.09), transparent 52%),
      rgba(9,10,12,0.98);
    backdrop-filter: blur(20px); overflow-y: auto;
    opacity: 0; visibility: hidden;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .5s var(--ease), opacity .3s ease, visibility 0s linear .5s;
  }
  .nav__links.is-open {
    opacity: 1; visibility: visible; clip-path: inset(0 0 0% 0);
    transition: clip-path .55s var(--ease), opacity .3s ease, visibility 0s;
  }

  /* big display-type links with editorial index numbers */
  .nav__links a:not(.btn) {
    position: relative; width: 100%;
    display: flex; align-items: baseline; gap: 16px;
    padding: clamp(4px, 1.2vh, 12px) 0; border-bottom: 0;
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(1.85rem, 8.5vw, 3.25rem); line-height: 1; white-space: nowrap;
    letter-spacing: 0.01em; text-transform: uppercase; color: var(--text);
    transition: color .25s var(--ease);
  }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links a:not(.btn)::before {
    counter-increment: navitem; content: "0" counter(navitem);
    font-family: var(--font-body); font-weight: 800; font-size: 0.78rem;
    letter-spacing: 0.14em; color: var(--accent); transform: translateY(-0.55em);
  }
  .nav__links a:not(.btn):hover,
  .nav__links a:not(.btn).is-active { color: var(--accent); }

  .nav__links .btn {
    align-self: stretch; justify-content: center; text-align: center;
    margin-top: clamp(20px, 4vh, 40px); font-size: 1rem; padding: 17px 28px;
  }

  /* staggered entrance — items fade + rise in sequence on open */
  .nav__links a:not(.btn),
  .nav__links .btn { opacity: 0; transform: translateY(24px); }
  .nav__links.is-open a:not(.btn),
  .nav__links.is-open .btn {
    opacity: 1; transform: translateY(0);
    transition: opacity .5s var(--ease), transform .55s var(--ease);
  }
  .nav__links.is-open a:nth-child(1) { transition-delay: .12s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: .18s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: .24s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: .30s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: .36s; }
  .nav__links.is-open a:nth-child(6) { transition-delay: .42s; }

  .why__prop { grid-template-columns: 1fr; gap: 2px; }
  .why__big { line-height: 0.9; margin-bottom: 3px; margin-left: -2px; }

  .pillar-grid { grid-template-columns: 1fr; gap: 16px; max-width: 460px; margin-inline: auto; }
  .pillar__title { font-size: 1.7rem; }

  /* finale panel runs edge-to-edge on small screens */
  .act .container { padding-inline: 0; }
  .act__panel { padding-inline: var(--gutter); }
  .act__details { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 620px) {
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { border-left: 0; }
  .act__fields { grid-template-columns: 1fr; }

  /* HERO — designfulltime style: Pat centered image up top, content stacked below on dark */
  .hero { flex-direction: column; align-items: stretch; min-height: auto; padding-top: 0; }
  /* the frame crops the zoomed photo so it can't bleed out below the gradient */
  .hero__frame { display: block; position: relative; width: 100%; height: 56vh; overflow: hidden; z-index: 0; }
  .hero__bg { object-position: 55% center; transform: scale(1.42); transform-origin: 67% 65%; }
  .hero::after {
    inset: 0 0 auto 0; height: 56vh;
    background: linear-gradient(180deg,
      rgba(11,12,14,0.1) 0%,
      rgba(11,12,14,0) 24%,
      rgba(11,12,14,0.12) 50%,
      rgba(11,12,14,0.42) 68%,
      rgba(11,12,14,0.72) 82%,
      rgba(11,12,14,0.92) 92%,
      var(--bg) 100%);
  }
  .hero__inner { position: relative; z-index: 2; margin-top: -9vh; padding-bottom: 42px; }
  .hero__copy { max-width: none; }
  .hero__title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  /* just Pat's signature, laid subtly over the photo — no full lockup on mobile.
     the paired white drop-shadows slightly fatten the strokes (thicker pen feel). */
  .hero__sig-mob {
    display: block; position: absolute; z-index: 3;
    top: calc(38vh + 8px); left: 28px; width: 96px; height: auto;
    opacity: 0.62;
    filter:
      drop-shadow(0.35px 0 0 rgba(255,255,255,0.7))
      drop-shadow(-0.35px 0 0 rgba(255,255,255,0.7))
      drop-shadow(0 2px 10px rgba(0,0,0,0.55));
    pointer-events: none;
  }
}
