:root {
  --ink: #11100f;
  --coal: #111412;
  --wine: #176448;
  --wine-deep: #154b39;
  --gold: #c7a46a;
  --gold-pale: #e5cf9f;
  --ivory: #f5efe3;
  --paper: #fffaf1;
  --muted: #766f67;
  --line: rgba(199, 164, 106, 0.32);
  --shadow: 0 24px 70px rgba(17, 10, 8, 0.17);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 104px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, .button { min-height: 48px; }

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  transform: translateY(-120%);
  padding: .65rem 1rem;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(229, 207, 159, .2);
  background: rgba(8, 10, 9, .97);
  color: var(--ivory);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(1180px, calc(100% - 2rem));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-plaque { width: clamp(245px, 24vw, 330px); }
.brand-plaque img { width: 100%; height: auto; filter: drop-shadow(0 7px 12px rgba(0, 0, 0, .45)); }
.brand-mobile { display: none; align-items: center; gap: .7rem; }
.brand-mobile img { width: 40px; height: 40px; object-fit: contain; }
.brand-mobile-copy { display: grid; color: var(--ivory); font-family: var(--serif); line-height: 1.05; text-transform: uppercase; }
.brand-mobile-copy small { font-size: .62rem; letter-spacing: .32em; }
.brand-mobile-copy strong { font-size: .96rem; font-weight: 500; letter-spacing: .12em; }
.site-nav { display: flex; align-items: center; gap: 1rem; }
.site-nav > a {
  position: relative;
  padding: .35rem 0;
  color: #e8dfd3;
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .035em;
  text-decoration: none;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform .2s ease;
}
.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: #17130e;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-pale); }
.button-dark { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.button-dark:hover { background: var(--wine-deep); color: white; }
.button-ghost { background: transparent; color: var(--gold-pale); }
.button-ghost:hover { background: rgba(199,164,106,.1); color: white; }
.text-link {
  color: var(--wine);
  font-weight: 800;
  text-underline-offset: .25em;
}
.section-dark .text-link,
.section-wine .text-link { color: var(--gold-pale); }

.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(790px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-dark { color: var(--ivory); background: var(--coal); }
.section-wine { color: var(--ivory); background: var(--wine-deep); }
.section-paper { background: var(--paper); }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .section-wine .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--gold-pale); }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 7vw, 6.25rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.15rem, 4.5vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
.lede { max-width: 700px; margin: 1.35rem 0 0; font-size: clamp(1.08rem, 2vw, 1.3rem); color: #544f49; }
.section-dark .lede, .section-wine .lede, .page-hero .lede { color: #d8cfc4; }
.rule { width: 64px; height: 1px; margin: 1.5rem 0; background: var(--gold); }

.hero {
  position: relative;
  min-height: calc(100svh - 104px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #120f0d url("hero-dinner.png") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,9,8,.97) 0%, rgba(10,9,8,.82) 36%, rgba(10,9,8,.24) 66%, rgba(10,9,8,.14) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(10,9,8,.72));
}
.hero-content { position: relative; z-index: 1; max-width: 770px; padding: 5rem 0; }
.hero h1,
.hero h1 span { font-family: var(--serif); font-style: normal; font-weight: 500; }
.hero h1 span { display: inline; color: inherit; }
.hero-copy { max-width: 610px; margin: 1.4rem 0 0; color: #e6ddd2; font-size: clamp(1.06rem, 2vw, 1.32rem); }
.hero-price {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  margin: 1.7rem 0;
  color: var(--gold-pale);
}
.hero-price strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.4rem;
  margin-top: 2rem;
  color: #d8cfc3;
  font-size: .86rem;
}
.hero-proof span::before { content: "◆"; margin-right: .6rem; color: var(--gold); font-size: .6rem; }

.journey-bar {
  padding: 1.5rem 0 1.7rem;
  border-block: 1px solid rgba(229,207,159,.25);
  background: var(--wine-deep);
  color: var(--ivory);
}
.journey-kicker { margin: 0 0 .8rem; color: var(--gold-pale); font-size: .76rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.journey-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(229,207,159,.3); border: 1px solid rgba(229,207,159,.3); }
.journey-links a { min-height: 76px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .7rem; padding: 1rem; background: rgba(8,10,9,.28); color: white; text-decoration: none; transition: background .2s ease; }
.journey-links a:hover, .journey-links a:focus-visible { background: rgba(199,164,106,.16); }
.journey-links strong { color: var(--gold-pale); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.journey-links span { font-size: .9rem; font-weight: 750; line-height: 1.3; }

.trust-bar { background: #0f0e0d; color: var(--ivory); border-top: 1px solid rgba(199,164,106,.28); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 1.4rem 1.6rem;
  border-right: 1px solid rgba(229,207,159,.16);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong { color: var(--gold-pale); font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.1; }
.trust-item span { margin-top: .35rem; color: #bdb2a7; font-size: .78rem; font-weight: 750; letter-spacing: .065em; text-transform: uppercase; }

.guarantee-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4.25rem);
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #18513e, #171c19 72%);
  color: var(--ivory);
  box-shadow: var(--shadow);
}
.guarantee-panel .eyebrow,
.guarantee-panel h3 { color: var(--gold-pale); }
.guarantee-panel::after { content: "✓"; position: absolute; right: -1rem; bottom: -4.5rem; color: rgba(199,164,106,.07); font: 13rem/1 var(--serif); }
.guarantee-panel > * { position: relative; z-index: 1; }
.guarantee-points { display: grid; gap: .85rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.guarantee-points li { position: relative; padding: .9rem 0 .9rem 2rem; border-top: 1px solid rgba(229,207,159,.18); color: #e0d7ce; }
.guarantee-points li::before { content: "◆"; position: absolute; margin-left: -1.8rem; color: var(--gold); font-size: .62rem; }

.credentials-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.big-stat { margin: 0; color: var(--wine); font: clamp(3.6rem, 8vw, 7rem)/.95 var(--serif); letter-spacing: -.05em; }
.big-stat-label { margin: .7rem 0 2rem; color: var(--muted); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.venue-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.6rem; }
.venue-list span { padding: .55rem .8rem; border: 1px solid #d5c4a8; background: rgba(255,255,255,.55); font-size: .83rem; font-weight: 750; }

.transparency-note { margin-top: 1.4rem; padding: 1.2rem 1.35rem; border-left: 3px solid var(--gold); background: rgba(199,164,106,.09); }
.transparency-note strong { color: var(--wine); }
.section-dark .transparency-note strong,
.section-wine .transparency-note strong,
.form-intro .transparency-note strong { color: var(--gold-pale); }

.running-order { counter-reset: moment; margin: 2.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid #d9c9ad; }
.running-order li { counter-increment: moment; display: grid; grid-template-columns: 105px 1fr; gap: 1.2rem; padding: 1.15rem 0; border-bottom: 1px solid #d9c9ad; }
.running-order time { color: var(--wine); font-family: var(--serif); font-size: 1.22rem; }
.running-order strong { display: block; }
.running-order span { color: var(--muted); }

.assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.5rem; background: rgba(199,164,106,.3); border: 1px solid rgba(199,164,106,.3); }
.assurance { min-height: 230px; padding: 2rem; background: #211d1a; }
.assurance .symbol { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 1.5rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-pale); font-family: var(--serif); }
.assurance p { color: #d2c9bf; }

.statement-band { background: var(--wine); color: white; }
.statement-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.statement {
  min-height: 220px;
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.16);
}
.statement:last-child { border-right: 0; }
.statement-number { color: var(--gold-pale); font-family: var(--serif); font-size: 1rem; }
.statement h3 { margin: .65rem 0; color: white; }
.statement p { margin: 0; color: #eadbdd; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.quote-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: #211d1a;
  box-shadow: var(--shadow);
}
.quote-card::before { content: "“"; position: absolute; top: .2rem; left: 1rem; color: rgba(199,164,106,.22); font: 7rem/1 var(--serif); }
.quote-card p { position: relative; margin: 0; color: var(--ivory); font: clamp(1.55rem, 3.5vw, 2.55rem)/1.2 var(--serif); }

.business-case { padding: clamp(2rem, 5vw, 3.75rem); border: 1px solid #d9c8aa; background: white; box-shadow: var(--shadow); }
.case-row { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid #e8ded0; }
.case-row:last-of-type { border: 0; }
.case-row strong { color: var(--wine); }
.case-highlight { margin: 1.2rem 0 0; padding: 1rem; background: var(--ivory); text-align: center; font-weight: 800; }
.fine-print { color: var(--muted); font-size: .84rem; }

.decision-panel { padding: clamp(2rem, 5vw, 3.2rem); border-top: 4px solid var(--wine); background: white; box-shadow: var(--shadow); }
.decision-panel dl { margin: 0 0 1.6rem; }
.decision-panel dt { margin-top: 1rem; color: var(--muted); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.decision-panel dd { margin: .15rem 0 0; color: var(--wine-deep); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }

.responsibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 2.5rem; border: 1px solid #d7c6aa; background: #d7c6aa; box-shadow: var(--shadow); }
.responsibility-card { padding: clamp(2rem, 4vw, 3.5rem); background: white; }
.responsibility-card .kicker { margin: 0 0 .65rem; color: var(--wine); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.responsibility-card-green { background: var(--wine-deep); color: var(--ivory); }
.responsibility-card-green .kicker { color: var(--gold-pale); }
.responsibility-card-green .check-list li { color: var(--ivory); }
.responsibility-card-green .check-list li::before { color: var(--gold); }
.service-note { margin-top: 1.25rem; padding: 1.2rem 1.35rem; border-left: 4px solid var(--gold); background: #eee4d4; }

.exclusive-summary { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.compact-block { margin-top: 1.7rem; padding-top: 1.5rem; border-top: 1px solid #d9c9ad; }
.compact-block h3 { margin-bottom: .55rem; }
.compact-block p { margin-bottom: 0; }
.atmosphere-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.atmosphere-list span { padding: .5rem .75rem; border: 1px solid #d5c4a8; background: white; font-size: .9rem; font-weight: 750; }
.exclusive-facts { position: sticky; top: 128px; }
.compact-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 2.5rem; border: 1px solid rgba(229,207,159,.3); background: rgba(229,207,159,.3); }
.compact-process article { min-height: 205px; padding: 1.5rem; background: rgba(8,10,9,.24); }
.compact-process strong { color: var(--gold-pale); font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.compact-process h3 { margin-top: .8rem; color: white; font-size: 1.25rem; }
.compact-process p { margin-bottom: 0; color: #e4dbd0; font-size: .92rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  border: 1px solid #ddcfb7;
  background: rgba(255,255,255,.62);
  box-shadow: 0 15px 35px rgba(50,35,25,.06);
}
.card .kicker { margin: 0 0 .65rem; color: var(--wine); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.card p { color: #5f574f; }
.card .text-link { margin-top: auto; }
.card-dark { border-color: rgba(199,164,106,.28); background: #25211e; }
.card-dark p { color: #d5cdc3; }
.card-dark .kicker { color: var(--gold-pale); }
.mystery-card { position: relative; overflow: hidden; min-height: 360px; justify-content: end; color: white; background: #1a1715; }
.mystery-card::before { content: ""; position: absolute; inset: 0; opacity: .52; background: radial-gradient(circle at 80% 15%, rgba(199,164,106,.3), transparent 28%), linear-gradient(145deg, transparent 20%, rgba(20,82,61,.62)); }
.mystery-card > * { position: relative; }
.mystery-card p { color: #dfd6cc; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 3rem; background: var(--line); border: 1px solid var(--line); }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.steps-6 { grid-template-columns: repeat(3, 1fr); }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
.step { counter-increment: step; min-height: 260px; padding: 2rem; background: var(--paper); color: var(--ink); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 2.8rem; color: var(--wine); font-family: var(--serif); font-size: 1.15rem; }
.step p { color: #635c54; }

.cta-band { padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; background: var(--wine-deep); color: white; }
.cta-band p { max-width: 620px; margin: 1rem auto 1.8rem; color: #decfd0; font-size: 1.1rem; }

.page-hero { padding: clamp(5rem, 10vw, 9rem) 0; color: white; background: radial-gradient(circle at 82% 20%, rgba(199,164,106,.19), transparent 24%), linear-gradient(135deg, #111412, #18513e); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 5.4rem); }
.experience-hero {
  position: relative;
  min-height: calc(100svh - 104px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--coal);
  background-image: url("pete-robin-experience.webp");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.experience-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,10,9,.04) 0%, rgba(8,10,9,.12) 36%, rgba(8,10,9,.84) 64%, rgba(8,10,9,.98) 100%); }
.experience-hero .container { position: relative; z-index: 1; display: flex; justify-content: flex-end; }
.experience-hero-copy { width: min(560px, 100%); padding: 4rem 0; }
.experience-hero h1 { max-width: none; font-size: clamp(2.65rem, 5vw, 4.8rem); }
.breadcrumbs { margin-bottom: 2rem; color: #c9bdb1; font-size: .84rem; }
.breadcrumbs a { text-underline-offset: .2em; }

.detail-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.side-panel { padding: 1.7rem; border-top: 3px solid var(--wine); background: white; box-shadow: var(--shadow); }
.section-dark .side-panel,
.section-wine .side-panel { color: var(--ink); }
.section-dark .side-panel .eyebrow,
.section-wine .side-panel .eyebrow,
.side-panel .eyebrow { color: var(--wine); }
.section-dark .side-panel p,
.section-wine .side-panel p { color: var(--ink); }
.section-dark .side-panel dt,
.section-wine .side-panel dt { color: var(--wine); }
.section-dark .side-panel dd,
.section-wine .side-panel dd { color: var(--ink); }
.side-panel dl { margin: 0; }
.side-panel dt { margin-top: 1rem; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.side-panel dd { margin: .2rem 0 0; font-weight: 700; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: .85rem 0; padding-left: 1.75rem; }
.check-list li::before { content: "◆"; position: absolute; left: 0; top: .2rem; color: var(--wine); font-size: .65rem; }
.section-dark .check-list li::before,
.section-wine .check-list li::before { color: var(--gold); }
.section-wine .check-list li { color: var(--ivory); }

.price-lockup { padding: 2.2rem; border: 1px solid var(--gold); text-align: center; }
.price-lockup .amount { display: block; color: var(--gold-pale); font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; }
.price-lockup .fine-print { color: #c9bfb4; }

.faq-list { margin-top: 2rem; border-top: 1px solid #d6c7ae; }
.faq-item { border-bottom: 1px solid #d6c7ae; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: var(--serif);
  font-size: 1.35rem;
  cursor: pointer;
}
.faq-question::after { content: "+"; color: var(--wine); font-family: var(--sans); }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; max-width: 760px; padding: 0 2.5rem 1.5rem 0; color: #5e574f; }
.faq-question[aria-expanded="true"] + .faq-answer { display: block; }

.form-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-intro { padding: clamp(2rem, 5vw, 3.5rem); background: var(--coal); color: white; }
.form-intro p { color: #d4ccc2; }
.contact-line { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(199,164,106,.25); }
.contact-line a { color: var(--gold-pale); }
.booking-form { padding: clamp(2rem, 5vw, 3.5rem); background: white; }
.form-direction { margin: 0 0 1.4rem; color: var(--wine-deep); font-family: var(--serif); font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field-hint { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
label { font-size: .83rem; font-weight: 800; letter-spacing: .035em; }
input, select, textarea {
  width: 100%;
  border: 1px solid #bfb3a3;
  border-radius: 2px;
  background: #fffcf7;
  color: var(--ink);
  padding: .78rem .9rem;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(199,164,106,.32); border-color: var(--wine); }
textarea { min-height: 125px; resize: vertical; }
.checks { display: grid; gap: .8rem; margin: 1.5rem 0; }
.check-control { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; font-weight: 500; }
.check-control input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--wine); }
.form-status { margin-top: 1rem; padding: 1rem; border-left: 3px solid var(--wine); background: var(--ivory); }
.hidden { display: none !important; }

.legal h2 { margin-top: 2.5rem; font-size: 2rem; }
.legal h3 { margin-top: 2rem; font-size: 1.35rem; }
.legal p, .legal li { color: #514b45; }

.site-footer { padding: 3.5rem 0 1.5rem; background: #0f0e0d; color: #d7cec2; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; }
.footer-title { color: white; font-family: var(--serif); font-size: 1.4rem; }
.footer-nav { display: grid; gap: .55rem; }
.footer-nav a { color: #d7cec2; text-decoration: none; }
.footer-nav a:hover { color: var(--gold-pale); }
.footer-small { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); color: #948b81; font-size: .8rem; }

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

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

@media (max-width: 900px) {
  .nav-shell { min-height: 76px; }
  .hero { min-height: calc(100svh - 76px); }
  .brand-plaque { display: none; }
  .brand-mobile { display: inline-flex; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    align-items: stretch;
    padding: 1.2rem 1rem 1.5rem;
    background: #11100f;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
  }
  .site-nav.open { display: grid; }
  .site-nav > a { padding: .85rem; font-size: 1rem; }
  .site-nav .button { color: #17130e; }
  .split, .detail-grid, .form-shell { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(229,207,159,.16); }
  .statement-grid, .cards, .responsibility-grid, .exclusive-summary { grid-template-columns: 1fr; }
  .exclusive-facts { position: static; }
  .compact-process { grid-template-columns: 1fr 1fr; }
  .statement { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .statement:last-child { border-bottom: 0; }
  .steps, .steps-3, .steps-5, .steps-6 { grid-template-columns: 1fr 1fr; }
  .journey-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .assurance-grid { grid-template-columns: 1fr; }
  .experience-hero { min-height: calc(100svh - 76px); background-position: 38% center; }
  .experience-hero::before { background: rgba(8,10,9,.7); }
  .experience-hero .container { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .nav-shell { min-height: 68px; }
  .brand-mobile img { width: 36px; height: 36px; }
  .brand-mobile-copy small { font-size: .55rem; }
  .brand-mobile-copy strong { font-size: .82rem; letter-spacing: .08em; }
  .site-nav { inset-block-start: 68px; }
  .hero { min-height: calc(100svh - 68px); background-position: 61% center; }
  .hero::before { background: linear-gradient(90deg, rgba(10,9,8,.96), rgba(10,9,8,.78)); }
  .hero-content { padding: 4rem 0; }
  .hero-proof { display: grid; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 90px; border-right: 0; border-bottom: 1px solid rgba(229,207,159,.16); }
  .trust-item:last-child { border-bottom: 0; }
  .running-order li { grid-template-columns: 82px 1fr; gap: .75rem; }
  .steps, .steps-3, .steps-5, .steps-6, .form-grid, .footer-grid, .journey-links, .compact-process { grid-template-columns: 1fr; }
  .compact-process article { min-height: auto; }
  .step { min-height: auto; }
  .step::before { margin-bottom: 1.2rem; }
  .footer-grid { gap: 2rem; }
  .experience-hero { min-height: calc(100svh - 68px); background-position: 38% center; background-size: auto 100%; }
  .experience-hero::before { background: rgba(8,10,9,.72); }
  .experience-hero .container { justify-content: flex-start; }
}
