/* =========================================================================
   Crown Catering — shared design system
   Display type : Fraunces (variable optical size)
   Interface    : Manrope
   ========================================================================= */

:root {
  /* Palette taken from the Crown Catering brochure */
  --ink:            #0B0A09;
  --ink-raised:     #15120D;
  --ink-panel:      #1C1810;
  --ivory:          #F7F3EA;
  --ivory-2:        #EFE8DA;
  --gold:           #C9A227;
  --gold-light:     #E7CE86;
  --gold-dim:       rgba(201, 162, 39, .26);
  --maroon:         #6E1B26;
  --maroon-deep:    #55131C;
  --text-dark:      #1B1813;
  --text-dark-soft: #58524A;
  --text-light:     #F2ECE0;
  --text-light-soft:#B4A891;

  --font-display: "Fraunces", "Georgia", serif;
  --font-ui: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --header-h: 84px;
  --radius: 2px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --t: 220ms var(--ease);
  --shadow-card: 0 22px 60px rgba(11, 10, 9, .13);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, .45);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
p, h1, h2, h3, h4, blockquote, figure, ul, ol { margin-top: 0; }
ul { padding-left: 0; list-style: none; margin-bottom: 0; }
::selection { background: var(--gold); color: var(--ink); }

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

/* ---------- Page transition ---------- */
body.page-enter { opacity: 0; transform: translateY(6px); }
body.page-ready { opacity: 1; transform: none; transition: opacity 300ms var(--ease), transform 300ms var(--ease); }
body.page-leaving { opacity: 0; transition: opacity 160ms ease; pointer-events: none; }

/* =========================================================================
   Layout primitives
   ========================================================================= */

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

.section { position: relative; padding: clamp(76px, 8.5vw, 132px) 0; }
.section-tight { padding: clamp(56px, 6vw, 88px) 0; }
.section-ivory { background: var(--ivory); color: var(--text-dark); }
.section-ivory-2 { background: var(--ivory-2); color: var(--text-dark); }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-panel { background: var(--ink-raised); color: var(--text-light); }

.skip-link {
  position: fixed; z-index: 9999; top: 14px; left: 14px;
  padding: 12px 20px; transform: translateY(-160%);
  background: var(--ivory); color: var(--text-dark);
  border: 1px solid var(--gold); font-weight: 600;
}
.skip-link:focus { transform: none; }

/* =========================================================================
   Typography
   ========================================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.018em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6.2vw, 5.6rem);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  font-variation-settings: "opsz" 96, "SOFT" 0, "WONK" 0;
}
h3 { margin-bottom: 14px; font-size: clamp(1.32rem, 1.8vw, 1.6rem); font-weight: 600; }
h4 { margin-bottom: 10px; font-size: 1.05rem; font-weight: 600; }

.eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-dark { color: #8A7419; }

.lead {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  color: var(--text-light-soft);
}
.section-ivory .lead, .section-ivory-2 .lead { color: var(--text-dark-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(44px, 5vw, 68px); }
.section-head.is-centred { margin-inline: auto; text-align: center; }
.section-head p:not(.eyebrow) { color: var(--text-dark-soft); font-size: 1.06rem; margin-bottom: 0; }
.section-dark .section-head p:not(.eyebrow),
.section-panel .section-head p:not(.eyebrow) { color: var(--text-light-soft); }

/* Hairline rule borrowed from the brochure border */
.rule-gold {
  width: 64px; height: 1px; margin: 0 0 26px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0));
}
.is-centred .rule-gold { margin-inline: auto; background: linear-gradient(90deg, rgba(201,162,39,0), var(--gold), rgba(201,162,39,0)); width: 110px; }

