/* ===========================================================
   Oakley Lumber — Organic Clay archetype (wood-craft tuning)
   Direction: Editorial heritage, linear narrative cinematic scroll
   Zero overlap with Bracken/Bass/Superscapes skeleton
   =========================================================== */

:root {
  /* Palette — warm paper + wood + forest */
  --c-bg:        #F6EFE3;          /* cream paper */
  --c-bg-soft:   #EEE4D0;
  --c-bg-deep:   #2B1D10;          /* rich brown for dark bands */
  --c-bg-night:  #1A1107;
  --c-paper:     #FFFFFF;
  --c-ink:       #1E1509;
  --c-ink-2:     #4A3820;
  --c-muted:     #6B5843;
  --c-accent:    #8B5E34;          /* rich oak */
  --c-accent-d:  #5C3A21;
  --c-forest:    #2E5339;          /* deep green */
  --c-forest-d:  #1E3A28;
  --c-tan:       #C8A97E;
  --c-rule:      rgba(43, 29, 16, 0.14);
  --c-rule-2:    rgba(43, 29, 16, 0.08);
  --c-hairline:  rgba(43, 29, 16, 0.22);

  --ff-display:  "Fraunces", "Playfair Display", Georgia, serif;
  --ff-body:     "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-mono:     "IBM Plex Mono", ui-monospace, monospace;

  --maxw:        1340px;
  --pad-x:       clamp(24px, 5vw, 80px);

  --r:           12px;
  --r-lg:        28px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Display — warm italic-leaning Fraunces */
.d-display {
  font-family: var(--ff-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--c-ink);
}
h1, h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  color: var(--c-ink);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
h1 { font-size: clamp(52px, 9vw, 124px); font-weight: 400; }
h2 { font-size: clamp(36px, 5.5vw, 68px); }
h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  color: var(--c-ink);
}
p { margin: 0 0 1em; color: var(--c-ink-2); font-size: 17px; }
p.lead { font-size: 20px; line-height: 1.55; color: var(--c-ink); font-weight: 400; max-width: 52ch; }

em, .italic { font-style: italic; font-variation-settings: "ital" 1, "SOFT" 100; }

/* ---------- Paper noise texture (subtle) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.11  0 0 0 0 0.06  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}
.wrap--narrow { max-width: 960px; }

/* Editorial small-caps label */
.kicker {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-forest);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-forest);
  display: inline-block;
}
.kicker--on-dark { color: var(--c-tan); }
.kicker--on-dark::before { background: var(--c-tan); }

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 5.5em;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--c-accent);
  font-style: italic;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: all 0.35s var(--ease-out);
  mix-blend-mode: normal;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.on-light { color: var(--c-ink); }
