:root {
  --navy: #071a3a;
  --navy-2: #0d2853;
  --cream: #f7f1e7;
  --paper: #fffdf9;
  --gold: #d7ad58;
  --gold-soft: #ead8ad;
  --aqua: #25b8cf;
  --rose: #c88f98;
  --ink: #171b24;
  --muted: #5d6270;
  --line: rgba(7, 26, 58, .16);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 24px 70px rgba(7, 26, 58, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: fixed; top: 0; left: 0; z-index: 999; transform: translateY(-120%); background: #fff; color: var(--navy); padding: .75rem 1rem; }
.skip-link:focus { transform: translateY(0); }

.notice { min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 1rem; padding: .45rem 1rem; background: var(--navy); color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; }
.notice a { color: var(--gold-soft); font-weight: 700; text-underline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 40; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .75rem clamp(1.25rem, 4vw, 4rem); background: rgba(255, 253, 249, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand img { width: 74px; height: 74px; object-fit: contain; }
.site-header nav { display: flex; align-items: center; gap: clamp(1rem, 2.1vw, 2rem); }
.site-header nav a { text-decoration: none; color: var(--navy); font-size: .8rem; font-weight: 700; letter-spacing: .05em; }
.site-header nav a:not(.nav-cta):hover { color: #0b8fa3; }
.nav-cta { padding: .78rem 1rem; border: 1px solid var(--navy); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-weight: 800; font-size: 1rem; }

.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); min-height: 680px; background: var(--navy); color: #fff; }
.hero-copy { padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem); align-self: center; }
.eyebrow, .kicker { margin: 0 0 1.1rem; font-size: .73rem; line-height: 1.3; letter-spacing: .17em; text-transform: uppercase; font-weight: 800; color: var(--gold-soft); }
.eyebrow.dark { color: #936c21; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 500; line-height: 1.05; }
h1 { max-width: 850px; margin-bottom: 1.6rem; font-size: clamp(3.3rem, 6.3vw, 6.8rem); letter-spacing: -.045em; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2.5rem, 4.5vw, 4.8rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.65rem, 2.2vw, 2.25rem); }
.hero-lead { max-width: 680px; margin: 0 0 2rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .9rem 1.25rem; border: 1px solid transparent; text-decoration: none; font-size: .78rem; font-weight: 800; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.button-navy { background: var(--navy); color: #fff; }
.hero-note { margin: 1.5rem 0 0; max-width: 570px; color: rgba(255,255,255,.58); font-size: .88rem; }
.hero-media { position: relative; margin: 0; min-height: 680px; overflow: hidden; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0, transparent 24%), linear-gradient(0deg, rgba(7,26,58,.38), transparent 45%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-media figcaption { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; max-width: 300px; padding: .8rem 1rem; background: rgba(7,26,58,.86); border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 1.08rem; }

.section-shell { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.logo-band { padding: 1.7rem 0 2rem; background: #fff; border-bottom: 1px solid var(--line); }
.logo-band .kicker { color: var(--muted); text-align: center; }
.logo-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 1.4rem; align-items: center; }
.logo-grid img { width: 100%; height: 46px; object-fit: contain; filter: grayscale(1); opacity: .72; mix-blend-mode: multiply; }
.logo-grid img:hover { filter: none; opacity: 1; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--gold); color: var(--navy); }
.metric { min-height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem clamp(1rem, 3vw, 2.4rem); border-right: 1px solid rgba(7,26,58,.2); }
.metric:last-child { border-right: 0; }
.metric strong { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; font-weight: 500; }
.metric span { max-width: 235px; margin-top: .55rem; font-size: .82rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }

.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.intro { background: var(--paper); }
.section-heading { margin-bottom: 3rem; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.path-card { position: relative; min-height: 590px; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line); overflow: hidden; }
.path-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 5px; background: var(--aqua); }
.path-card.path-enterprise::before { background: var(--gold); }
.path-card.path-rooms::before { background: var(--rose); }
.card-number { display: block; margin-bottom: 4.5rem; color: rgba(7,26,58,.26); font-family: var(--serif); font-size: 3.5rem; }
.path-card .kicker { color: #876526; }
.path-card h3 { color: var(--navy); }
.path-card p { color: var(--muted); }
.path-card ul { margin: 1rem 0 2rem; padding: 0; list-style: none; }
.path-card li { padding: .65rem 0; border-top: 1px solid var(--line); color: var(--navy); font-weight: 700; }
.text-link { display: inline-flex; width: fit-content; margin-top: auto; color: var(--navy); font-weight: 800; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 5px; }

.advisory { background: var(--paper); border-top: 1px solid var(--line); }
.advisory-lead { display: grid; grid-template-columns: .72fr 1.28fr; gap: 1.5rem 5rem; align-items: start; margin-bottom: 4rem; }
.advisory-lead .eyebrow { grid-column: 1; }
.advisory-lead h2 { grid-column: 1 / -1; max-width: 1040px; margin-bottom: .5rem; }
.advisory-lead > p:last-child { grid-column: 2; max-width: 680px; margin: 0; color: var(--muted); font-size: 1.1rem; }
.advisory-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--navy); border-left: 1px solid var(--navy); }
.advisory-grid article { min-height: 310px; padding: 2rem; border-right: 1px solid var(--navy); border-bottom: 1px solid var(--navy); }
.advisory-grid article > span { color: #9a7429; font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.advisory-grid h3 { max-width: 430px; margin: 4rem 0 1rem; color: var(--navy); }
.advisory-grid p { max-width: 520px; margin: 0; color: var(--muted); }

.authority { background: var(--navy); color: #fff; }
.authority-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.authority-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.authority-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; }
.light-link { color: #fff; }
.archetype-stack { display: grid; gap: .75rem; }
.archetype { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.25rem 1.45rem; border: 1px solid rgba(255,255,255,.24); color: #fff; transition: transform .2s ease, background .2s ease; }
.archetype:hover { transform: translateX(-6px); background: rgba(255,255,255,.06); }
.archetype strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.archetype span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.catalyst { border-left: 7px solid #f0a727; }
.architect { border-left: 7px solid #31b7ce; }
.visionary { border-left: 7px solid #d8709a; }
.anchor { border-left: 7px solid #4b83cc; }
.strategist { border-left: 7px solid #9b73c7; }

.offer-ladder { background: var(--cream); }
.offer-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--paper); }
.offer-row article { min-height: 340px; display: flex; flex-direction: column; padding: 1.5rem; border-right: 1px solid var(--line); }
.offer-row article:last-child { border-right: 0; }
.offer-row span { margin-bottom: 2.2rem; color: #8a661f; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.offer-row h3 { color: var(--navy); font-size: 1.6rem; }
.offer-row p { color: var(--muted); }
.offer-row a { margin-top: auto; color: var(--navy); font-weight: 800; text-underline-offset: 4px; }
.offer-note { margin: 1.4rem 0 0; color: var(--muted); text-align: center; }

.results { background: var(--navy); color: #fff; }
.results .section-heading > p:last-child { color: rgba(255,255,255,.68); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.outcome-grid article { min-height: 210px; padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,.2); }
.outcome-grid article:last-child { border-right: 0; }
.outcome-grid strong { display: block; color: var(--gold-soft); font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 500; line-height: 1; }
.outcome-grid p { max-width: 220px; color: rgba(255,255,255,.72); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
blockquote { margin: 0; padding: 2.2rem; background: rgba(255,255,255,.06); border-left: 3px solid var(--gold); }
blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.35; }
blockquote footer { margin-top: 1.2rem; color: rgba(255,255,255,.66); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }

.rooms { background: var(--paper); }
.rooms-grid, .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.rooms-media, .about figure { margin: 0; }
.rooms-media img, .about img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.rooms-media figcaption, .about figcaption { margin-top: .7rem; color: var(--muted); font-family: var(--serif); font-style: italic; }
.rooms-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.room-proof { display: grid; gap: .65rem; margin: 1.6rem 0 2rem; }
.room-proof span { display: flex; align-items: baseline; gap: .7rem; padding-bottom: .65rem; border-bottom: 1px solid var(--line); }
.room-proof strong { color: var(--navy); font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }

.current-work { background: var(--cream); }
.current-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--navy); border-left: 1px solid var(--navy); }
.current-grid article { min-height: 360px; display: flex; flex-direction: column; padding: 1.8rem; border-right: 1px solid var(--navy); border-bottom: 1px solid var(--navy); background: var(--paper); }
.current-grid .kicker { color: #8c671f; }
.current-grid h3 { margin: 3rem 0 1rem; color: var(--navy); }
.current-grid p:not(.kicker) { color: var(--muted); }
.current-grid .current-link { width: fit-content; margin: .3rem 0 1rem; color: var(--navy); font-weight: 800; text-underline-offset: 4px; }
.current-grid span { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fine-print { margin: 1rem 0 0; color: var(--muted); font-size: .77rem; }

.now { background: var(--cream); }
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.event-card { min-height: 300px; display: flex; flex-direction: column; padding: 2rem; background: var(--paper); border: 1px solid var(--line); }
.featured-event { background: var(--gold); }
.event-date { margin: 0 0 2.6rem; color: var(--muted); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.featured-event .event-date { color: rgba(7,26,58,.65); }
.event-card h3 { color: var(--navy); }
.event-card p:not(.event-date) { color: var(--muted); }
.event-card a, .coming-soon { width: fit-content; margin-top: auto; color: var(--navy); font-weight: 800; text-underline-offset: 4px; }
.coming-soon { color: var(--muted); }

.about { background: var(--paper); }
.about-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.recognitions { margin: 1.8rem 0 2rem; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.recognitions li { padding: .65rem 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 700; }

.contact-options { scroll-margin-top: 110px; padding: clamp(5rem, 9vw, 8rem) 0; background: var(--navy-2); color: #fff; }
.contact-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 5rem; margin-bottom: 3.5rem; align-items: end; }
.contact-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.contact-heading h2 { margin-bottom: 0; }
.contact-heading > p:last-child { max-width: 590px; margin: 0; color: rgba(255,255,255,.72); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.4); border-left: 1px solid rgba(255,255,255,.4); }
.contact-grid > a { min-height: 340px; display: flex; flex-direction: column; padding: 1.6rem; border-right: 1px solid rgba(255,255,255,.4); border-bottom: 1px solid rgba(255,255,255,.4); color: #fff; text-decoration: none; transition: background .2s ease, color .2s ease; }
.contact-grid > a:hover { background: var(--gold); color: var(--navy); }
.contact-grid span { color: var(--gold-soft); font-size: .72rem; font-weight: 900; }
.contact-grid > a:hover span { color: var(--navy); }
.contact-grid h3 { margin: 4rem 0 1rem; }
.contact-grid p { margin: 0; color: rgba(255,255,255,.7); }
.contact-grid > a:hover p { color: var(--navy); }
.contact-grid strong { margin-top: auto; padding-top: 1rem; border-top: 1px solid currentColor; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }

.site-footer { padding: 4rem clamp(1.5rem, 5vw, 5rem) 1.5rem; background: #04132d; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.05fr .7fr 1fr .8fr; gap: 3rem; }
.footer-brand img { width: 90px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.62); }
.site-footer h2 { margin-bottom: 1rem; color: var(--gold-soft); font-family: var(--sans); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-footer a { display: block; width: fit-content; margin: .55rem 0; color: rgba(255,255,255,.8); text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.copyright { margin: 3rem 0 0; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.5); font-size: .78rem; }

@media (max-width: 1050px) {
  .site-header nav { position: absolute; top: 100%; right: 1rem; left: 1rem; display: none; flex-direction: column; align-items: stretch; padding: 1rem; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: .65rem; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 620px; }
  .hero-media { min-height: 520px; }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-strip, .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2), .outcome-grid article:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid rgba(7,26,58,.2); }
  .outcome-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: auto; }
  .card-number { margin-bottom: 2rem; }
  .offer-row { grid-template-columns: repeat(2, 1fr); }
  .offer-row article:nth-child(2) { border-right: 0; }
  .offer-row article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .current-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .notice { align-items: flex-start; gap: .3rem; flex-direction: column; font-size: .68rem; }
  .site-header { min-height: 72px; padding: .45rem 1rem; }
  .brand img { width: 60px; height: 60px; }
  .hero-copy { min-height: auto; padding-top: 4.5rem; padding-bottom: 4rem; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-actions, .authority-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-media { min-height: 400px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(7,26,58,.5), transparent 55%); }
  .hero-media figcaption { right: 1rem; bottom: 1rem; left: 1rem; max-width: none; }
  .section-shell { width: min(100% - 2rem, 1180px); }
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .logo-grid img { height: 42px; }
  .proof-strip, .outcome-grid { grid-template-columns: 1fr; }
  .metric, .outcome-grid article { border-right: 0; border-bottom: 1px solid rgba(7,26,58,.2); }
  .outcome-grid article { border-bottom-color: rgba(255,255,255,.2); }
  .split-heading, .authority-grid, .rooms-grid, .about-grid, .advisory-lead, .contact-heading { grid-template-columns: 1fr; gap: 2.5rem; }
  .advisory-lead .eyebrow, .advisory-lead h2, .advisory-lead > p:last-child, .contact-heading .eyebrow { grid-column: 1; }
  .advisory-grid, .current-grid, .contact-grid { grid-template-columns: 1fr; }
  .offer-row, .event-grid, .quote-grid { grid-template-columns: 1fr; }
  .offer-row article { border-right: 0; border-bottom: 1px solid var(--line); }
  .offer-row article:last-child { border-bottom: 0; }
  .event-card { min-height: 260px; }
  .archetype { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

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