/* ============================================================
   PEIBG · Bechtol Golf Design — Shared Design System
   Forest & gold. Playfair / Pinyon / Libre Baskerville / Jost.
   ============================================================ */

:root {
  --forest:    #0d1a0f;
  --forest-mid:#152018;
  --forest-lit:#1e3022;
  --green:     #2a4a2e;
  --green-lit: #3d6642;
  --fairway:   #4e7a52;
  --sage:      #8aab7c;
  --ivory:     #f5f0e8;
  --ivory-dim: #ddd7cc;
  --gold:      #c8a96e;
  --gold-lit:  #e0c48a;
  --gold-dark: #8a6e3a;
  --white:     #fdfcf8;
  --ink:       #1a1a18;

  --pad-x: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--forest);
  color: var(--ivory);
  overflow-x: hidden;
}

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

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ─── FOCUS (a11y) ─── */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-lit);
  outline-offset: 3px;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--gold); color: var(--forest);
  padding: 10px 20px; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  transition: top .25s;
}
.skip-link:focus { top: 16px; }

/* ─── CUSTOM CURSOR (pointer devices only; toggled by JS) ─── */
body.cursor-on *, body.cursor-on *::before, body.cursor-on *::after { cursor: none !important; }
#cur-dot, #cur-ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9999; top: 0; left: 0;
  display: none;
}
body.cursor-on #cur-dot, body.cursor-on #cur-ring { display: block; }
#cur-dot { width: 7px; height: 7px; background: var(--gold); margin: -3.5px 0 0 -3.5px; }
#cur-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,169,110,0.45);
  margin: -19px 0 0 -19px;
  transition: width .35s, height .35s, margin .35s, border-color .35s, opacity .2s;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px var(--pad-x);
  transition: padding .4s, background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.stuck {
  padding: 18px var(--pad-x);
  background: rgba(13,26,15,0.96);
  backdrop-filter: blur(24px);
  border-color: rgba(200,169,110,0.18);
}
.nav-brand { display: flex; flex-direction: column; gap: 3px; text-decoration: none; }
.nav-brand-top {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 500; letter-spacing: 0.04em; color: var(--ivory);
}
.nav-brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: 8.5px; font-weight: 300; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
}
.nav-links { display: flex; gap: 44px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,240,232,0.7);
  text-decoration: none; transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-contact {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--forest);
  background: var(--gold); padding: 11px 28px;
  text-decoration: none; transition: background .3s;
}
.nav-contact:hover { background: var(--gold-lit); }

/* Mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: none;
  width: 34px; height: 26px; position: relative; z-index: 600;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ivory);
  transition: transform .35s, opacity .25s, top .35s;
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 12px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 12px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* ============================================================
   BUTTONS / ATOMS
   ============================================================ */
.btn-gold {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; text-decoration: none;
  background: var(--gold); color: var(--forest);
  padding: 15px 40px; transition: background .3s, color .3s;
  display: inline-block; border: none;
}
.btn-gold:hover { background: var(--gold-lit); }
.btn-outline {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ivory-dim);
  border-bottom: 1px solid rgba(245,240,232,0.35);
  padding-bottom: 3px; transition: color .3s, border-color .3s;
  display: inline-block;
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold); }

.sec-eye {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 400; letter-spacing: 0.38em; text-transform: uppercase;
}
.sec-eye.gold { color: var(--gold); }
.sec-eye.sage { color: var(--sage); }
.sec-eye::before { content: ''; width: 36px; height: 1px; }
.sec-eye.gold::before { background: var(--gold); }
.sec-eye.sage::before { background: var(--sage); }

.sec-h {
  font-family: 'Playfair Display', serif;
  font-weight: 500; line-height: 1.07; letter-spacing: -0.01em;
}
.sec-h em { font-style: italic; }

.link-more {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sage); text-decoration: none;
  border-bottom: 1px solid rgba(138,171,124,0.4); padding-bottom: 2px;
  transition: color .3s, border-color .3s; white-space: nowrap;
}
.link-more:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.08); animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13,26,15,0.98) 0%, rgba(13,26,15,0.55) 45%, rgba(13,26,15,0.12) 100%),
    linear-gradient(to right, rgba(13,26,15,0.7) 0%, transparent 60%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(30,48,34,0.35); mix-blend-mode: multiply;
}
.hero-content { position: relative; z-index: 10; padding: 0 var(--pad-x) 96px; max-width: 900px; }
.hero-pretitle { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.hero-pretitle-line { width: 48px; height: 1px; background: var(--gold); }
.hero-pretitle span {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
}
.hero-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(68px, 10vw, 130px); color: var(--sage);
  line-height: 0.85; margin-bottom: -12px; opacity: 0.9; display: block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 500; line-height: 1.0; color: var(--ivory);
  letter-spacing: -0.01em; margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--gold-lit); }
.hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px; font-style: italic; font-weight: 400;
  color: rgba(245,240,232,0.6); letter-spacing: 0.02em;
  margin-bottom: 52px; max-width: 480px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.hero-side {
  position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%); z-index: 10;
  display: flex; flex-direction: column; gap: 28px; align-items: flex-end;
}
.hstat { text-align: right; border-right: 2px solid rgba(200,169,110,0.3); padding-right: 18px; }
.hstat-n { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400; color: var(--gold); line-height: 1; }
.hstat-l {
  font-family: 'Jost', sans-serif; font-size: 8.5px; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,240,232,0.45); margin-top: 3px;
}
.hero-dots { position: absolute; right: var(--pad-x); bottom: 96px; z-index: 10; display: flex; flex-direction: column; gap: 10px; }
.hdot { width: 2px; height: 28px; background: rgba(200,169,110,0.25); transition: all .4s; }
.hdot.on { background: var(--gold); height: 44px; }

/* ============================================================
   INTERIOR PAGE HERO (about / services / portfolio / contact)
   ============================================================ */
.page-hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  overflow: hidden; padding: 0 var(--pad-x) 64px;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05);
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13,26,15,0.97) 0%, rgba(13,26,15,0.6) 50%, rgba(13,26,15,0.3) 100%),
    rgba(30,48,34,0.3);
}
.page-hero-inner { position: relative; z-index: 5; max-width: 820px; }
.breadcrumb {
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(245,240,232,0.5); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-lit); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px); font-weight: 500; line-height: 1.02;
  color: var(--ivory); letter-spacing: -0.01em;
}
.page-hero-title em { font-style: italic; color: var(--gold-lit); }
.page-hero-sub {
  font-family: 'Libre Baskerville', serif; font-size: 15px; font-style: italic;
  color: rgba(245,240,232,0.6); margin-top: 22px; max-width: 540px; line-height: 1.7;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-band { background: var(--gold); overflow: hidden; position: relative; padding: 14px 0; display: flex; }
.marquee-track { display: flex; gap: 0; animation: marqueeSCroll 28s linear infinite; white-space: nowrap; }
@keyframes marqueeSCroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--forest);
  padding: 0 48px; display: flex; align-items: center; gap: 48px;
}
.marquee-item::after { content: '◆'; font-size: 6px; color: rgba(13,26,15,0.35); }

/* ============================================================
   ABOUT STRIP (home)
   ============================================================ */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.about-img { position: relative; overflow: hidden; background-size: cover; background-position: center; }
.about-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--forest-mid) 100%); }
.about-img-badge {
  position: absolute; bottom: 40px; left: 40px; z-index: 2;
  background: rgba(13,26,15,0.88); border: 1px solid rgba(200,169,110,0.35);
  padding: 20px 28px; backdrop-filter: blur(12px);
}
.about-img-badge span {
  font-family: 'Jost', sans-serif; font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 5px;
}
.about-img-badge strong { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; color: var(--ivory); display: block; }
.about-content { background: var(--forest-mid); padding: 90px 80px; display: flex; flex-direction: column; justify-content: center; }
.about-content .sec-eye { margin-bottom: 24px; }
.about-content .sec-h { font-size: clamp(34px, 3vw, 50px); color: var(--ivory); margin-bottom: 28px; }
.about-content .sec-h em { color: var(--gold-lit); }
.about-body { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(245,240,232,0.65); margin-bottom: 36px; }
.about-credits { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.credit-tag {
  font-family: 'Jost', sans-serif; font-size: 8.5px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; border: 1px solid rgba(200,169,110,0.3); color: var(--gold); padding: 7px 16px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 120px var(--pad-x); background: var(--forest); }
.services-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.services-top .sec-h { font-size: clamp(38px, 3.5vw, 56px); color: var(--ivory); }
.services-top .sec-h em { color: var(--gold-lit); }
.services-intro { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(245,240,232,0.55); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc { position: relative; overflow: hidden; }
.svc-img { width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.25,.46,.45,.94); display: block; }
.svc:hover .svc-img { transform: scale(1.06); }
.svc-layer {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,26,15,0.97) 0%, rgba(13,26,15,0.4) 55%, rgba(30,48,34,0.15) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 36px 32px;
}
.svc-num { font-family: 'Playfair Display', serif; font-size: 70px; font-weight: 400; color: rgba(200,169,110,0.08); position: absolute; top: 16px; right: 20px; line-height: 1; transition: color .4s; }
.svc:hover .svc-num { color: rgba(200,169,110,0.14); }
.svc-label { font-family: 'Jost', sans-serif; font-size: 8.5px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.svc-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--ivory); line-height: 1.2; margin-bottom: 14px; }
.svc-body { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(245,240,232,0.0); max-height: 0; overflow: hidden; transition: color .35s, max-height .4s ease; }
.svc:hover .svc-body { color: rgba(245,240,232,0.6); max-height: 160px; }
.svc-arrow { font-size: 10px; letter-spacing: 0.2em; font-weight: 400; color: var(--gold); margin-top: 20px; opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s; text-transform: uppercase; font-family: 'Jost', sans-serif; }
.svc:hover .svc-arrow { opacity: 1; transform: translateY(0); }

