:root {
  --ink: #08100b;
  --black: #050806;
  --cream: #f4efdf;
  --paper: #fffdf7;
  --green: #087833;
  --green-deep: #034c26;
  --gold: #f5ac18;
  --red: #df241f;
  --muted: #77756c;
  --line: rgba(8, 16, 11, .14);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .035; mix-blend-mode: multiply;
  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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  height: 92px; width: 100%; padding: 0 4.5vw;
  position: absolute; top: 0; left: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 12, 10, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: #fffaf0;
  padding: 10px 22px;
  border: 1px solid rgba(243, 178, 31, 0.45);
  border-radius: 999px;

  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.brand:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 178, 31, 0.75);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.brand img {
  display: block;
  width: auto;
  height: 64px;
  max-width: 260px;
  object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.nav a { position: relative; }
.nav a:not(.nav-cta)::after { content:""; position:absolute; left:0; bottom:-8px; width:0; height:1px; background:var(--gold); transition:.25s; }
.nav a:hover::after { width:100%; }
.nav-cta { border: 1px solid rgba(255,255,255,.45); padding: 13px 19px; border-radius: 100px; transition:.25s; }
.nav-cta:hover { background: var(--gold); color:var(--black); border-color:var(--gold); }
.menu-toggle { display:none; background:none; border:0; padding:8px; }
.menu-toggle span { display:block; width:25px; height:2px; background:white; margin:5px 0; transition:.25s; }

.hero { min-height: 790px; height: 100svh; position: relative; display:flex; align-items:center; color:white; overflow:hidden; background:#08100b; }
.hero-visual {
  position:absolute; inset:0;
  background-image: url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=2100&q=90");
  background-size:cover; background-position:center;
  transform:scale(1.03);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform:scale(1.11); } }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(2,8,4,.91) 0%, rgba(2,8,4,.76) 38%, rgba(2,8,4,.24) 72%, rgba(2,8,4,.4) 100%), linear-gradient(0deg, rgba(2,8,4,.65), transparent 45%); }