.site-header.on-dark  { color: #F6EFE3; }
.site-header.scrolled {
  background: rgba(246, 239, 227, 0.88);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  color: var(--c-ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--c-rule-2);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--ff-display);
}
.brand__mark {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-style: italic;
}
.brand__sub {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-main {
  display: flex;
  gap: 36px;
}
.nav-main a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.nav-main a:hover { opacity: 0.65; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.nav-phone:hover { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 999px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn .arr { transition: transform 0.3s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }
.btn--primary {
  background: var(--c-ink);
  color: var(--c-bg);
}
.btn--primary:hover {
  background: var(--c-accent-d);
}
.btn--accent {
  background: var(--c-forest);
  color: #F6EFE3;
}
.btn--accent:hover { background: var(--c-forest-d); }
.btn--outline {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}
.btn--outline:hover {
  background: currentColor;
}
.btn--outline:hover > * { color: var(--c-bg); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: currentColor;
}

/* ---------- HERO (cinematic pin-scroll) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 180px) 0 clamp(140px, 16vw, 220px);
  overflow: hidden;
  color: #F6EFE3;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 40%;
  filter: saturate(0.75) brightness(0.72) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 70% at 30% 55%, rgba(26, 17, 7, 0.75) 0%, rgba(26, 17, 7, 0.55) 40%, rgba(26, 17, 7, 0.7) 70%, rgba(26, 17, 7, 0.9) 100%),
    linear-gradient(180deg, rgba(26, 17, 7, 0.5) 0%, rgba(26, 17, 7, 0.4) 50%, rgba(26, 17, 7, 0.85) 100%);
}
.hero__frame {
  margin-bottom: 32px;
}
.hero__frame .kicker { color: var(--c-tan); }
.hero__frame .kicker::before { background: var(--c-tan); }
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.hero h1 {
  color: #F6EFE3;
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--c-tan);
  font-weight: 400;
  display: block;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero__lede {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: rgba(246, 239, 227, 0.92);
  max-width: 48ch;
  margin-bottom: 36px;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.55);
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__cta .btn--primary {
  background: var(--c-bg);
  color: var(--c-ink);
}
.hero__cta .btn--primary:hover { background: var(--c-tan); }
.hero__cta .btn--outline {
  color: #F6EFE3;
}

/* scroll cue removed — was creating visual artifact touching hero CTAs */

/* ---------- BIG YEAR MARK (sticky, reveals on scroll) ---------- */
.marker-band {
  background: var(--c-bg);
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  border-bottom: 1px solid var(--c-rule-2);
}
.marker-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.marker-year {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--c-accent);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 300;
  margin: 0;
}
.marker-year::after {
  content: "—";
  display: block;
  color: var(--c-ink);
  font-size: 0.25em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 16px;
}
.marker-band p { font-size: 19px; line-height: 1.65; max-width: 42ch; }

/* ---------- STORY (timeline editorial) ---------- */
.story {
  background: var(--c-bg);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.story__head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 120px);
  align-items: end;
}
.story__head h2 {
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1;
  font-style: italic;
  max-width: 14ch;
}
.story__head h2 strong {
  font-style: normal;
  font-weight: 600;
}
.story__head p {
  font-size: 18px;
  max-width: 42ch;
}

.timeline {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  position: relative;
  border-top: 1px solid var(--c-hairline);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 100px;
  width: 1px;
  background: var(--c-hairline);
}
.timeline__row {
  display: contents;
}
.timeline__year {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-forest);
  padding: 36px 22px 36px 0;
  text-align: right;
  border-bottom: 1px solid var(--c-rule-2);
  position: relative;
}
.timeline__year::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -5px;
  width: 9px; height: 9px;
  background: var(--c-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--c-bg);
}
.timeline__body {
  padding: 36px 0 36px 40px;
  border-bottom: 1px solid var(--c-rule-2);
}
.timeline__body h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 10px;
  line-height: 1.1;
}
.timeline__body p {
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0;
}
.timeline__row:last-child .timeline__year,
.timeline__row:last-child .timeline__body {
  border-bottom: none;
}

/* ---------- TAGLINE BAND (full-bleed, wood texture) ---------- */
.tagline-band {
  position: relative;
  padding: clamp(120px, 18vw, 240px) 0;
  text-align: center;
  color: #F6EFE3;
  overflow: hidden;
  isolation: isolate;
}
.tagline-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.05);
}
.tagline-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26, 17, 7, 0.75), rgba(26, 17, 7, 0.88));
}
.tagline-band h2 {
  color: #F6EFE3;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  max-width: 16ch;
  margin: 0 auto;
}
.tagline-band h2 strong {
  display: block;
  font-weight: 600;
  font-style: normal;
  color: var(--c-tan);
  letter-spacing: -0.03em;
}