/* Services detail (services.html) */
.svc-detail { padding: 120px var(--pad-x); background: var(--forest); border-top: 1px solid rgba(200,169,110,0.1); }
.svc-detail:nth-of-type(even) { background: var(--forest-mid); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-detail:nth-of-type(even) .svc-detail-media { order: 2; }
.svc-detail-media { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.svc-detail-media::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(200,169,110,0.2); pointer-events: none; }
.svc-detail-num { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 18px; }
.svc-detail-grid h3 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); font-weight: 500; color: var(--ivory); line-height: 1.1; margin-bottom: 24px; }
.svc-detail-grid h3 em { font-style: italic; color: var(--gold-lit); }
.svc-detail-grid p { font-size: 14.5px; font-weight: 300; line-height: 1.85; color: rgba(245,240,232,0.6); margin-bottom: 20px; }
.svc-detail-list { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.svc-detail-list li { font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.7); padding-left: 24px; position: relative; }
.svc-detail-list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 4px; }

/* ============================================================
   PROCESS (services.html)
   ============================================================ */
.process { padding: 110px var(--pad-x); background: var(--green); text-align: center; }
.process .sec-h { font-size: clamp(34px, 3.5vw, 52px); color: var(--ivory); margin: 18px auto 64px; max-width: 640px; }
.process .sec-h em { color: var(--gold-lit); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(200,169,110,0.2); text-align: left; }
.pstep { padding: 48px 34px; border-right: 1px solid rgba(200,169,110,0.15); position: relative; }
.pstep:last-child { border-right: none; }
.pstep-n { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 22px; }
.pstep h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; font-style: italic; color: var(--gold-lit); margin-bottom: 14px; }
.pstep p { font-size: 12.5px; font-weight: 300; line-height: 1.75; color: rgba(245,240,232,0.55); }

/* ============================================================
   COLLABORATORS
   ============================================================ */
.collabs { background: var(--forest-mid); padding: 90px var(--pad-x); display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.collabs-left .sec-h { font-size: clamp(34px, 3vw, 48px); color: var(--ivory); margin: 20px 0 24px; }
.collabs-left .sec-h em { color: var(--sage); }
.collabs-left p { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(245,240,232,0.5); }
.collabs-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.collab-card { background: rgba(21,32,24,0.8); border: 1px solid rgba(200,169,110,0.12); padding: 32px 28px; transition: border-color .3s, background .3s; position: relative; overflow: hidden; }
.collab-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.collab-card:hover { border-color: rgba(200,169,110,0.3); background: rgba(42,74,46,0.2); }
.collab-card:hover::before { transform: scaleX(1); }
.collab-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 400; color: var(--ivory); margin-bottom: 6px; }
.collab-role { font-family: 'Jost', sans-serif; font-size: 8.5px; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.collab-project { font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(245,240,232,0.4); }

/* ============================================================
   PROJECTS / PORTFOLIO
   ============================================================ */
.projects { padding: 120px var(--pad-x) 0; background: var(--forest); }
.projects.flush-bottom { padding-bottom: 120px; }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 30px; flex-wrap: wrap; }
.projects-header .sec-h { font-size: clamp(36px, 3.5vw, 52px); color: var(--ivory); }
.projects-header .sec-h em { color: var(--gold-lit); }

