:root {
  --green-950: #03281a;
  --green-900: #073d27;
  --green-800: #0b5737;
  --green-600: #0e8f54;
  --yellow: #f7db37;
  --gold: #efae2b;
  --red: #a22a24;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --ink: #17211c;
  --muted: #657068;
  --line: rgba(23, 33, 28, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(3, 40, 26, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--green-950);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(23, 33, 28, .09);
}
.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.site-header.scrolled .brand { color: var(--green-950); }
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.8);
}
.site-header.scrolled .brand img { border-color: rgba(7,61,39,.18); }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-family: "Fraunces", serif; font-size: 1.2rem; letter-spacing: .01em; }
.brand small { margin-top: 5px; font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; opacity: .78; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.88);
}
.site-header.scrolled .primary-nav { color: var(--ink); }
.primary-nav a {
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
  transition: opacity .2s ease, transform .2s ease;
}
.primary-nav a:hover { opacity: .72; }
.primary-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
}
.site-header.scrolled .primary-nav .nav-cta {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}
.site-header.scrolled .menu-toggle { background: rgba(7,61,39,.08); }
.site-header.scrolled .menu-toggle span { background: var(--green-950); }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(247,219,55,.14), transparent 27%),
    radial-gradient(circle at 16% 78%, rgba(162,42,36,.22), transparent 26%),
    linear-gradient(135deg, var(--green-950), var(--green-900) 54%, #0a5c39);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -220px -8%;
  height: 320px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 70px;
  min-height: 770px;
  padding-top: 92px;
  padding-bottom: 85px;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow.dark { color: var(--green-700, #0b5737); }
.eyebrow.light { color: var(--yellow); }
.hero h1,
.section h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { font-size: clamp(3.5rem, 7vw, 6.7rem); }
.hero h1 span { color: var(--yellow); }
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--yellow);
  color: var(--green-950);
  box-shadow: 0 14px 28px rgba(0,0,0,.15);
}
.button-primary:hover { box-shadow: 0 18px 34px rgba(0,0,0,.22); }
.button-secondary { border-color: rgba(255,255,255,.32); color: var(--white); background: rgba(255,255,255,.06); }
.button-light { background: var(--cream); color: var(--green-950); }
.button-ghost-light { border-color: rgba(255,255,255,.38); color: var(--white); }
.full-width { width: 100%; }
.hero-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 34px;
  font-size: .94rem;
}
.hero-contact span { color: rgba(255,255,255,.58); }
.hero-contact a { color: var(--white); font-weight: 700; text-decoration: none; }

.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.logo-stage {
  position: relative;
  z-index: 3;
  width: min(80vw, 430px);
  aspect-ratio: 1;
  padding: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 38px 100px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  transform: rotate(2deg);
}
.logo-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(247,219,55,.28);
}
.orbit-one { width: 500px; height: 500px; animation: spin 24s linear infinite; }
.orbit-two { width: 590px; height: 590px; border-style: dashed; animation: spinReverse 34s linear infinite; }
.orbit::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: -6px;
  left: 50%;
  background: var(--yellow);
  box-shadow: 0 0 24px var(--yellow);
}
.floating-note {
  position: absolute;
  z-index: 4;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--cream);
  font-weight: 700;
  font-size: .86rem;
  box-shadow: 0 12px 34px rgba(0,0,0,.2);
}
.note-one { left: 0; top: 26%; }
.note-two { right: -2%; top: 42%; background: var(--yellow); }
.note-three { left: 9%; bottom: 16%; }

.marquee {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  overflow: hidden;
  padding: 15px 0;
  background: var(--yellow);
  color: var(--green-950);
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  align-items: center;
  animation: marquee 34s linear infinite;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.marquee-track i { font-style: normal; color: var(--red); }

.section { padding: 112px 0; }
.section h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}
.about { background: var(--paper); }
.about .section-heading h2 { max-width: 520px; }
.about-copy { padding-top: 34px; }
.large-copy { margin-top: 0; font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.42; color: var(--green-950); }
.about-copy > p:not(.large-copy) { color: var(--muted); font-size: 1.04rem; }
.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.fact-row div {
  padding: 22px 18px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.fact-row strong,
.fact-row span { display: block; }
.fact-row strong { font-family: "Fraunces", serif; font-size: 1.35rem; color: var(--green-900); }
.fact-row span { margin-top: 4px; font-size: .82rem; color: var(--muted); }

.experiences {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}
.experiences::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  left: -340px;
  top: -320px;
  border: 100px solid rgba(247,219,55,.035);
}
.section-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-top > p { max-width: 440px; margin: 0; color: rgba(255,255,255,.64); }
.watch .section-top > p { color: var(--muted); }
.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247,219,55,.45);
  background: linear-gradient(135deg, rgba(247,219,55,.1), rgba(255,255,255,.03));
}
.service-number { display: block; margin-bottom: 52px; color: var(--yellow); font-size: .82rem; letter-spacing: .14em; }
.service-card h3 { margin: 0; font-family: "Fraunces", serif; font-size: 1.8rem; }
.service-card p { margin: 14px 0 0; max-width: 470px; color: rgba(255,255,255,.65); }