/* ---------- PRODUCTS (editorial list, no card grid) ---------- */
.products {
  background: var(--c-bg-soft);
  padding: clamp(72px, 8vw, 112px) 0 clamp(40px, 4vw, 64px);
}
.products__head {
  max-width: 900px;
  margin-bottom: 56px;
}
.products__head h2 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.products__head h2 em {
  font-style: italic;
  color: var(--c-accent);
}
.products__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-hairline);
}
.product-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 2fr) minmax(0, 3fr) auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--c-hairline);
  align-items: center;
  transition: padding 0.3s var(--ease-out);
}
.product-row:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(139, 94, 52, 0.06), transparent 40%);
}
.product-row__num {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-forest);
}
.product-row__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}
.product-row__desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-muted);
  max-width: 56ch;
  margin: 0;
}
.product-row__cta {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.product-row:hover .product-row__cta {
  opacity: 1;
  color: var(--c-accent-d);
}
.product-row__cta::after {
  content: "→";
  transition: transform 0.3s var(--ease-out);
}
.product-row:hover .product-row__cta::after {
  transform: translateX(4px);
}

/* ---------- SERVICES (Planning / Estimating / Delivery) ---------- */
.services {
  background: var(--c-bg);
  padding: clamp(40px, 4vw, 64px) 0 clamp(72px, 8vw, 112px);
  border-top: 1px solid var(--c-rule-2);
}
.services__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 48px;
  align-items: end;
}
.services__head h2 {
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1;
  max-width: 14ch;
}
.services__head h2 em {
  font-style: italic;
  color: var(--c-accent);
}
.services__head p {
  font-size: 18px;
  max-width: 44ch;
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  position: relative;
}
.services__grid::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--c-accent) 0 8px, transparent 8px 16px);
  opacity: 0.4;
  z-index: 0;
}
.service-step {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3vw, 40px);
  background: var(--c-paper);
  border: 1px solid var(--c-rule-2);
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.service-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(43, 29, 16, 0.22);
}
.service-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-bg);
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  padding-top: 2px;
}
.service-step h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  margin-bottom: 10px;
}
.service-step__lead {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  color: var(--c-accent-d);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.35;
}
.service-step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--c-ink-2);
  margin: 0;
}

/* ---------- GUIDES (blog cards) ---------- */
.guides {
  background: var(--c-bg-soft);
  padding: clamp(80px, 12vw, 160px) 0;
}
.guides__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 64px;
  align-items: end;
}
.guides__head h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  max-width: 16ch;
}
.guides__head h2 em {
  font-style: italic;
  color: var(--c-forest);
}
.guides__head p {
  font-size: 17px;
  max-width: 46ch;
  line-height: 1.6;
}
.guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 2.5vw, 36px);
  background: var(--c-paper);
  border: 1px solid var(--c-rule-2);
  border-radius: var(--r-lg);
  min-height: 240px;
  transition: all 0.3s var(--ease-out);
  color: var(--c-ink);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(43, 29, 16, 0.2);
  border-color: var(--c-accent);
}
.guide-card__kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-forest);
  font-weight: 500;
}
.guide-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--c-ink);
}
.guide-card__cta {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-d);
  margin-top: auto;
}
.guides__more {
  margin-top: 56px;
  text-align: center;
}

@media (max-width: 1024px) {
  .services__head,
  .guides__head { grid-template-columns: 1fr; gap: 24px; }
  .services__grid,
  .guides__grid { grid-template-columns: 1fr; }
  .services__grid::before { display: none; }
}

