@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #eee4d8;
  --cream-soft: #f7f3ed;
  --cream-dark: #e4d8ca;
  --green-deep: #0b333b;
  --green-mid: #2f6f62;
  --green-light: #74b89c;
  --gold: #c8a15a;
  --gold-light: #dbbe85;
  --text-dark: #0b2a30;
  --text-mid: #355b56;
  --white: #fff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', Arial, sans-serif;
  --nav-h: 96px;
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--text-dark); font-family: var(--font-body); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max-w), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-label, .eyebrow { margin: 0 0 16px; color: var(--green-mid); font-size: 10px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; }
.section-label-light, .eyebrow-light { color: var(--gold-light); }
.section-title { margin: 0; color: var(--green-deep); font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.1; }
.section-title-light { color: var(--cream-soft); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 23px; border: 1px solid transparent; border-radius: 2px; font-size: 10px; font-weight: 600; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; transition: background .2s, border-color .2s, color .2s; }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-primary { background: var(--green-deep); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); }
.btn-outline { border-color: rgba(11,51,59,.35); color: var(--green-deep); background: transparent; }
.btn-outline:hover { background: rgba(11,51,59,.06); border-color: var(--green-deep); }

.site-nav { position: fixed; inset: 0 0 auto; z-index: 1000; display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); padding: 0 48px; background: var(--cream); border-bottom: 1px solid rgba(11,51,59,.12); }
.nav-logo img { width: auto; height: 80px; }
.nav-links { display: flex; align-items: center; gap: 46px; margin: 0; padding: 0; list-style: none; }
.nav-links a { position: relative; color: var(--green-deep); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.nav-links a::after { position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: var(--gold); content: ''; transform: scaleX(0); transition: transform .2s; }
.nav-links a:hover::after, .nav-links .active::after { transform: scaleX(1); }
.nav-links .active { color: var(--green-mid); }
.nav-links .nav-cta { padding: 8px 18px; border: 1px solid rgba(11,51,59,.5); border-radius: 2px; }
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--green-deep); color: var(--cream); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: transparent; border: 0; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); }
.nav-mobile { display: none; position: fixed; z-index: 999; inset: var(--nav-h) 0 0; flex-direction: column; padding: 36px 28px; background: var(--cream); }
.nav-mobile a { padding: 16px 0; border-bottom: 1px solid rgba(11,51,59,.1); color: var(--green-deep); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; }
.nav-mobile .mobile-cta { margin-top: 22px; padding: 15px; background: var(--green-deep); color: var(--cream); text-align: center; }
.nav-mobile.open { display: flex; }
body.menu-open { overflow: hidden; }

.hero { position: relative; display: flex; align-items: flex-end; min-height: 660px; margin-top: var(--nav-h); overflow: hidden; }
.hero-img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-img { object-fit: cover; object-position: center 58%; }
.hero-overlay { background: linear-gradient(90deg, rgba(6,28,31,.82) 0%, rgba(8,34,37,.6) 45%, rgba(9,27,20,.16) 78%), linear-gradient(0deg, rgba(7,22,17,.52), transparent 55%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max-w), calc(100% - 96px)); margin: 0 auto; padding: 0 0 74px; }
.hero h1 { max-width: 790px; margin: 0 0 18px; color: var(--white); font-family: var(--font-display); font-size: clamp(2.8rem, 5.3vw, 4.85rem); font-weight: 300; line-height: 1.02; }
.hero-intro { max-width: 720px; margin: 0 0 30px; color: rgba(255,255,255,.87); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }


/* Featured editorial entry point */
.insight-feature { position: relative; padding: 72px 0; background: var(--cream); border-top: 3px solid var(--gold); border-bottom: 1px solid rgba(11,51,59,.12); }
.insight-feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 6vw, 84px); align-items: stretch; }
.insight-feature-media { position: relative; min-height: 470px; overflow: hidden; background: var(--green-deep); }
.insight-feature-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,28,32,.04) 45%, rgba(4,28,32,.72)); content: ''; }
.insight-feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: saturate(.72) contrast(.94); transition: transform .45s ease; }
.insight-feature-media:hover img { transform: scale(1.025); }
.insight-feature-new { position: absolute; z-index: 2; top: 22px; left: 22px; padding: 8px 11px; background: var(--gold); color: var(--green-deep); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.insight-feature-caption { position: absolute; z-index: 2; right: 20px; bottom: 16px; left: 20px; color: rgba(255,255,255,.68); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.insight-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 22px 0; }
.insight-feature-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 26px; color: var(--text-mid); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.insight-feature-meta span { color: var(--green-mid); }
.insight-feature h2 { max-width: 760px; margin: 10px 0 20px; color: var(--green-deep); font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3.65rem); font-weight: 400; line-height: 1.02; }
.insight-feature-lead { max-width: 720px; margin: 0 0 24px; color: var(--text-mid); font-size: 1rem; line-height: 1.8; }
.insight-feature-angle { max-width: 700px; margin: 0 0 28px; padding: 18px 22px; border-left: 3px solid var(--gold); background: var(--cream-soft); color: var(--green-deep); font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45; }
.insight-feature-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.insight-feature-promise { max-width: 700px; margin: 24px 0 0; color: rgba(47,85,80,.78); font-size: 11px; line-height: 1.65; }

