/* ==========================================================================
   Prestige Pour & Events Co.
   Design system — "Midnight & Brass"
   Palette: deep navy ground, brushed brass accent, champagne text
   Type: Cormorant Garamond (display) / Jost (interface)
   ========================================================================== */

:root {
  /* Ground */
  --ink:        #060B14;
  --navy:       #0B1626;
  --navy-2:     #10203A;
  --navy-3:     #16294A;
  --line:       rgba(200, 169, 106, .18);
  --line-soft:  rgba(239, 228, 206, .10);

  /* Brass */
  --brass:      #C8A96A;
  --brass-lt:   #E7D4A8;
  --brass-dk:   #9C7F45;

  /* Text */
  --cream:      #F6F1E7;
  --champagne:  #EFE4CE;
  --muted:      #93A2BA;

  /* Type */
  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:    'Jost', 'Futura', 'Century Gothic', sans-serif;

  /* Rhythm */
  --gut:     clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 8rem);
  --maxw:    1240px;
  --radius:  2px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t:    .45s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  /* The mobile nav and quote drawer park off-canvas to the right. `clip`
     stops them extending the scroll area — and unlike `hidden`, it does not
     break the sticky header. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.75;
  color: var(--champagne);
  background: var(--navy);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--brass); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* Film grain overlay — sits above the page, ignores pointer events */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--cream);
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }

em, .italic { font-style: italic; color: var(--brass-lt); }

p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--brass);
  opacity: .7;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--brass);
  opacity: .7;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 62ch;
}

.muted { color: var(--muted); }
.brass { color: var(--brass); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap-narrow { max-width: 860px; }

section { position: relative; }
.section { padding-block: var(--section); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.25rem; }
.section-head.centered p { margin-inline: auto; }

.tint      { background: var(--navy-2); }
.tint-deep { background: var(--ink); }

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: var(--brass);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2.1rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: color var(--t), border-color var(--t), transform .25s var(--ease);
}
/* brass wipe */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--brass-lt), var(--brass) 55%, var(--brass-dk));
  transform: translateY(101%);
  transition: transform var(--t);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); border-color: var(--brass-lt); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  --btn-fg: var(--ink);
  background: linear-gradient(120deg, var(--brass-lt), var(--brass) 55%, var(--brass-dk));
  border-color: transparent;
}
.btn-primary::before { background: var(--cream); }
.btn-primary:hover { color: var(--ink); border-color: transparent; }

.btn-ghost { --btn-fg: var(--champagne); --btn-bd: var(--line); }
.btn-ghost:hover { border-color: var(--brass); }

.btn-sm { padding: .7rem 1.4rem; font-size: .7rem; }
.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Text link with animated underline */
.link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size var(--t), color var(--t);
}
.link:hover { background-size: 100% 1px; color: var(--brass-lt); }
.link .arw { transition: transform var(--t); }
.link:hover .arw { transform: translateX(5px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  position: relative;
  z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
}
.topbar a { color: var(--champagne); transition: color var(--t); }
.topbar a:hover { color: var(--brass); }
.topbar-links { display: flex; gap: 1.5rem; align-items: center; }

/* The frosted glass lives on ::before, not on the header itself. `backdrop-filter`
   makes an element the containing block for its own position:fixed descendants, and
   the mobile nav is one of those — with the filter on the header, the open menu
   anchored to the header's flow position at the top of the document instead of the
   viewport, so on a scrolled page it rendered off-screen above. The pseudo-element
   has no fixed descendants, so it can carry the blur safely. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color var(--t);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(11, 22, 38, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  transition: background var(--t);
}
.site-header.scrolled::before { background: rgba(6, 11, 20, .95); }
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

/* The badge logo carries the company name, so it stands alone — no adjacent
   wordmark. Sized by height; width follows the 619×510 aspect ratio. At this
   size the badge reads as a mark rather than as readable type — the header is
   deliberately slim, and the company name is carried by the page title and the
   much larger footer badge instead. */
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img {
  height: 52px;
  width: auto;
  transition: opacity var(--t);
}
.brand:hover img { opacity: .85; }

/* Larger treatment for the footer */
.brand-lg img { height: 118px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  position: relative;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--champagne);
  padding-block: .4rem;
  transition: color var(--t);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t);
}
.nav a:hover { color: var(--brass-lt); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--brass); }