/* =========================================================================
   Buttons & links
   ========================================================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 28px;
  border: 1px solid var(--maroon); background: var(--maroon); color: #fff;
  font-family: var(--font-ui); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; line-height: 1; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 12px 32px rgba(85, 19, 28, .24);
}
.btn:hover, .btn:focus-visible { background: var(--maroon-deep); border-color: var(--maroon-deep); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold); border-color: var(--gold); color: var(--ink);
  box-shadow: 0 12px 32px rgba(201, 162, 39, .22);
}
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost {
  background: transparent; color: var(--text-light);
  border-color: rgba(231, 206, 134, .45); box-shadow: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(201, 162, 39, .1); border-color: var(--gold-light); }

.btn-ghost-dark { background: transparent; color: var(--text-dark); border-color: rgba(27,24,19,.28); box-shadow: none; }
.btn-ghost-dark:hover, .btn-ghost-dark:focus-visible { background: rgba(27,24,19,.05); border-color: var(--text-dark); }

.btn-sm { min-height: 44px; padding: 12px 20px; font-size: .72rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-light); font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.link-arrow span { transition: transform var(--t); }
.link-arrow:hover span, .link-arrow:focus-visible span { transform: translateX(4px); }
.link-arrow-dark { color: var(--maroon); }

/* =========================================================================
   Header
   ========================================================================= */

.site-header {
  position: fixed; z-index: 900; top: 0; left: 0; width: 100%;
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(11, 10, 9, .93);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--gold-dim);
}

.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 42px; width: auto; }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 12px;
  border: 1px solid var(--gold-dim); background: transparent;
  border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span { display: block; height: 1.5px; margin: 5px 0; background: var(--gold-light); transition: transform var(--t), opacity var(--t); }
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px); }
.nav-link {
  position: relative; padding: 10px 0;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #DCD3C2;
  transition: color var(--t);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform var(--t);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--gold-light); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* =========================================================================
   Hero — home
   ========================================================================= */

.hero-home {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 90px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,10,9,.96) 0%, rgba(11,10,9,.72) 38%, rgba(11,10,9,.34) 68%, rgba(11,10,9,.55) 100%),
    linear-gradient(to right, rgba(11,10,9,.78) 0%, rgba(11,10,9,.28) 55%, rgba(11,10,9,.1) 100%);
}

.hero-home-inner { position: relative; z-index: 2; }
.hero-home h1 { max-width: 15ch; color: #FFF9EC; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero-home .lead { color: #DCD2C0; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-strip {
  position: relative; z-index: 2;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 26px;
  border-top: 1px solid var(--gold-dim);
  display: flex; flex-wrap: wrap; gap: 12px 40px;
}
.hero-strip li {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-light-soft);
}
.hero-strip li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

/* ---------- Hero — inner pages ---------- */

.hero-page {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: min(64svh, 620px);
  padding: calc(var(--header-h) + 84px) 0 clamp(48px, 5vw, 76px);
  background: var(--ink);
}
.hero-page .hero-media::after {
  background:
    linear-gradient(to top, rgba(11,10,9,.97) 0%, rgba(11,10,9,.82) 40%, rgba(11,10,9,.6) 100%),
    linear-gradient(to right, rgba(11,10,9,.7) 0%, rgba(11,10,9,.35) 70%);
}
.hero-page-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-page h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); color: #FFF9EC; }

/* =========================================================================
   Assurance strip
   ========================================================================= */

.assurance { background: var(--ivory); color: var(--text-dark); padding: 0; }
.assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.assurance-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: clamp(28px, 3.4vw, 44px) clamp(18px, 2.6vw, 40px);
  border-right: 1px solid rgba(27, 24, 19, .1);
}
.assurance-item:first-child { padding-left: 0; }
.assurance-item:last-child { border-right: 0; padding-right: 0; }
.assurance-item h3 { margin-bottom: 5px; font-size: 1.06rem; }
.assurance-item p { margin: 0; font-size: .94rem; color: var(--text-dark-soft); line-height: 1.55; }
.assurance-mark {
  flex: 0 0 auto; width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(201, 162, 39, .5); color: #8A7419;
}
.assurance-mark svg { width: 17px; height: 17px; }

/* =========================================================================
   Signature package band (Gold)
   ========================================================================= */

.signature { background: var(--ink); overflow: hidden; }
.signature-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center; gap: clamp(44px, 6vw, 88px);
}
.signature-copy .lead { margin-bottom: 30px; }

.signature-figure { position: relative; }
.signature-figure img {
  width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover;
  border: 1px solid var(--gold-dim);
}
.signature-figure::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(201,162,39,.16); pointer-events: none;
}
.signature-price {
  position: absolute; left: -1px; bottom: -1px;
  padding: 20px 26px 16px;
  background: var(--ink);
  border: 1px solid var(--gold-dim);
}
.signature-price strong {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.6rem, 4vw, 3.4rem); line-height: .9; color: var(--gold-light);
  font-variation-settings: "opsz" 144;
}
.signature-price span {
  display: block; margin-top: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-light-soft);
}