.landscape-section { background: var(--cream-soft); border-top: 3px solid var(--gold); }
.split-intro, .work-heading, .interests-heading, .approach-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 8vw, 110px); }
.intro-copy p, .work-heading > p, .interests-heading p, .approach-copy p { margin: 0 0 18px; color: var(--text-mid); }
.intro-copy strong { color: var(--green-deep); font-weight: 500; }

.journey { padding: 96px 0; background: var(--green-deep); }
.journey .section-title { max-width: 660px; }
.journey-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 58px; border-top: 1px solid rgba(238,228,216,.25); }
.journey-step { position: relative; min-height: 270px; padding: 34px 24px 12px 0; border-right: 1px solid rgba(238,228,216,.18); }
.journey-step:not(:first-child) { padding-left: 24px; }
.journey-step:last-child { padding-right: 0; border-right: 0; }
.step-number { color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .2em; }
.journey-step h3 { margin: 40px 0 16px; color: var(--cream-soft); font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; line-height: 1.1; }
.journey-step p { margin: 0; color: rgba(238,228,216,.7); font-size: 13px; line-height: 1.75; }

.work-section { background: var(--cream-soft); }
.work-heading { align-items: end; margin-bottom: 50px; }
.work-heading > p { max-width: 440px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-card { position: relative; display: flex; flex-direction: column; min-height: 570px; padding: 38px 34px; background: var(--cream); border: 1px solid rgba(11,51,59,.12); }
.work-card::before { position: absolute; top: -1px; right: -1px; left: -1px; height: 3px; background: var(--green-mid); content: ''; }
.work-card.featured-card { background: var(--green-deep); color: var(--cream-soft); }
.work-card.featured-card::before { background: var(--gold); }
.card-index { color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .18em; }
.work-card h3 { min-height: 90px; margin: 25px 0 18px; color: var(--green-deep); font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1.08; }
.featured-card h3 { color: var(--cream-soft); }
.work-card p { margin: 0 0 24px; color: var(--text-mid); font-size: 14px; }
.featured-card p { color: rgba(238,228,216,.72); }
.work-card ul { margin: 0 0 30px; padding: 0; list-style: none; }
.work-card li { padding: 8px 0; border-bottom: 1px solid rgba(11,51,59,.1); color: var(--green-deep); font-size: 13px; }
.featured-card li { border-color: rgba(238,228,216,.13); color: var(--cream); }
.work-card a { margin-top: auto; color: var(--green-mid); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.featured-card a { color: var(--gold-light); }

.assessment { padding: 106px 0; background: var(--green-mid); }
.assessment-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 120px); }
.assessment-intro > p:not(.section-label) { color: rgba(255,255,255,.76); }
.assessment-intro strong { color: var(--white); font-weight: 500; }
.assessment-intro .btn { margin-top: 18px; }
.assessment-photo { height: 220px; margin: 30px 0; overflow: hidden; border-left: 3px solid var(--gold); }
.assessment-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.assessment-questions { padding: 10px 0 0; }
.questions-label { margin: 0 0 12px; color: var(--gold-light); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.assessment-questions ol { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.22); list-style: none; }
.assessment-questions li { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: var(--white); font-family: var(--font-display); font-size: 1.25rem; line-height: 1.3; }
.assessment-questions li span { color: var(--gold-light); font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: .18em; }

.interests-section { background: var(--cream); }
.interests-heading { margin-bottom: 56px; }
.plain-statement { color: var(--green-deep) !important; font-family: var(--font-display); font-size: 1.8rem; line-height: 1.25; }
.interests-visual { position: relative; height: clamp(280px, 34vw, 410px); margin: 0 0 54px; overflow: hidden; }
.interests-visual::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,37,43,.28), transparent 58%); content: ''; }
.interests-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(11,51,59,.2); border-bottom: 1px solid rgba(11,51,59,.2); }
.audience-grid article { padding: 38px 32px 38px 0; }
.audience-grid article + article { padding-left: 32px; border-left: 1px solid rgba(11,51,59,.16); }
.audience-grid article:last-child { padding-right: 0; }
.audience-tag { color: var(--green-mid); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.audience-grid h3 { margin: 20px 0 14px; color: var(--green-deep); font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; line-height: 1.15; }
.audience-grid p { color: var(--text-mid); font-size: 14px; }
.audience-grid strong { display: block; color: var(--green-deep); font-size: 13px; font-weight: 500; }
.integrity-line { margin: 30px 0 0; color: var(--text-mid); text-align: center; }

.intelligence { padding: 108px 0; background: var(--cream-soft); border-top: 3px solid var(--gold); }
.intelligence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 9vw, 120px); align-items: center; }
.intelligence p:not(.section-label) { color: var(--text-mid); }
.intelligence-actions { margin-top: 26px; }
.text-link { display: inline-block; margin-top: 20px; color: var(--green-mid); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.signal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; background: rgba(11,51,59,.13); }
.signal-grid span { display: flex; align-items: center; min-height: 100px; padding: 22px; background: var(--cream-soft); color: var(--green-deep); font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; }