.watch { background: var(--paper); }
.text-link { font-weight: 700; text-decoration: none; color: var(--green-900); white-space: nowrap; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(3,40,26,.1);
}
.video-frame { position: relative; aspect-ratio: 16/9; background: #0b1710; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-info { padding: 20px 22px 24px; }
.video-info span { font-size: .72rem; font-weight: 800; letter-spacing: .15em; color: var(--green-600); text-transform: uppercase; }
.video-info h3 { margin: 8px 0 0; font-size: 1.03rem; line-height: 1.35; }

.gallery {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(247,219,55,.12), transparent 24%),
    linear-gradient(135deg, #6e1716, var(--red));
}
.gallery-heading { max-width: 780px; }
.gallery-heading > p:last-child { max-width: 680px; color: rgba(255,255,255,.7); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 46px;
}
.instagram-shell {
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.95);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.instagram-shell .instagram-media { min-width: 0 !important; width: 100% !important; margin: 0 !important; border: 0 !important; }
.social-fallback {
  min-height: 480px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--green-950);
  background:
    linear-gradient(to top, rgba(247,242,231,.96), rgba(247,242,231,.4)),
    radial-gradient(circle at 50% 28%, var(--yellow), transparent 40%),
    var(--cream);
}
.social-fallback small { font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--red); }
.social-fallback h3 { margin: 8px 0 12px; font-family: "Fraunces", serif; font-size: 1.8rem; }
.social-fallback a { font-weight: 800; }
.gallery-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.booking-strip { padding: 76px 0; background: var(--yellow); }
.booking-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.booking-grid h2 { max-width: 820px; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.booking-strip .button-primary { background: var(--green-950); color: var(--white); }

.contact {
  color: var(--white);
  background: var(--green-900);
}
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.contact-intro p:last-child { max-width: 610px; color: rgba(255,255,255,.66); font-size: 1.06rem; }
.contact-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item span { display: block; font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.contact-item a { display: inline-block; margin-top: 5px; color: var(--green-900); font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.contact-card .button { margin-top: 24px; background: var(--yellow); }

.site-footer { padding: 34px 0; background: #021d13; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; }
.footer-brand { color: var(--white); }
.footer-brand img { width: 46px; height: 46px; }
.footer-grid p { margin: 0; font-size: .88rem; }
.copyright { white-space: nowrap; }

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

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

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

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 150px; padding-bottom: 180px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 480px; }
  .logo-stage { width: 360px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 500px; height: 500px; }
  .split-layout, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-copy { padding-top: 0; }
  .video-grid, .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card:last-child, .instagram-shell:last-child { grid-column: 1 / -1; max-width: calc(50% - 9px); justify-self: center; width: 100%; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p:nth-child(2) { text-align: right; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { height: 76px; }
  .brand img { width: 46px; height: 46px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 30px 40px;
    color: var(--white) !important;
    background: rgba(3,40,26,.98);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav a { font-size: 1.45rem; }
  .primary-nav .nav-cta { border-color: rgba(255,255,255,.4) !important; background: transparent !important; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { padding-top: 128px; padding-bottom: 170px; }
  .hero h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .hero-art { min-height: 400px; margin-top: 20px; }
  .logo-stage { width: min(78vw, 330px); }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 410px; height: 410px; }
  .note-one { left: 0; }
  .note-two { right: 0; }
  .section { padding: 84px 0; }
  .section-top { display: block; }
  .section-top > p, .section-top .text-link { display: inline-block; margin-top: 22px; }
  .service-grid, .video-grid, .instagram-grid { grid-template-columns: 1fr; }
  .video-card:last-child, .instagram-shell:last-child { grid-column: auto; max-width: none; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 36px; }
  .fact-row { grid-template-columns: 1fr; }
  .instagram-shell, .social-fallback { min-height: 420px; }
  .contact-card { padding: 26px; border-radius: var(--radius-md); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > p:nth-child(2) { text-align: left; }
  .copyright { grid-column: auto; }
}

@media (max-width: 430px) {
  .hero-actions .button { width: 100%; }
  .hero-art { min-height: 340px; }
  .logo-stage { width: 270px; }
  .orbit-one { width: 300px; height: 300px; }
  .orbit-two { width: 340px; height: 340px; }
  .floating-note { font-size: .72rem; padding: 8px 12px; }
  .note-one { top: 18%; }
  .note-three { bottom: 10%; }
}