.proj-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 340px 260px; gap: 2px; }
.proj { position: relative; overflow: hidden; }
.proj-grid.featured .proj:nth-child(1) { grid-column: span 2; grid-row: span 1; }
.proj-grid.featured .proj:nth-child(4) { grid-column: span 2; }
.proj-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.proj:hover .proj-img { transform: scale(1.05); }
.proj-mask { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,26,15,0.92) 0%, rgba(13,26,15,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 24px; }
.proj-cat { font-family: 'Jost', sans-serif; font-size: 8px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.proj-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--ivory); line-height: 1.2; }
.proj-loc { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 300; color: rgba(245,240,232,0.5); margin-top: 4px; transform: translateY(8px); opacity: 0; transition: all .35s; }
.proj:hover .proj-loc { opacity: 1; transform: translateY(0); }

/* Portfolio page: even grid + filters */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.portfolio-grid .proj { aspect-ratio: 4/3; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,240,232,0.6);
  border: 1px solid rgba(200,169,110,0.22); background: transparent;
  padding: 10px 22px; transition: all .25s;
}
.filter-btn:hover { color: var(--gold); border-color: var(--gold); }
.filter-btn.active { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.proj.hide { display: none; }

/* ============================================================
   PHILOSOPHY / PILLARS
   ============================================================ */
.philosophy { margin-top: 2px; background: var(--green); padding: 100px var(--pad-x); position: relative; overflow: hidden; text-align: center; }
.philosophy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(200,169,110,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 50%, rgba(200,169,110,0.05) 0%, transparent 55%);
}
.philosophy-content { position: relative; z-index: 2; }
.philosophy .sec-h { font-size: clamp(38px, 4.5vw, 62px); color: var(--ivory); margin: 20px auto 16px; max-width: 720px; }
.philosophy .sec-h em { color: var(--gold-lit); font-style: italic; }
.philosophy-sub { font-family: 'Libre Baskerville', serif; font-size: 14.5px; font-style: italic; color: rgba(245,240,232,0.55); margin-bottom: 64px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(200,169,110,0.2); margin-top: 64px; }
.pillar { padding: 52px 36px; border-right: 1px solid rgba(200,169,110,0.15); position: relative; overflow: hidden; transition: background .4s; }
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(200,169,110,0.06); }
.pillar-n { font-family: 'Playfair Display', serif; font-size: 88px; font-weight: 400; color: rgba(200,169,110,0.07); line-height: 1; position: absolute; bottom: -16px; right: 10px; pointer-events: none; }
.pillar-word { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--gold-lit); margin-bottom: 16px; font-style: italic; }
.pillar-text { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(245,240,232,0.5); }

/* ============================================================
   AWARD RIBBON
   ============================================================ */
.award-ribbon { background: var(--forest); padding: 70px var(--pad-x); display: flex; align-items: center; gap: 60px; border-top: 1px solid rgba(200,169,110,0.15); border-bottom: 1px solid rgba(200,169,110,0.15); }
.ribbon-text { flex: 1; }
.ribbon-text p { font-family: 'Libre Baskerville', serif; font-size: 18px; font-style: italic; line-height: 1.6; color: rgba(245,240,232,0.6); max-width: 680px; }
.ribbon-text p strong { font-style: normal; font-family: 'Playfair Display', serif; color: var(--ivory); font-weight: 500; }
.ribbon-logo { font-family: 'Pinyon Script', cursive; font-size: 72px; color: var(--gold); opacity: 0.55; flex-shrink: 0; line-height: 1; }

/* ============================================================
   ABOUT PAGE — bio + timeline
   ============================================================ */
.bio { padding: 120px var(--pad-x); background: var(--forest); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.bio-portrait { position: relative; }
.bio-portrait .ph { aspect-ratio: 3/4; background-size: cover; background-position: center; border: 1px solid rgba(200,169,110,0.2); }
.bio-portrait .cap { font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-top: 16px; }
.bio-body .sec-h { font-size: clamp(32px, 3vw, 46px); color: var(--ivory); margin: 18px 0 28px; }
.bio-body .sec-h em { color: var(--gold-lit); }
.bio-body p { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(245,240,232,0.65); margin-bottom: 22px; }
.bio-body p .lead { color: var(--ivory); }

.timeline { background: var(--forest-mid); padding: 110px var(--pad-x); }
.timeline-head { text-align: center; margin-bottom: 72px; }
.timeline-head .sec-h { font-size: clamp(34px, 3.5vw, 50px); color: var(--ivory); margin-top: 16px; }
.timeline-head .sec-h em { color: var(--gold-lit); }
.tl { max-width: 860px; margin: 0 auto; position: relative; }
.tl::before { content: ''; position: absolute; left: 120px; top: 6px; bottom: 6px; width: 1px; background: rgba(200,169,110,0.25); }
.tl-row { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 0 0 44px; position: relative; }
.tl-row:last-child { padding-bottom: 0; }
.tl-year { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); text-align: right; padding-right: 28px; }
.tl-dot { position: absolute; left: 116px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--forest-mid); }
.tl-content h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; color: var(--ivory); margin-bottom: 8px; }
.tl-content p { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(245,240,232,0.55); }