/* ---------- AUDIENCES (asymmetric split) ---------- */
.audiences {
  background: var(--c-bg);
  padding: clamp(80px, 12vw, 160px) 0;
}
.audiences__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
}
.audience-card {
  padding: clamp(32px, 4vw, 56px);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.audience-card--pro {
  background: var(--c-bg-deep);
  color: #F6EFE3;
}
.audience-card--pro h3 { color: #F6EFE3; font-size: clamp(28px, 3.2vw, 44px); margin-bottom: 16px; }
.audience-card--pro p  { color: rgba(246, 239, 227, 0.78); font-size: 17px; line-height: 1.55; }
.audience-card--pro .kicker { color: var(--c-tan); }
.audience-card--pro .kicker::before { background: var(--c-tan); }

.audience-card--diy {
  background: var(--c-paper);
  border: 1px solid var(--c-rule-2);
  box-shadow: 0 30px 60px -40px rgba(43, 29, 16, 0.22);
}
.audience-card--diy h3 { font-size: clamp(28px, 3.2vw, 44px); margin-bottom: 16px; }
.audience-card--diy p  { font-size: 17px; line-height: 1.55; }

.team-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.team-chip {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  padding: 7px 14px;
  border: 1px solid rgba(246, 239, 227, 0.3);
  border-radius: 999px;
}
.audience-card--diy .team-chip { border-color: var(--c-rule); color: var(--c-forest); }

.audience-feat {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.audience-feat li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  list-style: none;
  font-size: 15.5px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(246, 239, 227, 0.12);
}
.audience-card--diy .audience-feat li { border-bottom-color: var(--c-rule-2); }
.audience-feat li::before {
  content: "—";
  color: var(--c-tan);
  font-weight: 700;
}
.audience-card--diy .audience-feat li::before { color: var(--c-accent); }

/* ---------- TESTIMONIAL (magazine pullquote, asymmetric) ---------- */
.pullquote {
  background: var(--c-bg-soft);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
}
.pullquote__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 5fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.pullquote__mark {
  font-family: var(--ff-display);
  font-size: clamp(120px, 20vw, 280px);
  line-height: 0.6;
  color: var(--c-accent);
  font-style: italic;
  opacity: 0.35;
  margin-top: -40px;
}
.pullquote blockquote {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 40px;
  color: var(--c-ink);
  max-width: 22ch;
}
.pullquote blockquote strong {
  font-style: normal;
  font-weight: 600;
  color: var(--c-accent-d);
}
.pullquote cite {
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.pullquote cite strong {
  display: block;
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 6px;
}

/* ---------- VISIT (contact) ---------- */
.visit {
  background: var(--c-bg-deep);
  color: #F6EFE3;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.visit__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: 80px;
}
.visit__top h2 {
  color: #F6EFE3;
  font-size: clamp(44px, 7vw, 98px);
  font-weight: 400;
  line-height: 1;
}
.visit__top h2 em { font-style: italic; color: var(--c-tan); }
.visit__top p {
  color: rgba(246, 239, 227, 0.76);
  font-size: 18px;
  line-height: 1.55;
  max-width: 40ch;
}
.visit__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(246, 239, 227, 0.14);
  padding-top: 56px;
}
.visit__info > div h4 {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-tan);
  font-weight: 500;
  margin-bottom: 14px;
}
.visit__info > div p,
.visit__info > div a {
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  color: #F6EFE3;
  letter-spacing: -0.005em;
  margin: 0;
}
.visit__info > div a:hover { color: var(--c-tan); }
.visit__info small {
  display: block;
  margin-top: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(246, 239, 227, 0.6);
  font-weight: 400;
  letter-spacing: 0;
}
.visit__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.visit__cta .btn--primary {
  background: var(--c-tan);
  color: var(--c-bg-deep);
}
.visit__cta .btn--primary:hover { background: #F6EFE3; }

/* Giant OAKLEY wordmark at bottom */
.visit__wordmark {
  margin-top: clamp(64px, 8vw, 120px);
  margin-bottom: 0;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(100px, 22vw, 360px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(200, 169, 126, 0.12);
  font-style: italic;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

/* ---------- CONTACT section ---------- */
.contact {
  background: var(--c-bg-deep);
  color: #F6EFE3;
  padding: clamp(56px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
  position: relative;
}
.contact__head {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.contact__head h2 {
  color: #F6EFE3;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.contact__head h2 em {
  font-style: italic;
  color: var(--c-tan);
}
.contact__head p {
  color: rgba(246, 239, 227, 0.78);
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
  margin-top: 20px;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

/* Form */
.contact__form {
  display: grid;
  gap: 24px;
  background: rgba(246, 239, 227, 0.04);
  border: 1px solid rgba(246, 239, 227, 0.12);
  padding: clamp(28px, 3.5vw, 48px);
  border-radius: var(--r-lg);
  backdrop-filter: blur(6px);
}
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-tan);
  font-weight: 500;
}
.field label .req {
  opacity: 0.6;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: none;
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 15.5px;
  color: #F6EFE3;
  background: rgba(26, 17, 7, 0.5);
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 10px;
  padding: 13px 16px;
  transition: all 0.25s var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-tan);
  background: rgba(26, 17, 7, 0.75);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.15);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(246, 239, 227, 0.4);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--ff-body); }
.contact__form .btn {
  justify-self: start;
  margin-top: 8px;
}
.form-note {
  margin: 4px 0 0;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(246, 239, 227, 0.55);
}

/* Side rail */
.contact__side {
  display: grid;
  gap: 28px;
}
.side-block {
  padding: 28px;
  background: rgba(246, 239, 227, 0.03);
  border: 1px solid rgba(246, 239, 227, 0.1);
  border-radius: var(--r-lg);
}
.side-block h4 {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-tan);
  font-weight: 500;
  margin: 0 0 14px;
}
.side-block p {
  color: rgba(246, 239, 227, 0.78);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(26, 17, 7, 0.5);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: #F6EFE3;
  font-family: var(--ff-body);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(246, 239, 227, 0.4); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--c-tan);
  color: var(--c-bg-deep);
  border: none;
  padding: 0 22px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s;
}
.newsletter-form button:hover { background: #F6EFE3; }

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(246, 239, 227, 0.08);
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 999px;
  font-size: 14px;
  color: #F6EFE3;
  transition: all 0.25s var(--ease-out);
}
.social-pill:hover {
  background: var(--c-tan);
  color: var(--c-bg-deep);
  border-color: var(--c-tan);
}
.side-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(246, 239, 227, 0.12);
  color: #F6EFE3;
  font-size: 15px;
  transition: color 0.25s;
}
.side-link:first-child { border-top: none; padding-top: 0; }
.side-link:hover { color: var(--c-tan); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-bg-night);
  color: rgba(246, 239, 227, 0.7);
  padding: 56px 0 36px;
  font-size: 13px;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer a { color: rgba(246, 239, 227, 0.85); }