.approach-section { background: var(--cream); }
.approach-copy .outcome { margin-top: 28px; color: var(--green-deep); font-family: var(--font-display); font-size: 1.6rem; line-height: 1.25; }
.closing-cta { padding: 100px 0; background: var(--green-deep); text-align: center; }
.closing-cta h2 { margin: 0; color: var(--cream-soft); font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 300; line-height: 1.05; }
.closing-cta > .container > p:not(.section-label) { margin: 24px 0; color: rgba(238,228,216,.72); }

.site-footer { padding: 58px 0 0; background: #07252b; color: var(--cream); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr .7fr; gap: 70px; width: min(var(--max-w), calc(100% - 48px)); margin: 0 auto; padding-bottom: 48px; }
.footer-wordmark { display: inline-flex; flex-direction: column; margin-bottom: 18px; color: var(--cream-soft); line-height: 1; text-transform: uppercase; }
.footer-wordmark span { font-family: var(--font-display); font-size: 2rem; font-weight: 500; letter-spacing: .09em; }
.footer-wordmark small { margin: 7px 0 0 3px; color: var(--gold-light); font-size: 8px; font-weight: 600; letter-spacing: .35em; }
.footer-brand p { max-width: 440px; color: rgba(238,228,216,.62); font-size: 13px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h3 { margin: 0 0 10px; color: var(--gold-light); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.footer-col a { color: rgba(238,228,216,.72); font-size: 13px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding: 18px 24px; border-top: 1px solid rgba(238,228,216,.12); color: rgba(238,228,216,.4); font-size: 10px; letter-spacing: .1em; text-align: center; text-transform: uppercase; }

@media (max-width: 980px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-step { min-height: 220px; border-bottom: 1px solid rgba(238,228,216,.18); }
  .journey-step:nth-child(odd) { padding-left: 0; }
  .journey-step:nth-child(even) { padding-left: 24px; border-right: 0; }
  .journey-step:last-child { grid-column: 1 / -1; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 0; }
  .work-card h3 { min-height: 0; }
  .assessment-grid, .intelligence-grid, .insight-feature-grid { grid-template-columns: 1fr; }
  .insight-feature-media { min-height: 390px; }
}

@media (max-width: 760px) {
  :root { --nav-h: 78px; }
  .container { width: min(100% - 36px, var(--max-w)); }
  .section { padding: 76px 0; }
  .site-nav { height: var(--nav-h); padding: 0 18px; }
  .nav-logo img { height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 650px; }
  .hero-content { width: calc(100% - 36px); padding-bottom: 52px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.65rem); }
  .hero-intro { font-size: .98rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .insight-feature { padding: 54px 0 62px; }
  .insight-feature-grid { gap: 34px; }
  .insight-feature-media { min-height: 310px; }
  .insight-feature-copy { padding: 0; }
  .insight-feature h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .insight-feature-actions { flex-direction: column; }
  .insight-feature-actions .btn { width: 100%; }
  .insight-feature-promise { font-size: 10px; }
  .split-intro, .work-heading, .interests-heading, .approach-grid { grid-template-columns: 1fr; gap: 34px; }
  .journey { padding: 76px 0; }
  .journey-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .journey-step, .journey-step:not(:first-child), .journey-step:nth-child(even) { min-height: 0; padding: 28px 0; border-right: 0; }
  .journey-step:last-child { grid-column: auto; }
  .journey-step h3 { margin: 20px 0 10px; }
  .work-card { padding: 34px 26px; }
  .assessment { padding: 76px 0; }
  .assessment-grid { gap: 52px; }
  .assessment-photo { height: 210px; }
  .assessment-questions li { font-size: 1.1rem; }
  .interests-visual { height: 280px; margin-bottom: 36px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article, .audience-grid article + article, .audience-grid article:last-child { padding: 30px 0; border-left: 0; border-bottom: 1px solid rgba(11,51,59,.14); }
  .audience-grid article:last-child { border-bottom: 0; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid span { min-height: 78px; }
  .closing-cta { padding: 76px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