/* The nav carries its own CTA for the mobile drawer; on desktop the one in
   .header-cta is the only one shown. */
.nav > .btn { display: none; }

.header-cta { display: flex; align-items: center; gap: 1rem; }

/* Hamburger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  place-items: center;
  /* The bars sit in three implicit grid rows. Without this those rows stretch to
     fill the 44px button, spacing the bars ~16px apart — but the open state
     translates them by 6px to form the X, so they never met and the icon read as
     a chevron. Centring the rows keeps the bars at the 6px pitch the transform
     assumes. */
  align-content: center;
}
.burger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--brass);
  transition: transform .35s var(--ease), opacity .2s;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 20% 30%, rgba(11,22,38,.55), transparent 60%),
    linear-gradient(to right, rgba(6,11,20,.94) 0%, rgba(6,11,20,.78) 45%, rgba(6,11,20,.45) 100%),
    linear-gradient(to top, rgba(6,11,20,.98), transparent 55%);
}

.hero .wrap { position: relative; z-index: 2; padding-block: clamp(6rem, 12vw, 9rem); }
.hero-content { max-width: 46rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .line { display: block; }
.hero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--champagne); max-width: 48ch; margin-bottom: 2.5rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .75rem;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--brass), transparent);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Compact page hero for interior pages */
.page-hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 80% 0%, rgba(200,169,106,.13), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.25rem; font-size: clamp(2.4rem, 5.5vw, 4.2rem); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.crumbs a:hover { color: var(--brass); }
.crumbs span { opacity: .5; }

/* ==========================================================================
   SPLIT / ABOUT
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.split-media::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(239,228,206,.16);
  pointer-events: none;
}
.split.reverse .split-media { order: 2; }

.stat-badge {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  background: var(--ink);
  border: 1px solid var(--brass);
  padding: 1.5rem 1.75rem;
  text-align: center;
  max-width: 190px;
}
.stat-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
}
.stat-badge span {
  display: block;
  margin-top: .4rem;
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Checklist */
.checks { display: grid; gap: .9rem; margin-block: 1.75rem; }
.checks li {
  position: relative;
  padding-left: 2rem;
  color: var(--champagne);
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(-45deg);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.cards.two { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.75);
}
.card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,11,20,.85), transparent 60%);
}
.card:hover .card-media { transform: scale(1.04); }

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.card-body p { color: var(--muted); font-size: .95rem; }
.card-body .link { margin-top: auto; align-self: flex-start; }

.price-tag {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--brass);
  letter-spacing: .02em;
}
.price-tag small {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: .15rem;
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.5rem; }
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass);
  opacity: .55;
}
.step h4 { margin-bottom: .6rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ==========================================================================
   PACKAGES
   ========================================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--navy-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform var(--t), border-color var(--t);
}
.tier:hover { transform: translateY(-4px); border-color: var(--line); }
.tier.featured {
  background: linear-gradient(180deg, var(--navy-3), var(--navy-2));
  border-color: var(--brass);
  box-shadow: 0 30px 60px -30px rgba(200,169,106,.35);
}
.tier-flag {
  align-self: flex-start;
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(120deg, var(--brass-lt), var(--brass));
  padding: .35rem .85rem;
}
.tier h3 { font-size: 1.7rem; }
.tier .amount {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: var(--brass);
  line-height: 1;
}
.tier .amount sup { font-size: .4em; vertical-align: super; margin-right: .1em; }
.tier .amount small {
  display: block;
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .6rem;
}
.tier ul { display: grid; gap: .75rem; font-size: .93rem; }
.tier ul li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--champagne);
}
.tier ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(-45deg);
}
.tier .btn { margin-top: auto; }

/* ==========================================================================
   OPTIONS (service detail pricing cards)
   ========================================================================== */