.spec-list { display: grid; gap: 0; margin: 0 0 32px; border-top: 1px solid rgba(27,24,19,.13); }
.spec-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 13px 0; border-bottom: 1px solid rgba(27,24,19,.13);
}
.spec-list .spec-name { font-size: .98rem; color: var(--text-dark); }
.spec-list .spec-qty {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #8A7419; white-space: nowrap;
}
/* Same component, inverted for the dark signature band */
.section-dark .spec-list,
.section-panel .spec-list,
.section-dark .spec-list li,
.section-panel .spec-list li { border-color: rgba(255,255,255,.09); }
.section-dark .spec-list .spec-name,
.section-panel .spec-list .spec-name { color: var(--text-light); }
.section-dark .spec-list .spec-qty,
.section-panel .spec-list .spec-qty { color: var(--gold-light); }

/* =========================================================================
   Occasions (home) — three image cards
   ========================================================================= */

.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }

.occasion {
  position: relative; display: block; overflow: hidden;
  background: var(--ink-raised);
  border: 1px solid rgba(27, 24, 19, .12);
}
.section-dark .occasion, .section-panel .occasion { border-color: var(--gold-dim); }

.occasion-media { position: relative; overflow: hidden; aspect-ratio: 3 / 3.9; }
.occasion-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease);
}
.occasion:hover .occasion-media img { transform: scale(1.045); }
.occasion-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,10,9,.94) 4%, rgba(11,10,9,.55) 38%, rgba(11,10,9,.06) 72%);
}

.occasion-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(22px, 2.4vw, 32px);
}
.occasion-body h3 { margin-bottom: 8px; font-size: clamp(1.35rem, 1.9vw, 1.72rem); color: #FFF9EC; }
.occasion-body p { margin: 0; font-size: .95rem; line-height: 1.55; color: #C9BFAC; }
.occasion-kicker {
  display: block; margin-bottom: 12px;
  font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}

/* =========================================================================
   Package cards + modal
   ========================================================================= */

.package-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 24px);
  align-items: stretch;
}

.package-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(27, 24, 19, .12);
  text-align: left;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.package-card:hover,
.package-card:has(.package-open:focus-visible) {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, .55);
  box-shadow: var(--shadow-card);
}
.package-card.is-signature { border-color: rgba(201, 162, 39, .6); }

.package-flag {
  position: absolute; z-index: 4; top: 14px; left: 14px;
  padding: 7px 13px; background: var(--gold); color: var(--ink);
  font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}

.package-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.package-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.package-card:hover .package-media img { transform: scale(1.05); }

.package-body { display: flex; flex-direction: column; flex: 1; padding: clamp(22px, 2vw, 28px); }
.package-tier {
  display: block; margin-bottom: 14px;
  font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #8A7419;
}
.package-name-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid rgba(27,24,19,.12);
}
.package-name-row h3 { margin: 0; font-size: clamp(1.5rem, 2vw, 1.85rem); color: var(--text-dark); }
.package-price { margin: 0; white-space: nowrap; text-align: right; }
.package-price strong {
  font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--maroon);
  font-variation-settings: "opsz" 96;
}
.package-price span { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dark-soft); }

.package-summary { margin: 0 0 24px; display: grid; gap: 9px; }
.package-summary li { position: relative; padding-left: 20px; font-size: .95rem; color: var(--text-dark-soft); line-height: 1.5; }
.package-summary li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg);
}

.package-open {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font-ui);
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--maroon);
}
/* The whole card is the click target, but only one real button exists. */
.package-open::after { content: ""; position: absolute; inset: 0; z-index: 3; }
.package-open span { transition: transform var(--t); }
.package-card:hover .package-open span { transform: translateX(4px); }

/* ---------- Modal ---------- */

.modal-root[hidden] { display: none; }
.modal-root {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(14px, 3vw, 40px);
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 5, 4, .72); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 260ms var(--ease);
}
.modal-root.is-open .modal-backdrop { opacity: 1; }