/* ============================================================
   STAT BAND
   ============================================================ */
.stat-band { background: var(--forest); padding: 80px var(--pad-x); display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; border-top: 1px solid rgba(200,169,110,0.12); }
.stat-cell { text-align: center; }
.stat-cell .n { font-family: 'Playfair Display', serif; font-size: clamp(40px, 4vw, 60px); color: var(--gold); line-height: 1; }
.stat-cell .l { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-top: 12px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap { padding: 110px var(--pad-x); background: var(--forest); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .sec-h { font-size: clamp(32px, 3vw, 46px); color: var(--ivory); margin: 18px 0 28px; }
.contact-info .sec-h em { color: var(--gold-lit); }
.contact-info > p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(245,240,232,0.6); margin-bottom: 44px; max-width: 440px; }
.contact-line { display: flex; flex-direction: column; gap: 4px; margin-bottom: 30px; }
.contact-line .k { font-family: 'Jost', sans-serif; font-size: 8.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.contact-line .v { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--ivory); text-decoration: none; transition: color .3s; }
a.contact-line .v:hover, .contact-line a.v:hover { color: var(--gold); }
.contact-line .v.sm { font-size: 15px; font-weight: 300; line-height: 1.7; font-family: 'Jost', sans-serif; color: rgba(245,240,232,0.7); }

.contact-form { background: var(--forest-mid); border: 1px solid rgba(200,169,110,0.15); padding: 48px 44px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 500; color: var(--ivory); margin-bottom: 30px; }
.field { margin-bottom: 24px; }
.field label { display: block; font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(13,26,15,0.6); border: 1px solid rgba(200,169,110,0.2);
  color: var(--ivory); font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  padding: 14px 16px; transition: border-color .3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,240,232,0.3); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 11px; font-weight: 300; color: rgba(245,240,232,0.4); margin-top: 18px; line-height: 1.6; }
.form-success {
  display: none; background: rgba(62,102,66,0.25); border: 1px solid var(--fairway);
  padding: 16px 20px; font-size: 13px; color: var(--sage); margin-bottom: 24px;
}