.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.option {
  display: flex;
  flex-direction: column;
  background: var(--navy-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.option:hover { border-color: var(--line); transform: translateY(-4px); }
.option-media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line-soft);
}
.option-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .85rem;
  padding: 1.65rem;
}
.option-body h3 { font-size: 1.35rem; }
.option-body p { font-size: .92rem; color: var(--muted); }
.option-includes {
  display: grid;
  gap: .45rem;
  font-size: .84rem;
  color: var(--champagne);
  padding-top: .25rem;
}
.option-includes li { position: relative; padding-left: 1.2rem; }
.option-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 5px;
  height: 5px;
  background: var(--brass);
  transform: rotate(45deg);
}
.option-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.option-foot .price {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--brass);
  line-height: 1;
}
.option-foot .price small {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

/* Add-to-booking button feedback */
.add-btn.added {
  background: linear-gradient(120deg, var(--brass-lt), var(--brass));
  color: var(--ink);
  border-color: transparent;
}
.add-btn.added::before { transform: translateY(101%); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  cursor: zoom-in;
  aspect-ratio: 1;
}
.gallery figure.tall { aspect-ratio: 3 / 4; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter var(--t);
  filter: saturate(.85);
}
.gallery figure:hover img { transform: scale(1.07); filter: saturate(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem .9rem;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--champagne);
  background: linear-gradient(to top, rgba(6,11,20,.92), transparent);
  transform: translateY(100%);
  transition: transform var(--t);
}
.gallery figure:hover figcaption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: var(--gut);
  background: rgba(6, 11, 20, .96);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: grid; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid var(--line);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brass);
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.lightbox-close:hover { background: var(--brass); color: var(--ink); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.quote {
  position: relative;
  background: var(--navy-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote::before {
  content: '\201C';
  position: absolute;
  top: .2rem;
  right: 1.5rem;
  font-family: var(--display);
  font-size: 6rem;
  line-height: 1;
  color: var(--brass);
  opacity: .16;
}
.stars { color: var(--brass); letter-spacing: .22em; font-size: .85rem; }
.quote blockquote {
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}
.quote cite {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}
.quote cite b { display: block; color: var(--champagne); font-weight: 400; margin-bottom: .25rem; }

/* ==========================================================================
   SERVICE AREA
   ========================================================================== */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
}
.areas li {
  padding: .55rem 1.15rem;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  transition: border-color var(--t), color var(--t);
}
.areas li:hover { border-color: var(--brass); color: var(--brass-lt); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  transition: color var(--t);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass-lt); }
.faq summary .ico {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.faq summary .ico::before,
.faq summary .ico::after {
  content: '';
  position: absolute;
  background: var(--brass);
  transition: transform var(--t), opacity var(--t);
}
.faq summary .ico::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq summary .ico::after  { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.faq details[open] summary .ico::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq details[open] summary { color: var(--brass); }
.faq .answer { padding-bottom: 1.75rem; color: var(--muted); max-width: 75ch; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--ink);
  text-align: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(200,169,106,.16), transparent 65%),
    radial-gradient(50% 90% at 50% 100%, rgba(22,41,74,.7), transparent 65%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band p { margin-inline: auto; margin-block: 1.5rem 2.5rem; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.form-aside { display: grid; gap: 2rem; align-content: start; }
.contact-block h4 { margin-bottom: .5rem; }
.contact-block a { color: var(--brass); transition: color var(--t); }
.contact-block a:hover { color: var(--brass-lt); }
.contact-block p { color: var(--muted); font-size: .95rem; }

form.quote-form { display: grid; gap: 1.25rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field { display: grid; gap: .5rem; }
.field label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--brass); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(147,162,186,.55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--navy-2);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.field select option { background: var(--ink); }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg); cursor: pointer; }

/* Checkbox pills for service interest */
.pillset { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { position: relative; }
/* Visually hidden but still focusable and screen-reader reachable. Pinned to
   the label so it cannot stretch and widen the page. */
.pill input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.pill span {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--t);
}
.pill:hover span { border-color: var(--brass); }
.pill input:checked + span {
  background: linear-gradient(120deg, var(--brass-lt), var(--brass));
  border-color: transparent;
  color: var(--ink);
}
.pill input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 3px; }

.form-note { font-size: .8rem; color: var(--muted); }

/* Compact in-form callout — same visual language as .callout, sized to sit
   inside a form without dominating the fields above it. */
.form-callout {
  background: var(--navy-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--brass);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  margin-bottom: 1.6rem;
}
.form-callout h4 {
  color: var(--brass-lt);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.form-callout p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.form-callout strong { color: var(--champagne); font-weight: 400; }

.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  border: 1px solid;
}
.form-status.show { display: block; }
.form-status.ok  { border-color: var(--brass); background: rgba(200,169,106,.1); color: var(--brass-lt); }
.form-status.err { border-color: #C9584F; background: rgba(201,88,79,.12); color: #F0B4AE; }

/* ==========================================================================
   BOOKING DRAWER
   ========================================================================== */
.booking-tab {
  position: fixed;
  right: 0;
  bottom: 2.5rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.25rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(120deg, var(--brass-lt), var(--brass));
  border: none;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.7);
  transition: filter var(--t), transform var(--t);
}
.booking-tab.show { display: flex; animation: slideIn .4s var(--ease); }
.booking-tab:hover { filter: brightness(1.08); transform: translateX(-3px); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } }
.booking-tab .count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding-inline: 6px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--brass);
  font-size: .7rem;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6,11,20,.7);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.drawer-scrim.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(420px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-head h3 { font-size: 1.6rem; }
.drawer-head p { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.drawer-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brass);
  background: none;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: var(--t);
}
.drawer-close:hover { background: var(--brass); color: var(--ink); }