.site-footer a:hover { color: var(--c-tan); }
.site-footer .ppd-credit a { color: var(--c-tan); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-main { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .marker-band__inner { grid-template-columns: 1fr; gap: 30px; }
  .story__head { grid-template-columns: 1fr; gap: 24px; }
  .audiences__grid { grid-template-columns: 1fr; }
  .audience-card--pro { transform: none; }
  .pullquote__inner { grid-template-columns: 1fr; gap: 20px; }
  .pullquote__mark { margin-top: 0; line-height: 0.4; }
  .visit__top { grid-template-columns: 1fr; gap: 24px; }
  .visit__info { grid-template-columns: repeat(2, 1fr); }
  .product-row {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 24px;
  }
  .product-row__desc { grid-column: 2 / -1; }
}
@media (max-width: 640px) {
  .visit__info { grid-template-columns: 1fr; gap: 32px; }
  .hero__topline { flex-direction: column; align-items: flex-start; top: 96px; }
  .hero__established { text-align: left; font-size: 48px; }
  .timeline { grid-template-columns: 70px 1fr; }
  .timeline::before { left: 70px; }
  .timeline__year { padding-right: 14px; font-size: 12px; }
  .timeline__body { padding-left: 24px; }
  .product-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 28px 0;
  }
  .product-row__num { display: none; }
  .product-row__desc { grid-column: 1 / -1; }
  .visit__wordmark { font-size: 30vw; }
}