.modal-panel {
  position: relative; z-index: 2;
  width: min(100%, 980px); max-height: calc(100svh - 40px);
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--ivory); color: var(--text-dark);
  border: 1px solid rgba(201, 162, 39, .45);
  box-shadow: var(--shadow-dark);
  opacity: 0; transform: translateY(22px) scale(.985);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.modal-root.is-open .modal-panel { opacity: 1; transform: none; }

.modal-close {
  position: absolute; z-index: 4; top: 14px; right: 14px;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(11, 10, 9, .55); border: 1px solid rgba(255,255,255,.24);
  color: #fff; cursor: pointer; border-radius: 50%;
  transition: background var(--t), transform var(--t);
}
.modal-close:hover { background: var(--ink); transform: rotate(90deg); }
.modal-close svg { width: 16px; height: 16px; }

.modal-hero { position: relative; }
.modal-hero img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; }
.modal-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,10,9,.9), rgba(11,10,9,.15) 70%);
}
.modal-hero-copy { position: absolute; z-index: 2; left: 0; bottom: 0; padding: clamp(22px, 3vw, 40px); }
.modal-hero-copy .eyebrow { margin-bottom: 10px; }
.modal-hero-copy h2 { margin: 0; color: #FFF9EC; font-size: clamp(2.1rem, 4vw, 3.2rem); }

.modal-content { padding: clamp(26px, 3.4vw, 46px); }
.modal-lede {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; padding-bottom: 26px; margin-bottom: 30px;
  border-bottom: 1px solid rgba(27,24,19,.14);
}
.modal-lede p { margin: 0; max-width: 54ch; color: var(--text-dark-soft); }
.modal-price { text-align: right; white-space: nowrap; }
.modal-price strong {
  display: block; font-family: var(--font-display); font-weight: 500; line-height: .9;
  font-size: clamp(2.4rem, 4vw, 3.1rem); color: var(--maroon); font-variation-settings: "opsz" 144;
}
.modal-price span { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dark-soft); }

.modal-columns { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); }
.modal-columns h4 { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #8A7419; margin-bottom: 16px; }
.modal-note { font-size: .95rem; color: var(--text-dark-soft); line-height: 1.6; }

.modal-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(27,24,19,.14); }

/* =========================================================================
   Menu page
   ========================================================================= */

.menu-browser { background: var(--ivory); }
.menu-tablist {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-bottom: 26px; margin-bottom: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid rgba(27,24,19,.14);
}
.menu-tab {
  padding: 11px 20px; border: 1px solid rgba(27,24,19,.18); background: transparent;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dark-soft); cursor: pointer; border-radius: 999px;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.menu-tab:hover { border-color: var(--gold); color: var(--text-dark); }
.menu-tab[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--gold-light); }

.menu-panel[hidden] { display: none; }
.menu-panel-head { margin-bottom: 34px; }
.menu-panel-head h2 { margin-bottom: 0; }

.menu-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(28px, 3vw, 48px); }
.menu-group h3 {
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,162,39,.4);
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #8A7419; font-family: var(--font-ui);
}
.menu-group ul { display: grid; gap: 7px; }
.menu-group li { font-size: 1rem; color: var(--text-dark); }

.figure-wide { margin: clamp(48px, 5vw, 76px) 0 0; }
.figure-wide img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; border: 1px solid rgba(27,24,19,.12); }
.figure-wide figcaption {
  margin-top: 12px; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dark-soft); font-weight: 600;
}
.section-dark .figure-wide figcaption { color: var(--text-light-soft); }
.section-dark .figure-wide img { border-color: var(--gold-dim); }

.menu-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 40px); margin-top: clamp(48px, 5vw, 72px); padding-top: clamp(36px, 4vw, 52px); border-top: 1px solid rgba(27,24,19,.14); }
.menu-note h4 { font-size: 1.02rem; margin-bottom: 8px; font-family: var(--font-display); font-weight: 600; }
.menu-note p { margin: 0; font-size: .95rem; color: var(--text-dark-soft); line-height: 1.6; }

/* =========================================================================
   Process (How it works)
   ========================================================================= */

.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
.process-step { display: flex; gap: 18px; }
.step-index {
  flex: 0 0 auto; font-family: var(--font-display); font-weight: 500;
  font-size: 1.5rem; line-height: 1; color: var(--gold); padding-top: 4px;
  font-variation-settings: "opsz" 96;
}
.process-step h3 { margin-bottom: 7px; font-size: 1.12rem; }
.process-step p { margin: 0; font-size: .96rem; color: var(--text-dark-soft); line-height: 1.6; }
.section-dark .process-step p { color: var(--text-light-soft); }

