:root {
  --navy: #062a56;
  --navy-deep: #031b39;
  --navy-soft: #123e6d;
  --gold: #d79a39;
  --gold-light: #efc169;
  --cream: #fff5e6;
  --cream-deep: #f4e1c5;
  --white: #fffdf9;
  --ink: #09294f;
  --muted: #667386;
  --line: rgba(6, 42, 86, .14);
  --shadow: 0 30px 80px rgba(3, 27, 57, .15);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 999; background: var(--gold); color: var(--navy-deep); padding: 12px 18px; border-radius: 0 0 12px 12px; font-weight: 800; }
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled { background: rgba(255, 253, 249, .93); box-shadow: 0 8px 30px rgba(3,27,57,.08); backdrop-filter: blur(18px); padding: 10px 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { text-decoration: none; display: grid; grid-template-columns: auto auto; grid-template-rows: 1fr auto; column-gap: 8px; align-items: center; line-height: .9; color: var(--navy); }
.brand-crown { grid-row: 1 / 3; font-size: 24px; color: var(--gold); transform: translateY(-1px); }
.brand-name { font-weight: 950; font-size: 25px; letter-spacing: .05em; }
.brand-sub { font-weight: 850; font-size: 9px; letter-spacing: .32em; margin-top: 5px; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 750; color: var(--navy); transition: color .2s ease; }
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta { color: var(--white); background: var(--navy); padding: 11px 18px; border-radius: 999px; }
.site-nav .nav-cta:hover { color: var(--navy); background: var(--gold-light); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px; transition: transform .2s ease; }

.hero { min-height: 820px; position: relative; background: linear-gradient(130deg, #fff9ef 0%, var(--cream) 56%, #f2dfc2 100%); padding: 150px 0 0; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(215,154,57,.17); border-radius: 50%; left: -290px; top: 80px; box-shadow: 0 0 0 55px rgba(215,154,57,.05), 0 0 0 110px rgba(215,154,57,.035); }
.hero-shape { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(215,154,57,.18) 0 2px, transparent 3px); background-size: 18px 18px; opacity: .45; }
.hero-shape-one { width: 180px; height: 180px; left: 5%; bottom: 110px; }
.hero-shape-two { width: 130px; height: 130px; right: 3%; top: 110px; }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 30px; align-items: center; min-height: 570px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .19em; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; display: inline-block; }
.eyebrow.light { color: var(--gold-light); }
.eyebrow.center { justify-content: center; }
.hero h1, h2 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.045em; line-height: .97; }
.hero h1 { font-size: clamp(62px, 7vw, 105px); }
h1 em, h2 em { color: var(--gold); font-weight: 500; }
.hero-lede { max-width: 600px; font-size: 19px; color: #46566b; margin: 30px 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 25px; border-radius: 999px; font-weight: 850; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 13px 30px rgba(6,42,86,.2); }
.button-primary:hover { box-shadow: 0 17px 34px rgba(6,42,86,.28); }
.button-secondary { border-color: var(--navy); color: var(--navy); background: rgba(255,255,255,.2); }
.button-gold { background: var(--gold-light); color: var(--navy-deep); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.hero-notes { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; color: var(--navy-soft); }
.hero-notes i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.hero-visual { min-height: 570px; position: relative; display: grid; place-items: center; }
.portrait-rings { position: absolute; width: 515px; aspect-ratio: 1; border: 2px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 14px rgba(255,253,249,.86), 0 0 0 17px rgba(215,154,57,.55); }
.portrait-frame { width: min(490px, 90%); aspect-ratio: 1; border-radius: 50%; overflow: hidden; position: relative; z-index: 1; box-shadow: var(--shadow); background: var(--navy); }
.portrait-frame img { height: 100%; width: 100%; object-fit: cover; object-position: 86% 50%; transform: scale(1.48); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -60px 90px rgba(3,27,57,.11); pointer-events: none; }
.hero-badge { position: absolute; z-index: 3; background: rgba(255,253,249,.95); border: 1px solid rgba(215,154,57,.55); border-radius: 18px; padding: 12px 17px; box-shadow: 0 14px 40px rgba(3,27,57,.14); min-width: 145px; }
.hero-badge span { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-weight: 900; font-size: 9px; }
.hero-badge strong { display: block; color: var(--navy); font-size: 16px; margin-top: 2px; }
.badge-top { top: 76px; right: -8px; transform: rotate(3deg); }
.badge-bottom { bottom: 50px; left: -10px; transform: rotate(-4deg); }
.spark { position: absolute; color: var(--gold); font-size: 32px; }
.spark-one { right: 22px; bottom: 105px; }
.spark-two { left: 36px; top: 110px; font-size: 20px; }
.scroll-strip { position: absolute; bottom: 0; width: 100%; background: var(--navy); color: var(--cream); padding: 16px 0; overflow: hidden; transform: rotate(-1deg) scale(1.03); transform-origin: center; }
.scroll-track { width: max-content; display: flex; gap: 22px; align-items: center; animation: marquee 30s linear infinite; font-size: 12px; letter-spacing: .18em; font-weight: 900; }
.scroll-track b { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 110px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.section-heading h2 { font-size: clamp(44px, 5.2vw, 70px); }
.section-heading.horizontal { display: flex; justify-content: space-between; gap: 60px; align-items: end; margin-bottom: 50px; }
.section-heading.horizontal > p { max-width: 460px; color: #aab7c9; margin: 0 0 8px; }
.meet { background: var(--white); }
.meet-copy p { color: #526176; font-size: 17px; }
.meet-copy .large-copy { color: var(--ink); font-size: 24px; line-height: 1.45; margin-top: 0; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 20px; color: var(--navy); font-weight: 900; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 3px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 80px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stats-grid article { padding: 35px; min-height: 230px; position: relative; }
.stats-grid article + article { border-left: 1px solid var(--line); }
.stats-grid strong { font-family: Georgia, serif; color: rgba(215,154,57,.42); font-size: 46px; position: absolute; top: 20px; right: 24px; }
.stats-grid h3 { margin: 75px 0 10px; font-size: 22px; }
.stats-grid p { color: var(--muted); margin: 0; }

.adventures { background: var(--navy-deep); color: var(--white); position: relative; overflow: hidden; }
.adventures::before { content: ""; position: absolute; inset: 0; opacity: .06; background-image: radial-gradient(circle at center, white 1px, transparent 1.5px); background-size: 24px 24px; }
.adventures .shell { position: relative; z-index: 1; }
.adventures h2 { color: var(--white); }
.adventure-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.adventure-card { min-height: 340px; border-radius: var(--radius); position: relative; padding: 28px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; isolation: isolate; border: 1px solid rgba(255,255,255,.13); }
.adventure-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 75% 30%, rgba(239,193,105,.45), transparent 30%), linear-gradient(145deg, #164c7f, #08264b 62%); }
.adventure-card::after { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; top: -70px; right: -70px; z-index: -1; box-shadow: 0 0 0 22px rgba(255,255,255,.035), 0 0 0 44px rgba(255,255,255,.02); }
.adventure-two::before { background: radial-gradient(circle at 75% 30%, rgba(255,255,255,.25), transparent 29%), linear-gradient(145deg, #b46b36, #6a2a23 70%); }
.adventure-three::before { background: radial-gradient(circle at 75% 30%, rgba(239,193,105,.42), transparent 29%), linear-gradient(145deg, #196f7c, #073344 70%); }
.adventure-four::before { background: radial-gradient(circle at 75% 30%, rgba(239,193,105,.35), transparent 29%), linear-gradient(145deg, #283e78, #161e43 70%); }
.card-number { color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .15em; font-weight: 900; }
.card-icon { position: absolute; right: 46px; top: 54px; width: 115px; height: 115px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.11); backdrop-filter: blur(6px); font-size: 55px; transform: rotate(7deg); }
.card-content p { margin: 0 0 7px; color: var(--gold-light); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.card-content h3 { margin: 0; max-width: 320px; font-family: Georgia, serif; font-size: 36px; line-height: 1; letter-spacing: -.03em; }
.card-content span { display: block; margin-top: 24px; font-size: 13px; font-weight: 850; }

.press { background: var(--cream); }
.press-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.press-visual { position: relative; min-height: 540px; }
.press-image-wrap { width: 88%; height: 510px; overflow: hidden; border-radius: 220px 220px 30px 30px; box-shadow: var(--shadow); border: 10px solid var(--white); }
.press-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 85% 50%; transform: scale(1.42); }
.press-seal { position: absolute; right: 0; bottom: 12px; width: 180px; height: 180px; border-radius: 50%; background: var(--navy); color: var(--white); border: 6px solid var(--cream); box-shadow: 0 0 0 2px var(--gold), var(--shadow); display: grid; place-content: center; text-align: center; transform: rotate(-8deg); }
.press-seal span { color: var(--gold-light); font-family: Georgia, serif; font-style: italic; }
.press-seal strong { font-size: 14px; letter-spacing: .1em; }
.press-seal small { margin-top: 6px; opacity: .7; }
.press-copy h2 { font-size: clamp(44px, 5vw, 68px); }
.press-copy > p { color: #526176; font-size: 18px; }
.press-list { margin: 30px 0; border-top: 1px solid rgba(6,42,86,.15); }
.press-list div { padding: 18px 0; border-bottom: 1px solid rgba(6,42,86,.15); display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.press-list span { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; }
.press-list strong { font-size: 15px; }

.collaborate { background: var(--white); }
.collaborate-box { background: var(--navy); color: var(--white); border-radius: 36px; text-align: center; padding: 85px 40px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.collaborate-box::before, .collaborate-box::after { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(239,193,105,.22); border-radius: 50%; }
.collaborate-box::before { left: -190px; top: -160px; box-shadow: 0 0 0 35px rgba(239,193,105,.035), 0 0 0 70px rgba(239,193,105,.025); }
.collaborate-box::after { right: -170px; bottom: -190px; box-shadow: 0 0 0 35px rgba(239,193,105,.035), 0 0 0 70px rgba(239,193,105,.025); }
.collaborate-box h2 { color: var(--white); font-size: clamp(50px, 6vw, 80px); position: relative; z-index: 1; }
.collaborate-box > p:not(.eyebrow) { max-width: 700px; margin: 24px auto; color: #c9d4df; font-size: 18px; position: relative; z-index: 1; }
.collab-mark { position: absolute; top: 28px; right: 40px; font-size: 44px; opacity: .12; transform: rotate(12deg); }
.service-pills { display: flex; justify-content: center; gap: 9px; flex-wrap: wrap; margin: 30px auto; position: relative; z-index: 1; }
.service-pills span { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 9px 14px; font-size: 12px; font-weight: 800; }
.collaborate-box .button { position: relative; z-index: 1; }

.contact { background: var(--white); padding-top: 40px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contact-copy h2 { font-size: clamp(50px, 5.5vw, 75px); }
.contact-copy > p { color: var(--muted); font-size: 17px; max-width: 470px; }
.email-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: var(--navy); font-size: clamp(19px, 2vw, 27px); font-weight: 900; text-decoration: none; border-bottom: 2px solid var(--gold); }
.email-note { font-size: 12px !important; max-width: 430px; }
.contact-form { background: #f8f2e9; border: 1px solid rgba(6,42,86,.08); border-radius: var(--radius); padding: 35px; box-shadow: 0 20px 60px rgba(3,27,57,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--navy); font-size: 12px; font-weight: 900; letter-spacing: .03em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(6,42,86,.16); background: var(--white); color: var(--ink); border-radius: 12px; padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(215,154,57,.13); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.social-section { padding: 80px 0; background: var(--cream); }
.social-row { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: center; }
.social-row p { margin: 0; font-family: Georgia, serif; font-style: italic; color: var(--gold); font-size: 24px; }
.social-row h2 { font-size: clamp(44px, 5vw, 66px); }
.social-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(6,42,86,.15); }
.social-links a { padding: 18px 0; border-bottom: 1px solid rgba(6,42,86,.15); text-decoration: none; display: flex; justify-content: space-between; gap: 15px; transition: padding .2s ease, color .2s ease; }
.social-links a:nth-child(odd) { padding-right: 25px; }
.social-links a:nth-child(even) { padding-left: 25px; border-left: 1px solid rgba(6,42,86,.15); }
.social-links a:hover { color: var(--gold); padding-left: 8px; }
.social-links span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; color: var(--gold); }
.social-links strong { font-size: 14px; }

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.65); padding: 32px 0; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand { color: var(--white); }
.footer-row p { font-size: 12px; }
.footer-row > div { display: flex; gap: 20px; }
.footer-row > div a { font-size: 12px; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 30px, 760px); }
  .site-nav { display: none; position: absolute; top: calc(100% + 5px); left: 15px; right: 15px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); padding: 18px; flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px; }
  .site-nav .nav-cta { text-align: center; margin-top: 7px; }
  .menu-button { display: block; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { min-height: 520px; }
  .hero-lede { max-width: 620px; }
  .hero-notes { justify-content: center; }
  .scroll-strip { position: relative; margin-top: 40px; }
  .split-grid, .press-grid, .contact-grid, .social-row { grid-template-columns: 1fr; gap: 45px; }
  .section-heading.horizontal { align-items: start; flex-direction: column; gap: 20px; }
  .press-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .contact { padding-top: 90px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 24px); --radius: 22px; }
  .site-header { padding: 10px 0; }
  .brand-name { font-size: 22px; }
  .hero { padding-top: 115px; }
  .hero-grid { gap: 5px; }
  .hero h1 { font-size: clamp(54px, 17vw, 76px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; padding-inline: 16px; }
  .hero-visual { min-height: 420px; }
  .portrait-rings { width: 330px; }
  .portrait-frame { width: 315px; }
  .badge-top { right: 0; top: 35px; }
  .badge-bottom { left: 0; bottom: 30px; }
  .hero-badge { min-width: 125px; padding: 9px 12px; }
  .hero-badge strong { font-size: 13px; }
  .spark-one { right: 7px; }
  .spark-two { left: 7px; }
  .section { padding: 82px 0; }
  .section-heading h2, .press-copy h2, .contact-copy h2 { font-size: 45px; }
  .split-grid { gap: 35px; }
  .meet-copy .large-copy { font-size: 21px; }
  .stats-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .stats-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .stats-grid article { min-height: auto; }
  .adventure-grid { grid-template-columns: 1fr; }
  .adventure-card { min-height: 300px; }
  .card-content h3 { font-size: 32px; }
  .press-visual { min-height: 450px; }
  .press-image-wrap { height: 430px; width: 93%; }
  .press-seal { width: 145px; height: 145px; }
  .press-list div { grid-template-columns: 1fr; gap: 5px; }
  .collaborate-box { padding: 70px 20px; border-radius: 28px; }
  .collaborate-box h2 { font-size: 47px; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .social-links { grid-template-columns: 1fr; }
  .social-links a:nth-child(odd), .social-links a:nth-child(even) { padding: 16px 0; border-left: 0; }
  .footer-row { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