.drawer-body { flex: 1; overflow-y: auto; padding: 1.75rem; }
.drawer-empty { color: var(--muted); font-size: .95rem; text-align: center; padding-block: 3rem; }

.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.cart-line-info h5 { font-family: var(--sans); font-weight: 400; font-size: .92rem; color: var(--cream); }
.cart-line-info span { font-size: .78rem; color: var(--muted); }
.cart-line-right { display: flex; align-items: center; gap: .85rem; }
.cart-line-right .amt { font-family: var(--display); font-size: 1.15rem; color: var(--brass); }
.cart-remove {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: var(--t);
}
.cart-remove:hover { color: #F0B4AE; border-color: #C9584F; }

.drawer-foot {
  padding: 1.75rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  display: grid;
  gap: 1rem;
}
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-total b {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--brass);
}
.drawer-foot .tiny { font-size: .72rem; color: var(--muted); text-align: center; line-height: 1.5; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.5rem;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.35rem;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-col p { color: var(--muted); font-size: .9rem; transition: color var(--t); }
.footer-col a:hover { color: var(--brass-lt); }
.footer-brand p { margin-top: 1.25rem; max-width: 34ch; }

.socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--champagne);
  transition: var(--t);
}
.socials a:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.75rem;
  border-top: 1px solid var(--line-soft);
  font-size: .78rem;
  color: var(--muted);
}
.footer-bar nav { display: flex; gap: 1.5rem; }
.footer-bar a:hover { color: var(--brass); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
/* The hidden starting state is scoped to `html.js`, which an inline script in
   <head> sets. If JavaScript never runs, nothing is ever hidden — content must
   not depend on an animation to be readable. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

/* Staggered children */
.js .stagger > * { opacity: 0; transform: translateY(24px); }
.js .stagger.in > * { animation: rise .7s var(--ease) forwards; }
.stagger.in > *:nth-child(1) { animation-delay: .05s; }
.stagger.in > *:nth-child(2) { animation-delay: .13s; }
.stagger.in > *:nth-child(3) { animation-delay: .21s; }
.stagger.in > *:nth-child(4) { animation-delay: .29s; }
.stagger.in > *:nth-child(5) { animation-delay: .37s; }
.stagger.in > *:nth-child(6) { animation-delay: .45s; }
.stagger.in > *:nth-child(7) { animation-delay: .53s; }
.stagger.in > *:nth-child(8) { animation-delay: .61s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Hero entrance */
.hero-content > * { opacity: 0; animation: rise .9s var(--ease) forwards; }
.hero-content > *:nth-child(1) { animation-delay: .15s; }
.hero-content > *:nth-child(2) { animation-delay: .30s; }
.hero-content > *:nth-child(3) { animation-delay: .45s; }
.hero-content > *:nth-child(4) { animation-delay: .60s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-shell  { grid-template-columns: 1fr; }

  /* The horizontal nav needs ~1072px to hold seven links plus the brand and
     the quote button on one line. Below that it wraps, so the off-canvas
     drawer takes over here rather than at 900 — the header CTA stays visible
     down to 900 (see below), so tablets keep the primary action in reach. */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    height: 100dvh;
    padding: 6rem var(--gut) 3rem;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 55;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; letter-spacing: .22em; }
  .nav > .btn { display: inline-flex; margin-top: 1rem; width: auto; }
  .burger { display: grid; position: relative; z-index: 56; }

  /* Opening the menu scroll-locks the page with `overflow: hidden` on <body>,
     and that disables position:sticky — the header would drop back to its
     document position, taking the close (X) button off-screen on a scrolled
     page. Pin the header for exactly as long as the menu is open. The burger
     lands on the same pixel either way, so toggling shows no jump. */
  .site-header:has(.nav.open) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Above .topbar (60), which is in flow at the very top of the page and
       would otherwise cover the pinned header — and the X — at scroll 0.
       Stays below the quote drawer (90/99). */
    z-index: 70;
  }
}