.assurance-panel {
  display: flex; gap: 22px; align-items: flex-start;
  margin-top: clamp(48px, 5vw, 72px); padding: clamp(28px, 3vw, 44px);
  background: #fff; border: 1px solid rgba(201,162,39,.4);
}
.assurance-panel h3 { margin-bottom: 8px; }
.assurance-panel p { margin: 0; color: var(--text-dark-soft); }

/* ---------- FAQ ---------- */

.faq-list { border-top: 1px solid rgba(27,24,19,.16); }
.faq-item { border-bottom: 1px solid rgba(27,24,19,.16); }
.faq-trigger {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 24px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.4; color: var(--text-dark);
  transition: color var(--t);
}
.faq-trigger:hover { color: var(--maroon); }
.faq-icon {
  flex: 0 0 auto; position: relative; width: 20px; height: 20px; margin-top: 4px;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--gold);
  transform: translate(-50%, -50%); transition: transform var(--t), opacity var(--t);
}
.faq-icon::before { width: 16px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 16px; }
.faq-trigger[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer { overflow: hidden; height: 0; transition: height 280ms var(--ease); }
.faq-answer-inner { padding: 0 0 26px; max-width: 68ch; color: var(--text-dark-soft); }
.faq-answer-inner p { margin: 0; }
.faq-placeholder {
  display: inline-block; padding: 10px 16px;
  border: 1px dashed rgba(201,162,39,.65); background: rgba(201,162,39,.07);
  font-size: .9rem; color: #6E5C14; font-style: italic;
}

/* =========================================================================
   Contact
   ========================================================================= */

.contact-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(36px, 4.5vw, 72px); align-items: start; }

.contact-figure { position: relative; }
.contact-figure img { width: 100%; aspect-ratio: 3 / 3.6; object-fit: cover; border: 1px solid rgba(27,24,19,.12); }
.contact-aside { margin-top: 30px; }
.contact-aside h3 { font-size: 1.3rem; }
.contact-aside p { margin: 0; color: var(--text-dark-soft); }