.map-band { height: 420px; background: var(--forest-mid); position: relative; border-top: 1px solid rgba(200,169,110,0.12); }
.map-band iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) brightness(0.7) sepia(0.15); }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--forest-mid); padding: 110px var(--pad-x); display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.cta-left .sec-h { font-size: clamp(36px, 4vw, 58px); color: var(--ivory); }
.cta-left .sec-h em { color: var(--gold-lit); }
.cta-body { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(245,240,232,0.5); margin-top: 20px; max-width: 500px; }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.cta-phone { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; color: var(--ivory); text-decoration: none; transition: color .3s; }
.cta-phone:hover { color: var(--gold); }
.cta-email { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 0.2em; color: rgba(245,240,232,0.45); text-decoration: none; transition: color .3s; }
.cta-email:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: rgba(8,18,10,0.98); border-top: 1px solid rgba(200,169,110,0.18); padding: 72px var(--pad-x) 36px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.foot-brand-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; color: var(--ivory); margin-bottom: 4px; }
.foot-brand-sub { font-family: 'Jost', sans-serif; font-size: 8px; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.foot-script { font-family: 'Pinyon Script', cursive; font-size: 52px; color: var(--fairway); opacity: 0.4; line-height: 1; margin-bottom: 18px; display: block; }
.foot-tagline { font-family: 'Libre Baskerville', serif; font-size: 13px; font-style: italic; color: rgba(245,240,232,0.35); line-height: 1.6; margin-bottom: 24px; }
.foot-social { display: flex; gap: 12px; }
.soc { width: 32px; height: 32px; border: 1px solid rgba(200,169,110,0.25); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 400; color: rgba(245,240,232,0.4); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; transition: border-color .3s, color .3s; }
.soc:hover { border-color: var(--gold); color: var(--gold); }
.foot-col h4 { font-family: 'Jost', sans-serif; font-size: 8.5px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul li a { font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.4); text-decoration: none; transition: color .25s; }
.foot-col ul li a:hover { color: var(--ivory); }
.foot-addr { font-size: 13px; font-weight: 300; line-height: 2.1; color: rgba(245,240,232,0.38); }
.foot-addr a { color: var(--gold); text-decoration: none; }
.footer-bot { border-top: 1px solid rgba(200,169,110,0.12); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-copy { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.2); }
.foot-est { font-family: 'Libre Baskerville', serif; font-size: 12px; font-style: italic; color: rgba(245,240,232,0.2); }

/* ============================================================
   REVEAL / ANIM
   ============================================================ */
.r { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.r.vis { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: .12s; }
.r.d2 { transition-delay: .22s; }
.r.d3 { transition-delay: .32s; }
.r.d4 { transition-delay: .42s; }
.hero-content > * { opacity: 0; transform: translateY(20px); animation: fadeUp .9s forwards; }
.hero-pretitle { animation-delay: .3s; }
.hero-script { animation-delay: .5s; }
.hero-title { animation-delay: .65s; }
.hero-tagline { animation-delay: .8s; }
.hero-actions { animation-delay: .95s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad-x: 48px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-img { min-height: 420px; }
  .services-top { grid-template-columns: 1fr; gap: 32px; }
  .collabs { grid-template-columns: 1fr; gap: 48px; }
  .bio { grid-template-columns: 1fr; gap: 56px; }
  .bio-portrait { max-width: 420px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 56px; }
  .cta { grid-template-columns: 1fr; gap: 40px; }
  .cta-right { align-items: flex-start; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail:nth-of-type(even) .svc-detail-media { order: 0; }
  .hero-side { display: none; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: rgba(8,18,10,0.98); backdrop-filter: blur(20px);
    gap: 36px; transform: translateX(100%); transition: transform .45s cubic-bezier(.7,0,.2,1);
    z-index: 550;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 16px; letter-spacing: 0.18em; }
  .nav-toggle { display: block; }
  .nav-contact { display: none; }
  nav, nav.stuck { padding-left: 24px; padding-right: 24px; }
  :root { --pad-x: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-img { aspect-ratio: 16/10; }
  .svc-body { color: rgba(245,240,232,0.6) !important; max-height: 200px !important; }
  .svc-arrow { opacity: 1 !important; transform: none !important; }

  .collabs-right { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .proj-grid.featured .proj:nth-child(1),
  .proj-grid.featured .proj:nth-child(4) { grid-column: span 2; }
  .proj { aspect-ratio: 4/3; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-bottom: 1px solid rgba(200,169,110,0.15); }
  .pillar:nth-child(odd) { border-right: 1px solid rgba(200,169,110,0.15); }
  .pillar:nth-child(even) { border-right: none; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .pstep:nth-child(odd) { border-right: 1px solid rgba(200,169,110,0.15); }
  .pstep:nth-child(even) { border-right: none; }
  .pstep { border-bottom: 1px solid rgba(200,169,110,0.15); }

  .stat-band { grid-template-columns: 1fr 1fr; gap: 48px 24px; }

  .award-ribbon { flex-direction: column; gap: 28px; text-align: center; padding: 56px var(--pad-x); }
  .ribbon-text p { font-size: 16px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-content { padding: 64px var(--pad-x); }
  .services, .projects, .collabs, .philosophy, .cta, .bio, .timeline,
  .contact-wrap, .process, .svc-detail, .stat-band { padding-top: 80px; padding-bottom: 80px; }
  .hero-content { padding-bottom: 64px; }

  .tl::before { left: 70px; }
  .tl-row { grid-template-columns: 70px 1fr; gap: 24px; }
  .tl-dot { left: 66px; }
  .tl-year { font-size: 17px; padding-right: 16px; }
}

@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .portfolio-grid, .proj-grid { grid-template-columns: 1fr; }
  .proj-grid.featured .proj:nth-child(1),
  .proj-grid.featured .proj:nth-child(4) { grid-column: span 1; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; }
  .process-steps { grid-template-columns: 1fr; }
  .pstep { border-right: none !important; }
  .stat-band { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .r { opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; transform: none; }
  .hero-bg { transform: none; }
}