@media (max-width: 900px) {
  .header-cta > .btn { display: none; }

  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 4 / 3; }
  .stat-badge { right: 1rem; bottom: -1rem; }

  .hide-sm { display: none; }
}

@media (max-width: 640px) {
  :root { --section: 3.75rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: center; }
  .booking-tab { bottom: 1rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure.tall { aspect-ratio: 1; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .option-foot { flex-direction: column; align-items: stretch; }
  .stat-badge { position: static; margin-top: 1rem; max-width: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .topbar, .booking-tab, .drawer, .drawer-scrim, .cta-band, body::after { display: none !important; }
  body { background: #fff; color: #000; }
}

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

/* ==========================================================================
   PHOTOGRAPHY
   --------------------------------------------------------------------------
   Every photo on the site is referenced from this one block. To use real
   Prestige Pour photos, drop them in assets/img/ and change the url() here —
   nothing else in the site needs to be touched.

   The stock URLs below are free-to-use Unsplash images used as placeholders
   so the layout can be reviewed. Replace them before launch.
   ========================================================================== */
:root {
  --photo-hero:        url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&q=80&w=2000");
  --photo-about:       url("https://images.unsplash.com/photo-1551024709-8f23befc6f87?auto=format&fit=crop&q=80&w=1200");
  --photo-margarita:   url("../assets/img/margarita-machines.png");
  --photo-bartending:  url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&q=80&w=1200");
  --photo-charcuterie: url("https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&q=80&w=1200");
  --photo-backdrops:   url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80&w=1200");
  --photo-cocktails:   url("https://images.unsplash.com/photo-1536935338788-846bb9981813?auto=format&fit=crop&q=80&w=1200");
  --photo-toast:       url("https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&q=80&w=1200");
}

/* CSS lives in /css, images live in /assets — step back up one level. */
.img-margarita   { background-image: var(--photo-margarita); background-position: center; }
.img-hero        { background-image: var(--photo-hero); }
.img-about       { background-image: var(--photo-about); }
.img-bartending  { background-image: var(--photo-bartending); }
.img-charcuterie { background-image: var(--photo-charcuterie); }
.img-backdrops   { background-image: var(--photo-backdrops); }
.img-cocktails   { background-image: var(--photo-cocktails); }
.img-toast       { background-image: var(--photo-toast); }

/* ==========================================================================
   LEGAL / AGREEMENT PAGES
   ========================================================================== */
.doc-meta {
  margin-top: 1.5rem;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.doc-meta .link { border: 0; background: none; cursor: pointer; padding: 0; font: inherit; letter-spacing: .16em; }

/* Callout panel */
.callout {
  background: var(--navy-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--brass);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.callout h4 { color: var(--brass-lt); margin-bottom: .85rem; }
.callout p { color: var(--champagne); }
.callout p + p { margin-top: .85rem; }

.callout-accent {
  background: linear-gradient(180deg, var(--navy-3), var(--navy-2));
  border-color: var(--brass);
  border-left-width: 2px;
  margin: clamp(3rem, 6vw, 4rem) 0 0;
  text-align: center;
}
.callout-accent .btn-row { justify-content: center; }

/* Numbered clauses */
.clauses { counter-reset: clause; }
.clause { padding-block: clamp(1.75rem, 3.5vw, 2.5rem); border-bottom: 1px solid var(--line-soft); }
.clause:first-child { padding-top: 0; }
.clause h3 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 1.1rem;
}
.clause-num {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--brass);
  min-width: 2.2rem;
}
.clause p { color: var(--muted); }
.clause p + p { margin-top: .9rem; }
.clause strong { color: var(--champagne); font-weight: 400; }
.clause .checks { margin-block: 1.1rem; }
.clause .checks li { color: var(--muted); }
.clause .checks li strong { color: var(--champagne); }
.clause a { color: var(--brass); }
.clause a:hover { color: var(--brass-lt); }

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */
.booking-form { gap: 0; }

.fset {
  border: 0;
  border-top: 1px solid var(--line-soft);
  padding: clamp(1.75rem, 3.5vw, 2.25rem) 0;
  display: grid;
  gap: 1.25rem;
}
.fset:first-of-type { border-top: 0; padding-top: 0; }
.fset legend {
  padding: 0 0 .35rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Agreement block */
.fset-agree {
  background: var(--navy-2);
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: 2rem;
}
.fset-agree legend { padding-inline: .75rem; margin-left: -.75rem; }

.agree-summary p { color: var(--champagne); font-size: .95rem; }
.agree-summary .checks { margin-block: 1rem 0; }
.agree-summary .checks li { color: var(--muted); font-size: .92rem; }
.agree-summary a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }

.agree-check {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.1rem;
  background: var(--ink);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t);
}
.agree-check:hover { border-color: var(--brass); }
.agree-check input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: .2rem;
  accent-color: var(--brass);
  cursor: pointer;
}
.agree-check span { font-size: .92rem; color: var(--champagne); }
.agree-check a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }

/* Signature field reads as a signature */
#b-signature {
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: .01em;
}