.contact-details { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(27,24,19,.14); display: grid; gap: 12px; }
.contact-details a, .contact-details p { margin: 0; font-size: .98rem; color: var(--text-dark); }
.contact-details a { display: block; }
.contact-details .contact-email-link { margin-top: 6px; }
.contact-details a:hover { color: var(--maroon); }
.contact-details .label { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #8A7419; margin-bottom: 2px; }

.form-card { background: #fff; border: 1px solid rgba(27,24,19,.12); padding: clamp(26px, 3.4vw, 48px); box-shadow: var(--shadow-card); }
.form-head { margin-bottom: 32px; }
.form-head h2 { margin-bottom: 12px; }
.form-head p { margin: 0; font-size: .92rem; color: var(--text-dark-soft); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { position: relative; }
.field-full { grid-column: 1 / -1; }

.field input, .field select, .field textarea {
  width: 100%; padding: 22px 14px 10px;
  background: transparent; border: 0; border-bottom: 1px solid rgba(27,24,19,.28);
  color: var(--text-dark); font-size: 1rem; border-radius: 0;
  transition: border-color var(--t);
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }

.field label {
  position: absolute; left: 14px; top: 20px;
  font-size: 1rem; color: var(--text-dark-soft); pointer-events: none;
  transition: transform var(--t), font-size var(--t), color var(--t);
  transform-origin: left top;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.has-value + label {
  transform: translateY(-15px) scale(.72); color: #8A7419; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.field-select::after {
  content: ""; position: absolute; right: 14px; top: 26px; pointer-events: none;
  width: 8px; height: 8px; border-right: 1.5px solid var(--text-dark-soft); border-bottom: 1.5px solid var(--text-dark-soft);
  transform: rotate(45deg);
}

.field-error { display: block; min-height: 18px; margin-top: 6px; font-size: .8rem; color: var(--maroon); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-bottom-color: var(--maroon); }

.form-submit { margin-top: 30px; width: 100%; }
.form-submit[disabled] { cursor: wait; opacity: .72; transform: none; }
.form-response { margin: 18px 0 0; min-height: 24px; font-size: .94rem; color: #2C6B45; font-weight: 600; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ---------- Optional extras (quote form) ---------- */

.form-extras { margin-top: 8px; padding-top: 30px; border-top: 1px solid rgba(27,24,19,.14); }
.form-extras-head { margin-bottom: 22px; }
.form-extras-head .eyebrow { margin-bottom: 8px; }
.form-extras-head h3 { margin-bottom: 6px; font-size: 1.16rem; }
.form-extras-head p { margin: 0; font-size: .9rem; color: var(--text-dark-soft); }

.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
.extras-item {
  position: relative; display: flex; align-items: center; gap: 13px;
  padding: 13px 0; border-bottom: 1px solid rgba(27,24,19,.13);
  cursor: pointer;
}
.extras-item input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: pointer;
}
.extras-check {
  flex: 0 0 auto; width: 18px; height: 18px;
  border: 1px solid rgba(27,24,19,.32); background: #fff;
  display: grid; place-items: center;
  transition: border-color var(--t), background var(--t);
}
.extras-check::after {
  content: ""; width: 9px; height: 9px; background: var(--gold);
  transform: scale(0); transition: transform var(--t);
}
.extras-item input:checked ~ .extras-check { border-color: var(--gold); }
.extras-item input:checked ~ .extras-check::after { transform: scale(1); }
.extras-item input:focus-visible ~ .extras-check { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.extras-name { flex: 1 1 auto; font-size: .95rem; color: var(--text-dark); }
.extras-price {
  font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: #8A7419; white-space: nowrap;
}

@media (max-width: 560px) {
  .extras-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   CTA band + footer
   ========================================================================= */

.cta-band { position: relative; overflow: hidden; background: var(--ink-raised); padding: clamp(56px, 6vw, 88px) 0; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 0%, rgba(201,162,39,.1), transparent 55%);
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.cta-inner h2 { margin-bottom: 0; max-width: 18ch; }

.site-footer { background: var(--ink); border-top: 1px solid var(--gold-dim); padding: clamp(56px, 6vw, 84px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: clamp(32px, 4vw, 64px); }
.footer-brand img { width: 146px; margin-bottom: 20px; }
.footer-brand p { margin: 0; max-width: 38ch; font-size: .95rem; color: var(--text-light-soft); }
.footer-label { font-size: .66rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-block a, .footer-block p { display: block; margin: 0 0 10px; font-size: .96rem; color: var(--text-light-soft); transition: color var(--t); }
.footer-block a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: space-between;
  margin-top: clamp(40px, 5vw, 64px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { margin: 0; font-size: .82rem; color: #837868; }

/* =========================================================================
   Reveal on scroll
   ========================================================================= */

/* Uses `translate` rather than `transform` so component hover transforms
   (e.g. the package card lift) are not overridden by the reveal rule. */
.js .reveal { opacity: 0; translate: 0 22px; }
.js .reveal.is-visible { opacity: 1; translate: none; transition: opacity 700ms var(--ease), translate 700ms var(--ease); }
.js .reveal.is-visible:nth-child(2) { transition-delay: 80ms; }
.js .reveal.is-visible:nth-child(3) { transition-delay: 160ms; }
.js .reveal.is-visible:nth-child(4) { transition-delay: 240ms; }

.js .hero-in > * { opacity: 0; transform: translateY(20px); }
.js .page-ready .hero-in > * { animation: heroIn 760ms var(--ease) forwards; }
.js .page-ready .hero-in > *:nth-child(2) { animation-delay: 90ms; }
.js .page-ready .hero-in > *:nth-child(3) { animation-delay: 180ms; }
.js .page-ready .hero-in > *:nth-child(4) { animation-delay: 270ms; }
.js .page-ready .hero-in > *:nth-child(5) { animation-delay: 360ms; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1080px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .signature-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-figure img { aspect-ratio: 16 / 10; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }

  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 22px 30px;
    background: rgba(11, 10, 9, .98); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--gold-dim);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity var(--t), transform var(--t);
    max-height: calc(100svh - var(--header-h)); overflow-y: auto;
  }
  .site-header.is-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { padding: 15px 0; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-link::after { display: none; }
  .nav .btn { margin-top: 20px; }

  .assurance-grid { grid-template-columns: 1fr; }
  .assurance-item { border-right: 0; border-bottom: 1px solid rgba(27,24,19,.1); padding-inline: 0; }
  .assurance-item:last-child { border-bottom: 0; }

  .occasion-grid { grid-template-columns: 1fr; }
  .occasion-media { aspect-ratio: 4 / 3; }

  .process-list { grid-template-columns: 1fr; gap: 30px; }
  .menu-notes { grid-template-columns: 1fr; gap: 26px; }
  .modal-columns { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .assurance-panel { flex-direction: column; gap: 16px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container, .container-narrow { width: calc(100% - 36px); }
  .package-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-home { min-height: min(94svh, 780px); }
  .hero-strip { gap: 10px 26px; }
  .hero-strip li { font-size: .68rem; }
  .modal-hero img { aspect-ratio: 16 / 9; }
  .figure-wide img { aspect-ratio: 4 / 3; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .modal-lede { flex-direction: column; align-items: flex-start; }
  .modal-price { text-align: left; }
}

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

@media print {
  .site-header, .cta-band, .nav-toggle, .modal-root { display: none !important; }
  body { background: #fff; color: #000; }
}

/* =========================================================================
   iOS / Safari compatibility layer
   These rules add fallbacks only. They do not alter the intended design in
   browsers that already support the original declarations.
   ========================================================================= */

/* Keep the page usable if JavaScript is disabled or the external script fails. */
html:not(.js) body.page-enter {
  opacity: 1;
  transform: none;
}

@keyframes crownPageFailsafe {
  to { opacity: 1; transform: none; }
}

.js body.page-enter {
  animation: crownPageFailsafe 1ms 1200ms forwards;
}

.js body.page-ready,
.js body.page-leaving {
  animation: none;
}

/* Logical-property fallbacks for older Safari releases. */
.container,
.container-narrow,
.section-head.is-centred,
.is-centred .rule-gold {
  margin-left: auto;
  margin-right: auto;
}

/* Full-edge positioning fallbacks for Safari versions without `inset`. */
.hero-media,
.hero-media::after,
.occasion-media::after,
.package-open::after,
.modal-root,
.modal-backdrop,
.modal-hero::after,
.cta-band::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.signature-figure::after {
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
}

/* Use the stable viewport unit first, then the modern Safari unit. */
.hero-home {
  min-height: 100vh;
  min-height: min(100vh, 940px);
  min-height: min(100svh, 940px);
}

.hero-page {
  min-height: 64vh;
  min-height: min(64vh, 620px);
  min-height: min(64svh, 620px);
}

.modal-panel {
  max-height: calc(100vh - 40px);
  max-height: calc(100svh - 40px);
  -webkit-overflow-scrolling: touch;
}

/* Prefix the blur effect for iPadOS Safari versions that require it. */
.site-header {
  transition: background var(--t), border-color var(--t), -webkit-backdrop-filter var(--t), backdrop-filter var(--t);
}

.site-header.is-scrolled,
.site-header.is-open {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* The original :has() selector is progressive enhancement. This equivalent
   keeps the same keyboard-focus presentation in Safari versions without it. */
.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, .55);
  box-shadow: var(--shadow-card);
}

.package-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, .55);
  box-shadow: var(--shadow-card);
}

/* Improve touch response without changing dimensions or visual styling. */
a,
button,
input,
select,
textarea {
  touch-action: manipulation;
}

.menu-tablist,
.nav,
.modal-panel {
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
  .nav {
    top: var(--header-h);
    right: 0;
    bottom: auto;
    left: 0;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .assurance-item {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 620px) {
  .hero-home {
    min-height: 94vh;
    min-height: min(94vh, 780px);
    min-height: min(94svh, 780px);
  }
}

/* Avoid sticky hover states on touch-only iPads while retaining the exact
   desktop hover treatment on mouse/trackpad devices. */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .btn-gold:hover,
  .btn-ghost:hover,
  .btn-ghost-dark:hover,
  .occasion:hover .occasion-media img,
  .package-card:hover,
  .package-card:hover .package-media img,
  .package-card:hover .package-open span,
  .modal-close:hover,
  .menu-tab:hover,
  .faq-trigger:hover {
    transform: none;
  }
}