.hero-content { position:relative; z-index:2; width:min(720px, 86vw); margin-left:max(7vw, 70px); padding-top:70px; }
.eyebrow, .overline { text-transform:uppercase; letter-spacing:.19em; font-size:11px; font-weight:700; }
.eyebrow { display:flex; align-items:center; gap:12px; color:#f8dfac; margin-bottom:26px; }
.eyebrow span { width:34px; height:1px; background:var(--gold); }
h1, h2, blockquote { font-family:"Playfair Display", serif; font-weight:600; letter-spacing:-.045em; margin:0; }
h1 { font-size:clamp(64px, 7.6vw, 118px); line-height:.87; }
h1 em, h2 em, blockquote em { color:var(--gold); font-weight:600; }
.hero-content > p { max-width:600px; color:rgba(255,255,255,.76); font-size:17px; line-height:1.75; margin:30px 0 34px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:54px; padding:0 25px; border-radius:100px; font-size:13px; font-weight:700; transition:.25s; }
.btn-primary { background:var(--gold); color:var(--black); }
.btn-primary:hover { background:#ffc13c; transform:translateY(-2px); }
.btn-ghost { border:1px solid rgba(255,255,255,.38); color:white; backdrop-filter:blur(8px); }
.btn-ghost:hover { background:white; color:var(--black); }
.hero-card { position:absolute; right:5vw; bottom:7.5vh; z-index:3; width:260px; padding:25px; background:rgba(5,12,7,.72); border:1px solid rgba(255,255,255,.16); backdrop-filter:blur(18px); border-radius:4px; }
.hero-card-kicker { color:var(--gold); font-size:10px; letter-spacing:.18em; text-transform:uppercase; }
.hero-card strong { display:block; font-family:"Playfair Display",serif; font-size:28px; margin-top:8px; }
.hero-card-line { width:100%; height:1px; background:rgba(255,255,255,.17); margin:18px 0; }
.hero-card p { color:rgba(255,255,255,.62); font-size:12px; line-height:1.7; margin:0 0 16px; }
.hero-card a { font-size:12px; color:white; font-weight:700; }
.hero-card a span { color:var(--gold); margin-left:5px; }
.scroll-cue { position:absolute; left:4.5vw; bottom:40px; z-index:2; display:flex; align-items:center; gap:13px; font-size:9px; letter-spacing:.18em; text-transform:uppercase; transform:rotate(-90deg); transform-origin:left center; }
.scroll-cue i { width:60px; height:1px; background:rgba(255,255,255,.5); display:block; }

.ticker { background:var(--gold); overflow:hidden; padding:13px 0; border-top:1px solid rgba(0,0,0,.2); border-bottom:1px solid rgba(0,0,0,.2); }
.ticker-track { width:max-content; display:flex; align-items:center; gap:28px; animation:ticker 32s linear infinite; font-weight:800; font-size:11px; letter-spacing:.16em; }
.ticker-track i { color:var(--green); font-size:8px; }
@keyframes ticker { to { transform:translateX(-50%); } }

.section { padding:125px max(6vw, 40px); }
.section-heading { max-width:var(--max); margin:0 auto 75px; display:grid; grid-template-columns:60px 1fr auto; align-items:start; gap:25px; }
.section-number { font-family:"Playfair Display",serif; font-size:15px; color:var(--green); padding-top:8px; }
.overline { color:var(--green); margin:0 0 13px; }
h2 { font-size:clamp(50px, 6.1vw, 86px); line-height:.95; }
.section-heading h2 em { color:var(--green); }
.heading-note { width:260px; color:var(--muted); font-size:13px; line-height:1.6; margin-top:34px; }

.experience { background:var(--paper); }
.experience-grid { max-width:var(--max); margin:auto; display:grid; grid-template-columns:.82fr 1.18fr; gap:9vw; align-items:center; }
.story-card { padding-left:85px; }
.story-card .large-copy { font-family:"Playfair Display",serif; font-size:clamp(27px, 2.5vw, 38px); line-height:1.32; color:var(--ink); margin:0 0 30px; }
.story-card > p:not(.large-copy) { color:var(--muted); font-size:14px; line-height:1.85; max-width:480px; }
.text-link { display:inline-flex; gap:16px; font-weight:700; font-size:13px; margin-top:22px; padding-bottom:5px; border-bottom:1px solid var(--ink); }
.text-link span { color:var(--green); }
.image-stack { position:relative; min-height:620px; }
.image-card { overflow:hidden; position:absolute; }
.image-card img { width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.image-card:hover img { transform:scale(1.045); }
.image-main { width:72%; height:540px; top:0; right:0; }
.image-small { width:45%; height:315px; bottom:0; left:0; border:12px solid var(--paper); }
.image-label { position:absolute; left:18px; bottom:18px; background:var(--paper); padding:10px 14px; font-size:9px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.sun-badge { width:118px; height:118px; border-radius:50%; position:absolute; top:42%; left:24%; z-index:4; background:var(--gold); display:flex; flex-direction:column; align-items:center; justify-content:center; transform:rotate(-8deg); box-shadow:0 15px 40px rgba(0,0,0,.16); }
.sun-badge span { font-size:8px; letter-spacing:.16em; font-weight:700; }
.sun-badge strong { font-family:"Playfair Display",serif; font-size:25px; line-height:1; }

.menu-section { position:relative; overflow:hidden; background:var(--black); color:white; }
.menu-glow { position:absolute; width:600px; height:600px; border-radius:50%; background:rgba(8,120,51,.24); filter:blur(130px); right:-250px; top:30px; }
.section-heading.light { position:relative; }
.section-heading.light .section-number, .section-heading.light .overline { color:var(--gold); }
.section-heading.light h2 em { color:var(--gold); }
.section-heading.light .heading-note { color:rgba(255,255,255,.48); }
.menu-tabs { max-width:var(--max); margin:0 auto 38px; display:flex; border-bottom:1px solid rgba(255,255,255,.15); gap:40px; }
.menu-tabs button { padding:0 0 16px; background:none; border:0; color:rgba(255,255,255,.45); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.13em; position:relative; }
.menu-tabs button::after { content:""; position:absolute; left:0; bottom:-1px; width:0; height:2px; background:var(--gold); transition:.3s; }
.menu-tabs button.active { color:white; }
.menu-tabs button.active::after { width:100%; }
.menu-panels { max-width:var(--max); margin:auto; }
.menu-panel { display:none; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.15); }
.menu-panel.active { display:grid; animation:fadeIn .45s; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } }
.menu-panel article { background:#080d09; min-height:245px; padding:32px 27px; transition:.3s; }
.menu-panel article:hover { background:#101c14; transform:translateY(-4px); }
.menu-panel article > span { color:var(--gold); font-size:10px; letter-spacing:.12em; }
.menu-panel h3 { font-family:"Playfair Display",serif; font-size:27px; margin:50px 0 15px; }
.menu-panel p { color:rgba(255,255,255,.5); font-size:13px; line-height:1.7; }
.menu-disclaimer { max-width:var(--max); margin:24px auto 0; color:rgba(255,255,255,.38); font-size:11px; }

.services { background:#f2eddf; }
.service-grid { max-width:var(--max); margin:auto; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.service-card { min-height:390px; padding:34px 28px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; flex-direction:column; transition:.35s; }
.service-card:hover { background:var(--paper); transform:translateY(-6px); box-shadow:0 18px 50px rgba(30,35,25,.08); }
.service-card.featured { background:var(--green-deep); color:white; }
.service-icon { width:46px; height:46px; border:1px solid currentColor; border-radius:50%; display:grid; place-items:center; color:var(--gold); margin-bottom:56px; }
.service-card > span { font-size:10px; color:var(--green); }
.service-card.featured > span { color:var(--gold); }
.service-card h3 { font-family:"Playfair Display",serif; font-size:28px; line-height:1.1; margin:14px 0; }
.service-card p { font-size:13px; line-height:1.7; color:var(--muted); }
.service-card.featured p { color:rgba(255,255,255,.63); }
.service-card a { margin-top:auto; font-size:12px; font-weight:700; }

.how { padding-left:0; display:grid; grid-template-columns:1.1fr .9fr; align-items:stretch; background:var(--paper); }
.how-photo { min-height:820px; position:relative; overflow:hidden; }
.how-photo img { width:100%; height:100%; object-fit:cover; }
.photo-caption { position:absolute; right:0; bottom:0; background:var(--gold); padding:28px 36px; font-family:"Playfair Display",serif; font-size:22px; line-height:1.15; }
.how-content { padding:80px 8vw 70px; }
.how-content h2 { margin-bottom:55px; }
.how-content h2 em { color:var(--green); }
.how-content ol { margin:0; padding:0; list-style:none; }
.how-content li { display:grid; grid-template-columns:48px 1fr; gap:20px; padding:23px 0; border-top:1px solid var(--line); }
.how-content li:last-child { border-bottom:1px solid var(--line); }
.how-content li > span { color:var(--green); font-size:10px; font-weight:800; padding-top:4px; }
.how-content h3 { margin:0 0 6px; font-family:"Playfair Display",serif; font-size:22px; }
.how-content li p { margin:0; font-size:13px; line-height:1.6; color:var(--muted); }

.quote-section { background:var(--green-deep); color:white; text-align:center; padding:120px 30px; position:relative; overflow:hidden; }
.quote-section::before, .quote-section::after { content:""; width:170px; height:170px; border:1px solid rgba(245,172,24,.25); position:absolute; transform:rotate(45deg); }
.quote-section::before { left:-80px; top:-60px; }
.quote-section::after { right:-80px; bottom:-60px; }
.quote-mark { font-family:"Playfair Display",serif; font-size:80px; line-height:.5; color:var(--gold); }
blockquote { font-size:clamp(38px, 5.2vw, 70px); line-height:1.1; margin:30px auto; max-width:1050px; }
.quote-signature { font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.55); }

.newsletter { background:var(--gold); }
.newsletter-inner { max-width:var(--max); margin:auto; display:grid; grid-template-columns:1fr .8fr; gap:9vw; align-items:end; }
.newsletter .overline { color:var(--ink); }
.newsletter h2 em { color:var(--green-deep); }
.newsletter-inner > div > p:last-child { max-width:540px; font-size:14px; line-height:1.7; }
.signup-form { position:relative; }
.signup-form input { width:100%; height:62px; background:transparent; border:0; border-bottom:2px solid var(--ink); outline:none; padding:0 160px 0 0; font-size:16px; color:var(--ink); }
.signup-form input::placeholder { color:rgba(8,16,11,.55); }
.signup-form button { position:absolute; top:8px; right:0; height:46px; border:0; background:var(--ink); color:white; border-radius:100px; padding:0 20px; font-size:12px; font-weight:700; }
.signup-form small { display:block; margin-top:12px; font-size:10px; color:rgba(8,16,11,.62); }

.footer { background:var(--black); color:white; padding:75px max(6vw, 40px) 30px; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.footer-top img {
  display: block;
  width: auto;
  height: 92px;
  max-width: min(420px, 88vw);
  object-fit: contain;

  background: #fffaf0;
  padding: 16px 34px;
  border: 1px solid rgba(243, 178, 31, 0.45);
  border-radius: 999px;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.footer-top p {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-top p b {
  color: #f3b21f;
}
.footer-top b:nth-child(1) { color:var(--green); }
.footer-top b:nth-child(2) { color:var(--red); }
.footer-grid { max-width:var(--max); margin:45px auto 65px; display:grid; grid-template-columns:repeat(4,1fr); gap:35px; }
.footer-grid span { color:var(--gold); text-transform:uppercase; letter-spacing:.15em; font-size:9px; font-weight:700; }
.footer-grid p { color:rgba(255,255,255,.52); font-size:12px; line-height:1.7; }
.footer-grid a:hover { color:var(--gold); }
.footer-bottom { max-width:var(--max); margin:auto; padding-top:22px; border-top:1px solid rgba(255,255,255,.13); display:flex; justify-content:space-between; color:rgba(255,255,255,.35); font-size:10px; }
.footer-bottom a { color:rgba(255,255,255,.75); }

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

@media (max-width: 980px) {
  .site-header { height:78px; }
  .brand { width:150px; }
  .menu-toggle { display:block; z-index:22; }
  .nav { position:fixed; inset:0; background:rgba(4,10,6,.98); flex-direction:column; justify-content:center; gap:30px; font-size:18px; transform:translateX(100%); transition:.35s; }
  .nav.open { transform:none; }
  .menu-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity:0; }
  .menu-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .hero-content { margin-left:7vw; }
  .hero-card { display:none; }
  .section-heading { grid-template-columns:45px 1fr; }
  .heading-note { grid-column:2; width:auto; margin-top:0; }
  .experience-grid { grid-template-columns:1fr; gap:60px; }
  .story-card { padding-left:0; }
  .image-stack { width:min(760px,100%); margin:auto; }
  .menu-panel { grid-template-columns:repeat(2,1fr); }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .how { grid-template-columns:1fr; padding-right:0; }
  .how-photo { min-height:600px; }
  .newsletter-inner { grid-template-columns:1fr; gap:45px; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 620px) {
  .site-header { padding:0 20px; }
  .brand { width:132px; }
  .hero { min-height:720px; }
  .hero-overlay { background:linear-gradient(90deg,rgba(2,8,4,.9),rgba(2,8,4,.55)),linear-gradient(0deg,rgba(2,8,4,.8),transparent 55%); }
  .hero-content { margin:0; padding:80px 22px 0; width:100%; }
  h1 { font-size:57px; }
  .hero-content > p { font-size:15px; }
  .btn { width:100%; }
  .scroll-cue { display:none; }
  .section { padding:90px 22px; }
  .section-heading { grid-template-columns:1fr; gap:8px; margin-bottom:52px; }
  .section-number { display:none; }
  .heading-note { grid-column:auto; }
  h2 { font-size:48px; }
  .image-stack { min-height:465px; }
  .image-main { width:86%; height:400px; }
  .image-small { width:52%; height:220px; border-width:8px; }
  .sun-badge { width:92px; height:92px; left:17%; }
  .menu-tabs { overflow:auto; gap:25px; }
  .menu-tabs button { white-space:nowrap; }
  .menu-panel { grid-template-columns:1fr; }
  .menu-panel article { min-height:210px; }
  .menu-panel h3 { margin-top:36px; }
  .service-grid { grid-template-columns:1fr; }
  .how-photo { min-height:430px; }
  .how-content { padding:72px 22px; }
  .photo-caption { padding:20px; font-size:18px; }
  blockquote { font-size:38px; }
  .newsletter { padding-left:22px; padding-right:22px; }
  .signup-form input { padding-right:0; }
  .signup-form button { position:static; width:100%; margin-top:15px; }
  .footer { padding:60px 22px 25px; }
  .footer-top { flex-direction:column; align-items:flex-start; gap:25px; }
  .footer-top img { width:220px; }
  .footer-grid { grid-template-columns:1fr; gap:18px; }
  .footer-bottom { flex-direction:column; gap:8px; }
}

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