/* Radio pills reuse the checkbox pill styling */
.pill input[type="radio"] { border-radius: 50%; }

/* Invalid state after a failed submit */
.quote-form.validated :invalid {
  border-color: #C9584F;
}
.quote-form.validated .agree-check:has(:invalid) { border-color: #C9584F; }

/* ---------- Print: make the agreement printable ---------- */
@media print {
  .page-hero { padding-block: 0 1rem; }
  .callout, .callout-accent { border: 1px solid #999; background: none; }
  .clause { break-inside: avoid; border-bottom: 1px solid #ccc; }
  .clause h3, .callout h4 { color: #000; }
  .clause p, .clause li, .callout p { color: #222; }
  .clause-num { color: #666; }
  .crumbs, .doc-meta, .btn-row, .callout-accent .btn-row { display: none !important; }
  .checks li::before { border-color: #666; }
}

/* ==========================================================================
   MISSION
   --------------------------------------------------------------------------
   A deliberate pause between "what we do" and "here is the catalogue".
   Centred, narrow measure, and the closing line set in the display italic so
   the section reads as a statement rather than another block of body copy.
   ========================================================================== */
.mission-body { text-align: center; }
.mission-body p {
  color: var(--champagne);
  font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem);
  line-height: 1.85;
}
.mission-body p + p { margin-top: 1.35rem; }

.mission-body p.mission-close {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.35;
  color: var(--brass-lt);
}
