@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  --ink: #0b2030;
  --ink-soft: #304955;
  --navy: #071a29;
  --river: #0f5667;
  --forest: #244c3c;
  --moss: #6e8061;
  --gold: #b2874e;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --mist: #e8eee9;
  --line: rgba(11, 32, 48, 0.14);
  --shadow: 0 24px 70px rgba(4, 23, 34, 0.13);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 16px; top: -70px; z-index: 1000;
  background: var(--paper); color: var(--ink); padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-top: 0;
}
h1 { font-size: clamp(3.6rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.65rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.45rem, 2.3vw, 2rem); }
p { margin-top: 0; }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--ink-soft); max-width: 720px; }
.muted { color: var(--ink-soft); }
.kicker { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.5rem, 2.6vw, 2.25rem); line-height: 1.2; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, 0.93);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(7, 26, 41, 0.06);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; position: relative; z-index: 102; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: 'Fraunces', Georgia, serif; font-size: 1.16rem; letter-spacing: .06em; }
.brand-copy span { margin-top: 6px; color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; font-size: .94rem; font-weight: 600; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.65); position: relative; z-index: 102; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ''; position: absolute; left: 12px; width: 20px; height: 1.5px; background: var(--ink); transition: .25s ease; }
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 22px; }
.nav-toggle::after { top: 29px; }
.nav-toggle.active span { opacity: 0; }
.nav-toggle.active::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 21px; border-radius: 999px;
  border: 1px solid transparent; font-size: .92rem; font-weight: 700;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(11,32,48,.16); }
.btn-primary:hover { background: var(--river); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: white; }
.btn-outline { border-color: rgba(11, 32, 48, .24); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--forest); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.text-link::after { content: '↗'; color: var(--gold); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero {
  min-height: 940px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 19%, rgba(114, 213, 188, .34), transparent 21%),
    radial-gradient(circle at 84% 31%, rgba(217, 128, 84, .27), transparent 18%),
    linear-gradient(145deg, #f9f5eb 0%, #e8eee8 53%, #d3e3df 100%);
  display: flex; align-items: center;
  padding: 160px 0 110px;
}
.hero::before {
  content: '';
  position: absolute; width: 980px; height: 980px; border-radius: 50%;
  right: -310px; top: -290px;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 0 0 95px rgba(255,255,255,.08), inset 0 0 0 190px rgba(255,255,255,.06), inset 0 0 0 285px rgba(255,255,255,.05);
}
.hero::after {
  content: '';
  position: absolute; left: -5%; right: -5%; bottom: -120px; height: 330px;
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  background: var(--paper);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px; align-items: center; }
.hero-copy h1 { max-width: 840px; margin-bottom: 28px; }
.hero-copy h1 span { display: block; color: var(--river); }
.hero-copy .lead { max-width: 650px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px 34px; margin-top: 54px; color: var(--ink-soft); font-size: .88rem; font-weight: 600; }
.hero-meta span { display: flex; align-items: center; gap: 10px; }
.hero-meta i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero-mark { position: relative; min-height: 550px; display: grid; place-items: center; }
.logo-orbit { position: relative; width: min(420px, 80vw); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; }
.logo-orbit::before, .logo-orbit::after { content: ''; position: absolute; border: 1px solid rgba(11,32,48,.15); border-radius: 50%; }
.logo-orbit::before { inset: -35px; }
.logo-orbit::after { inset: -78px; }
.logo-orbit img { width: 100%; filter: drop-shadow(0 34px 45px rgba(7,26,41,.21)); animation: float 7s ease-in-out infinite; }
.orbit-note { position: absolute; right: -18px; bottom: 32px; width: 190px; padding: 20px; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.62); backdrop-filter: blur(16px); border-radius: 18px; box-shadow: 0 20px 40px rgba(7,26,41,.08); }
.orbit-note strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 1.18rem; }
.orbit-note span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .79rem; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }

.logo-strip { padding: 20px 0 44px; position: relative; z-index: 3; }
.logo-strip-inner { display: flex; align-items: center; justify-content: center; gap: 20px 38px; flex-wrap: wrap; color: var(--ink-soft); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.logo-strip-inner span::before { content: '◆'; margin-right: 38px; color: var(--gold); font-size: .5rem; vertical-align: middle; }
.logo-strip-inner span:first-child::before { display: none; }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.intro-copy { max-width: 720px; }
.intro-copy h2 { margin-bottom: 28px; }
.feature-stack { display: grid; gap: 14px; }
.feature-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(178,135,78,.5); box-shadow: 0 18px 45px rgba(7,26,41,.07); }
.feature-card .num { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .16em; }
.feature-card h3 { margin: 9px 0 8px; font-size: 1.45rem; }
.feature-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; }

.dark-section { position: relative; overflow: hidden; color: #f8f5ed; background: var(--navy); }
.dark-section::before { content: ''; position: absolute; width: 750px; height: 750px; right: -260px; top: -350px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); box-shadow: inset 0 0 0 100px rgba(255,255,255,.025), inset 0 0 0 200px rgba(255,255,255,.02); }
.dark-section .eyebrow { color: #d6ad73; }
.dark-section .lead, .dark-section .muted { color: rgba(248,245,237,.68); }
.experience-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.experience-head h2 { max-width: 700px; margin-bottom: 0; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.experience-card { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); backdrop-filter: blur(8px); }
.experience-card.featured { background: linear-gradient(145deg, rgba(32,117,119,.75), rgba(15,86,103,.35)); }
.experience-card .tag { align-self: flex-start; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.78); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.experience-card h3 { margin: 26px 0 12px; font-size: 2rem; }
.experience-card p { color: rgba(255,255,255,.67); }
.price { margin-top: 30px; color: white; }
.price small { display: block; color: rgba(255,255,255,.55); text-transform: uppercase; font-size: .69rem; letter-spacing: .12em; }
.price strong { font-family: 'Fraunces', Georgia, serif; font-size: 1.65rem; font-weight: 500; }

.menu-preview { display: grid; grid-template-columns: .84fr 1.16fr; gap: 75px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.menu-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.menu-item h3 { margin: 0 0 6px; font-family: 'DM Sans', sans-serif; font-size: 1.02rem; letter-spacing: 0; }
.menu-item p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.menu-item .item-price { color: var(--gold); font-weight: 700; white-space: nowrap; }

.quote-band { padding: 40px 0; }
.quote-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; padding: 70px; border-radius: 34px; background: linear-gradient(135deg, #dfe9e4 0%, #f1eadc 100%); }
.quote-card::after { content: ''; position: absolute; right: -100px; bottom: -230px; width: 500px; height: 500px; border: 1px solid rgba(11,32,48,.12); border-radius: 50%; box-shadow: inset 0 0 0 70px rgba(255,255,255,.18), inset 0 0 0 140px rgba(255,255,255,.12); }
.quote-card h2 { font-size: clamp(2.5rem, 4vw, 4.1rem); margin-bottom: 15px; }
.quote-card .actions { justify-content: flex-end; position: relative; z-index: 2; }

.page-hero { padding: 190px 0 105px; position: relative; overflow: hidden; background: linear-gradient(140deg, var(--cream), #e3ece7); }
.page-hero::after { content: ''; position: absolute; width: 620px; height: 620px; border-radius: 50%; right: -180px; top: -220px; border: 1px solid rgba(11,32,48,.11); box-shadow: inset 0 0 0 90px rgba(255,255,255,.12), inset 0 0 0 180px rgba(255,255,255,.09); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 980px; margin-bottom: 25px; font-size: clamp(3.5rem, 7vw, 6.6rem); }
.page-hero .lead { max-width: 780px; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.story-visual { position: relative; min-height: 570px; border-radius: 34px; background: radial-gradient(circle at 50% 25%, rgba(103,207,179,.55), transparent 27%), linear-gradient(165deg, #0d4352, #081b2a 72%); overflow: hidden; box-shadow: var(--shadow); }
.story-visual::before { content: ''; position: absolute; left: -10%; right: -10%; bottom: 19%; height: 34%; background: #1f4b40; clip-path: polygon(0 80%, 12% 47%, 24% 72%, 40% 28%, 56% 72%, 70% 42%, 84% 65%, 100% 22%, 100% 100%, 0 100%); }
.story-visual::after { content: ''; position: absolute; left: 15%; right: 15%; bottom: -18%; height: 45%; background: linear-gradient(180deg,#19556b,#0b2d43); border-radius: 50% 50% 0 0 / 35% 35% 0 0; box-shadow: inset 0 18px 28px rgba(255,255,255,.1); }
.story-visual img { position: absolute; width: 155px; right: 35px; top: 35px; filter: drop-shadow(0 20px 35px rgba(0,0,0,.27)); }
.story-visual .visual-copy { position: absolute; left: 38px; bottom: 42px; z-index: 2; color: white; max-width: 320px; }
.story-visual .visual-copy span { display: block; color: rgba(255,255,255,.65); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.story-visual .visual-copy strong { display: block; margin-top: 10px; font-family: 'Fraunces', Georgia, serif; font-size: 2rem; line-height: 1.08; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 55px; }
.value-card { padding: 26px; border-radius: 20px; background: white; border: 1px solid var(--line); }
.value-card strong { display: block; margin-bottom: 8px; font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; }
.value-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .88rem; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: start; }
.check-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.check-list li { list-style: none; display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.check-list li::before { content: '✓'; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--forest); font-size: .75rem; font-weight: 800; }

.package-list { display: grid; gap: 20px; }
.package-row { display: grid; grid-template-columns: 190px 1fr auto; gap: 28px; align-items: center; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.package-row .package-number { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.package-row h3 { margin: 6px 0 0; }
.package-row p { margin: 0; color: var(--ink-soft); }
.package-row .package-price { text-align: right; font-weight: 700; white-space: nowrap; }
.package-row .package-price small { display: block; color: var(--ink-soft); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }

.menu-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 38px 0 44px; }
.menu-tab { border: 1px solid var(--line); background: transparent; color: var(--ink-soft); padding: 10px 16px; border-radius: 999px; font-size: .84rem; font-weight: 700; }
.menu-tab.active, .menu-tab:hover { background: var(--ink); color: white; border-color: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.menu-card { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 17px 40px rgba(7,26,41,.07); }
.menu-card.hidden { display: none; }
.menu-card-top { display: flex; justify-content: space-between; gap: 20px; }
.menu-card h3 { margin: 0; font-family: 'DM Sans', sans-serif; font-size: 1.03rem; letter-spacing: 0; }
.menu-card .cost { color: var(--gold); font-weight: 700; white-space: nowrap; }
.menu-card p { margin: 10px 0 0; color: var(--ink-soft); font-size: .88rem; }
.menu-card .diet { display: inline-block; margin-top: 14px; padding: 4px 9px; border-radius: 999px; background: var(--mist); color: var(--forest); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.menu-note { margin-top: 38px; padding: 24px; border-left: 3px solid var(--gold); background: var(--cream); color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-panel { padding: 38px; border-radius: 26px; background: var(--navy); color: white; position: sticky; top: 125px; overflow: hidden; }
.contact-panel::after { content: ''; position: absolute; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -160px; bottom: -190px; box-shadow: inset 0 0 0 55px rgba(255,255,255,.02), inset 0 0 0 110px rgba(255,255,255,.02); }
.contact-panel p { color: rgba(255,255,255,.67); }
.contact-facts { display: grid; gap: 22px; margin-top: 34px; }
.contact-fact span { display: block; color: #d7ad73; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-fact strong { display: block; margin-top: 4px; font-size: 1.02rem; }
.form-card { padding: 40px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: 0 20px 60px rgba(7,26,41,.06); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); padding: 13px 14px; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(178,135,78,.11); }
.form-note { margin-top: 16px; color: var(--ink-soft); font-size: .78rem; }
.form-success { display: none; margin-top: 18px; padding: 14px; border-radius: 10px; background: #edf5ef; color: #25593b; }

.site-footer { margin-top: 95px; padding: 72px 0 28px; background: var(--navy); color: white; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(180px,.6fr); gap: 60px; }
.footer-brand { max-width: 460px; }
.footer-brand .brand-copy strong { color: white; }
.footer-brand p { margin-top: 24px; color: rgba(255,255,255,.6); }
.footer-col h3 { margin-bottom: 20px; font-family: 'DM Sans',sans-serif; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: #d7ad73; }
.footer-col a { display: block; margin: 9px 0; color: rgba(255,255,255,.71); }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-top: 65px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .77rem; }
.footer-bottom a { color: rgba(255,255,255,.7); }

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

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 0; background: var(--paper); padding: 130px 32px 50px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; transform: translateX(100%); transition: transform .3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-family: 'Fraunces',Georgia,serif; font-size: 2.2rem; }
  .nav-links .btn { font-family: 'DM Sans',sans-serif; font-size: .92rem; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { min-height: 460px; }
  .intro-grid, .menu-preview, .story-grid, .split-section, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .feature-stack { grid-template-columns: repeat(3,1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 300px; }
  .sticky-copy, .contact-panel { position: static; }
  .quote-card { grid-template-columns: 1fr; padding: 50px; }
  .quote-card .actions { justify-content: flex-start; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .package-row { grid-template-columns: 130px 1fr; }
  .package-row .package-price { grid-column: 2; text-align: left; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .nav-wrap { height: 76px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { font-size: .53rem; }
  .hero { padding: 125px 0 80px; }
  .hero-copy h1 { font-size: clamp(3.35rem, 17vw, 5rem); }
  .hero-mark { min-height: 370px; }
  .logo-orbit { width: min(290px,74vw); }
  .logo-orbit::before { inset: -24px; }
  .logo-orbit::after { inset: -48px; }
  .orbit-note { width: 160px; right: 0; bottom: 0; padding: 15px; }
  .hero-meta { gap: 13px; flex-direction: column; }
  .logo-strip-inner { align-items: flex-start; flex-direction: column; gap: 9px; padding-left: 14px; }
  .logo-strip-inner span::before { margin-right: 12px; }
  .logo-strip-inner span:first-child::before { display: inline; }
  .intro-grid { gap: 40px; }
  .feature-stack { grid-template-columns: 1fr; }
  .experience-head { align-items: flex-start; flex-direction: column; }
  .experience-card { padding: 26px; }
  .quote-card { padding: 35px 25px; border-radius: 25px; }
  .page-hero { padding: 140px 0 80px; }
  .page-hero h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .story-visual { min-height: 470px; }
  .values-grid, .menu-grid, .form-grid { grid-template-columns: 1fr; }
  .package-row { grid-template-columns: 1fr; gap: 14px; }
  .package-row .package-price { grid-column: 1; }
  .form-card { padding: 26px 20px; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}


/* --- Riverstone editorial refresh --- */
.hero {
  min-height: 900px;
  background:
    radial-gradient(circle at 20% 12%, rgba(222, 192, 154, .18), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(114, 213, 188, .18), transparent 20%),
    linear-gradient(145deg, #f8f4ec 0%, #edf2ed 52%, #dde9e5 100%);
}
.hero-grid { grid-template-columns: .95fr 1.05fr; gap: 60px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 560px; }
.hero-photo-card {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(7,26,41,.16);
  background: #d6d6d6 center / cover no-repeat;
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-note {
  position: absolute; left: 24px; bottom: 24px; max-width: 300px;
  padding: 18px 20px; border-radius: 20px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 40px rgba(7,26,41,.10);
}
.hero-note strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; line-height: 1.05; }
.hero-note span { display: block; margin-top: 7px; font-size: .84rem; color: var(--ink-soft); }
.hero-stamp {
  position: absolute; right: 24px; top: 24px; width: 84px; height: 84px;
  border-radius: 50%; background: rgba(255,255,255,.88); padding: 8px; box-shadow: 0 14px 30px rgba(7,26,41,.12);
}
.hero-stamp img { width: 100%; height: 100%; object-fit: contain; }
.logo-strip { padding: 8px 0 44px; }
.logo-strip-inner { font-size: .74rem; }
.editorial-gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; margin-top: 42px; }
.editorial-card, .gallery-card {
  position: relative; overflow: hidden; border-radius: 28px; background: #e9e9e9; min-height: 280px;
  box-shadow: 0 18px 45px rgba(7,26,41,.08);
}
.editorial-card img, .gallery-card img, .story-photo, .media-photo { width: 100%; height: 100%; object-fit: cover; }
.editorial-card.tall, .gallery-card.tall { min-height: 420px; }
.editorial-copy {
  position: absolute; left: 24px; bottom: 24px; right: 24px; color: white;
  text-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.editorial-copy strong { display:block; font-family:'Fraunces', Georgia, serif; font-size: 2rem; line-height: 1.04; }
.editorial-copy span { display:block; margin-top: 8px; max-width: 360px; font-size: .92rem; color: rgba(255,255,255,.88); }
.story-visual { min-height: 620px; background: #ddd; }
.story-visual::before, .story-visual::after { display: none; }
.story-visual .story-photo { position: absolute; inset: 0; }
.story-visual .logo-inset { position: absolute; width: 138px; right: 28px; top: 28px; filter: drop-shadow(0 18px 28px rgba(0,0,0,.2)); }
.story-visual .visual-copy {
  left: 32px; right: 32px; bottom: 30px; max-width: 360px; padding: 20px 22px;
  border-radius: 22px; background: rgba(8, 27, 42, .50); backdrop-filter: blur(8px);
}
.story-visual .visual-copy strong { font-size: 2.1rem; }
.media-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.media-card { position: relative; min-height: 520px; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); background: #ddd; }
.media-card img { width:100%; height:100%; object-fit: cover; }
.media-card .media-note {
  position:absolute; left:24px; bottom:24px; max-width: 280px; padding:18px 20px; border-radius:18px;
  background: rgba(255,255,255,.82); color: var(--ink); backdrop-filter: blur(12px);
}
.media-card .media-note strong { display:block; font-family:'Fraunces', Georgia, serif; font-size: 1.2rem; }
.media-card .media-note span { display:block; margin-top:5px; color: var(--ink-soft); font-size:.82rem; }
.page-gallery { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.page-gallery .gallery-card { min-height: 320px; }
.menu-preview .menu-visual { min-height: 620px; position: relative; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); background: #ddd; margin-bottom: 28px; }
.menu-preview .menu-visual img { width:100%; height:100%; object-fit:cover; }
.menu-preview .menu-visual .visual-pill {
  position:absolute; left:22px; top:22px; background: rgba(255,255,255,.88); border-radius: 999px;
  padding: 9px 14px; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
}
.contact-panel.with-photo { padding: 0; overflow: hidden; }
.contact-panel.with-photo .contact-photo-wrap { height: 250px; overflow: hidden; }
.contact-panel.with-photo .contact-photo-wrap img { width:100%; height:100%; object-fit: cover; }
.contact-panel.with-photo .contact-content { padding: 34px 34px 38px; }
@media (max-width: 980px) {
  .hero-grid, .media-split, .editorial-gallery, .page-gallery { grid-template-columns: 1fr; }
  .hero-photo-card { min-height: 500px; }
}
@media (max-width: 680px) {
  .hero-photo-card, .media-card, .story-visual { min-height: 420px; }
  .hero-note, .media-card .media-note, .story-visual .visual-copy { left: 16px; right: 16px; bottom: 16px; }
  .hero-stamp { width: 72px; height:72px; right:16px; top:16px; }
}

/* --- Image fill fixes: prevent empty grey areas in visual cards --- */
.hero-photo-card,
.editorial-card,
.gallery-card,
.story-visual,
.media-card,
.menu-preview .menu-visual,
.contact-photo-wrap {
  position: relative;
  overflow: hidden;
}

.hero-photo-card > img:first-child,
.editorial-card > img,
.gallery-card > img,
.story-visual > img.story-photo,
.media-card > img,
.menu-preview .menu-visual > img,
.contact-photo-wrap > img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Keep overlay logo above the full-bleed image. */
.story-visual > img.logo-inset {
  position: absolute;
  z-index: 3;
  width: 138px;
  height: auto;
  right: 28px;
  top: 28px;
  left: auto;
  bottom: auto;
  object-fit: contain;
}

.hero-stamp,
.hero-note,
.editorial-copy,
.story-visual .visual-copy,
.media-card .media-note,
.menu-preview .menu-visual .visual-pill {
  z-index: 4;
}

/* Give every visual card a real height so percentage sizing is deterministic. */
.hero-photo-card { height: 640px; min-height: 0; }
.editorial-card { height: 360px; min-height: 0; }
.editorial-card.tall { height: 520px; min-height: 0; }
.story-visual { height: 620px; min-height: 0; }
.media-card { height: 520px; min-height: 0; }
.page-gallery .gallery-card { height: 420px; min-height: 0; }
.page-gallery .gallery-card.tall { height: 520px; min-height: 0; }
.menu-preview .menu-visual { height: 620px; min-height: 0; }
.contact-photo-wrap { height: 250px; }

@media (max-width: 980px) {
  .hero-photo-card { height: 520px; }
  .editorial-card,
  .editorial-card.tall,
  .story-visual,
  .media-card,
  .page-gallery .gallery-card,
  .page-gallery .gallery-card.tall,
  .menu-preview .menu-visual { height: 500px; }
}

@media (max-width: 680px) {
  .hero-photo-card,
  .editorial-card,
  .editorial-card.tall,
  .story-visual,
  .media-card,
  .page-gallery .gallery-card,
  .page-gallery .gallery-card.tall,
  .menu-preview .menu-visual { height: 420px; }

  .story-visual > img.logo-inset {
    width: 94px;
    right: 16px;
    top: 16px;
  }
}


/* Hero image reliability fix */
.hero-mark { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.hero-photo-card { display: block; background-image: url('../images/home-hero-1.jpg'); background-position: center; background-size: cover; background-repeat: no-repeat; }
.hero-photo-card > img:first-child { display: block !important; opacity: 1 !important; visibility: visible !important; }


/* --- Hero visibility hard fix --- */
.hero-mark {
  width: 100%;
  min-width: 0;
  display: block;
}
.hero-photo-card {
  width: 100% !important;
  max-width: none;
  height: 640px;
  min-height: 640px;
  display: block !important;
  position: relative;
}
.hero-photo-card > img:first-child {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block !important;
}
@media (max-width: 980px) {
  .hero-photo-card { height: 520px; min-height: 520px; }
}
@media (max-width: 680px) {
  .hero-photo-card { height: 420px; min-height: 420px; }
}


/* --- Taste section layout correction --- */
.taste-section { overflow: hidden; }
.taste-section .menu-preview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px 70px;
  align-items: center;
}
.taste-copy {
  position: static;
  min-width: 0;
}
.taste-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.1rem);
}
.taste-copy .lead { max-width: 600px; }
.taste-visual {
  position: relative;
  width: 100%;
  height: 540px;
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--mist);
  box-shadow: var(--shadow);
}
.taste-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.taste-visual .visual-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.taste-section .menu-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.taste-section .menu-item { min-width: 0; }
@media (max-width: 980px) {
  .taste-section .menu-preview { grid-template-columns: 1fr; gap: 38px; }
  .taste-visual { height: 500px; }
  .taste-section .menu-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .taste-copy h2 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .taste-visual { height: 390px; border-radius: 24px; }
  .taste-section .menu-list { grid-template-columns: 1fr; column-gap: 0; }
}


/* --- Founder profile --- */
.founder-section {
  background: linear-gradient(145deg, #f7f3ea 0%, #eef2ed 100%);
  position: relative;
  overflow: hidden;
}
.founder-section::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -230px;
  border-radius: 50%;
  border: 1px solid rgba(11,32,48,.08);
  box-shadow: inset 0 0 0 70px rgba(255,255,255,.14), inset 0 0 0 140px rgba(255,255,255,.10);
  pointer-events: none;
}
.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 78px;
  align-items: center;
}
.founder-portrait {
  position: relative;
  min-height: 650px;
  border-radius: 32px;
  overflow: hidden;
  background: #dfe6e1;
  box-shadow: var(--shadow);
}
.founder-portrait > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-photo-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(7,26,41,.78);
  color: white;
  backdrop-filter: blur(12px);
}
.founder-photo-label span {
  display: block;
  margin-bottom: 5px;
  color: #d7ad73;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.founder-photo-label strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 500;
}
.founder-copy { max-width: 760px; }
.founder-copy h2 { margin-bottom: 28px; }
.founder-copy p { color: var(--ink-soft); }
.founder-copy .founder-lead {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .founder-grid { grid-template-columns: 1fr; gap: 50px; }
  .founder-portrait { min-height: 620px; max-width: 620px; }
}
@media (max-width: 680px) {
  .founder-grid { gap: 36px; }
  .founder-portrait { min-height: 520px; border-radius: 24px; }
  .founder-photo-label { left: 16px; right: 16px; bottom: 16px; }
  .founder-copy h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
}


/* --- Mobile navigation hard fix --- */
@media (max-width: 980px) {
  /* backdrop-filter on the scrolled header can make fixed descendants use the
     header as their containing block. Expand the header while the menu is open
     and remove that filter so the menu always covers the full viewport. */
  body.menu-open .site-header {
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    background: var(--paper);
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
  }

  body.menu-open .nav-wrap {
    width: min(calc(100% - 40px), var(--max));
    height: 88px;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    z-index: 101;
    top: 88px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - 88px);
    min-height: calc(100vh - 88px);
    padding: 42px 40px 44px;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s ease, opacity .22s ease, visibility .3s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 0 18px;
    border-bottom: 1px solid var(--line);
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.15rem, 8vw, 3.15rem);
    line-height: 1;
    letter-spacing: -.03em;
  }

  .nav-links a:not(.btn)::after { display: none; }

  .nav-links .btn {
    width: fit-content;
    min-height: 54px;
    margin-top: 28px;
    padding: 0 24px;
    border-bottom: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    letter-spacing: 0;
  }

  .nav-toggle { z-index: 103; flex: 0 0 auto; }
  .brand { z-index: 103; }
}

@media (max-width: 680px) {
  body.menu-open .nav-wrap { width: min(calc(100% - 28px), var(--max)); height: 76px; }
  .nav-links {
    top: 76px;
    height: calc(100dvh - 76px);
    min-height: calc(100vh - 76px);
    padding: 30px 28px 36px;
  }
  .nav-links a { padding: 14px 0 16px; font-size: clamp(2.05rem, 10.5vw, 2.85rem); }
  .nav-links .btn { margin-top: 24px; }
}


/* Custom menu callout */
.custom-menu-section { padding-top: 22px; padding-bottom: 22px; }
.custom-menu-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 40px 44px;
  border-radius: 28px;
  background: var(--navy);
  color: white;
  box-shadow: 0 22px 55px rgba(7,26,41,.12);
}
.custom-menu-callout .eyebrow { color: #d7ad73; margin-bottom: 10px; }
.custom-menu-callout h2 { margin-bottom: 12px; font-size: clamp(2.1rem, 4vw, 3.6rem); }
.custom-menu-callout p { margin: 0; max-width: 760px; color: rgba(255,255,255,.72); font-size: 1.02rem; }
.custom-menu-callout .btn { white-space: nowrap; }
@media (max-width: 760px) {
  .custom-menu-callout { grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
  .custom-menu-callout .btn { justify-self: start; }
}


/* --- Riverstone team profiles --- */
.team-section { padding-top: 110px; padding-bottom: 118px; }
.team-intro {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-bottom: 72px;
}
.team-intro h2 { max-width: 760px; margin-bottom: 20px; }
.team-intro .lead { max-width: 760px; margin-bottom: 0; }
.team-profile + .team-profile {
  margin-top: 110px;
  padding-top: 110px;
  border-top: 1px solid rgba(11,32,48,.11);
}
.founder-grid-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
}
.team-profile-hudson .founder-portrait > img {
  object-position: center 28%;
}
@media (max-width: 980px) {
  .team-section { padding-top: 86px; padding-bottom: 92px; }
  .team-intro { margin-bottom: 54px; }
  .founder-grid-reverse { grid-template-columns: 1fr; }
  .team-profile + .team-profile { margin-top: 76px; padding-top: 76px; }
  .team-profile-hudson .founder-copy { order: 2; }
  .team-profile-hudson .founder-portrait { order: 1; }
}
@media (max-width: 680px) {
  .team-section { padding-top: 68px; padding-bottom: 74px; }
  .team-intro { margin-bottom: 42px; }
  .team-profile + .team-profile { margin-top: 58px; padding-top: 58px; }
  .team-intro h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
}
