:root {
  --ink: #1a1a1a; --charcoal: #212121; --charcoal-2: #2c2c2c;
  --gold: #c9a24b; --gold-dark: #a8853a; --gold-light: #e2c67e;
  --amber: #eca233;
  --cream: #faf7f1; --cream-warm: #f4eee2;
  --ink-soft: #4a4a4a; --ink-muted: #7a7a7a;
  --line: #e7ddc8; --white: #ffffff;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-brand: 'Cinzel', 'Fraunces', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wrap: 1200px; --section: clamp(3rem, 8vw, 6rem);
  --radius: 6px;
  --shadow: 0 4px 20px rgba(26, 26, 26, 0.10);
  --shadow-lg: 0 12px 40px rgba(26, 26, 26, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--cream); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 2rem); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
.eyebrow { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem; display: inline-block; }

/* LOGO */
.logo { display: inline-flex; align-items: center; gap: 0.65rem; cursor: pointer; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b { font-family: var(--font-brand); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.04em; color: var(--ink); }
.logo-text small { font-family: var(--font-serif); font-style: italic; font-size: 0.65rem; color: var(--gold-dark); letter-spacing: 0.02em; margin-top: 2px; }
.footer-logo-block .logo-text b { color: var(--cream); }

.site-header { background: rgba(250, 247, 241, 0.85); border-bottom: 1px solid rgba(231, 221, 200, 0.5); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px) saturate(1.2); transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, padding .35s ease; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 76px; }
.nav { display: none; gap: 2rem; align-items: center; }
.nav a { color: var(--ink); font-size: 0.9rem; font-weight: 500; cursor: pointer; }
.nav a.active { color: var(--gold-dark); }
.nav a:hover { color: var(--gold-dark); }
.nav .btn { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
@media (min-width: 900px) { .nav { display: flex; } }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.75rem; border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer; transition: all .2s var(--ease); text-align: center; line-height: 1; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--ink); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

.hero { position: relative; min-height: min(85vh, 700px); display: flex; align-items: center; overflow: hidden; background: var(--charcoal); }
.hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.65) 40%, rgba(20,20,20,0.3) 75%, rgba(20,20,20,0.15) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--cream); padding: clamp(3rem, 10vw, 6rem) 0; max-width: 720px; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { color: var(--cream); margin-bottom: 1.25rem; }
.hero-content p { font-size: clamp(1.125rem, 2vw, 1.35rem); margin-bottom: 2rem; color: rgba(250, 247, 241, 0.9); max-width: 55ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-sub { min-height: min(45vh, 400px); }
.hero-sub h1 { margin-bottom: 0.75rem; }
.hero-sub p { margin-bottom: 0; }

section { padding: var(--section) 0; }
section.tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto clamp(2rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

.trust-bar { background: var(--charcoal); padding: 2rem 0; }
.trust-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 700px) { .trust-items { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.trust-item strong { font-family: var(--font-serif); font-size: 2.25rem; line-height: 1; color: var(--gold-light); }
.trust-item span { line-height: 1.3; max-width: 22ch; }
.trust-item span { font-size: 0.78rem; color: rgba(250,247,241,0.65); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

.audience-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
.audience-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; border: 1px solid var(--line); }
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-card-image { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.audience-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.audience-card h3 { margin-bottom: 0.75rem; }
.audience-card p { color: var(--ink-soft); margin-bottom: 1.25rem; flex: 1; }
.audience-card .link { font-weight: 600; color: var(--gold-dark); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.audience-card .link::after { content: '→'; transition: transform .2s var(--ease); }
.audience-card:hover .link::after { transform: translateX(4px); }

.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split.reverse .split-image { order: 1; }
@media (min-width: 900px) { .split.reverse .split-image { order: 2; } }
.split-image { aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-content h2 { margin-bottom: 1.25rem; }
.split-content p { color: var(--ink-soft); margin-bottom: 1rem; }
.split-content .btn { margin-top: 1rem; }

.package-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 700px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .package-grid { grid-template-columns: repeat(3, 1fr); } }
.package-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease); border: 1px solid var(--line); }
.package-card:hover { transform: translateY(-4px); }
.package-card-image { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.package-card.popular::before { content: 'Most popular'; position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--ink); padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; z-index: 2; }
.package-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.package-card h3 { margin-bottom: 0.5rem; }
.package-card .price { font-family: var(--font-serif); font-size: 1.75rem; color: var(--gold-dark); margin-bottom: 1rem; font-weight: 500; }
.package-card .price small { font-size: 0.85rem; color: var(--ink-muted); font-family: var(--font-sans); }
.package-card p { color: var(--ink-soft); margin-bottom: 1rem; flex: 1; }
.package-card ul { list-style: none; margin-bottom: 1.5rem; }
.package-card ul li { padding: 0.35rem 0; font-size: 0.9rem; color: var(--ink-soft); padding-left: 1.25rem; position: relative; }
.package-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dark); font-weight: bold; }
.package-card .btn { margin-top: auto; justify-content: center; }

.testimonials { background: var(--charcoal); color: var(--cream); }
.testimonials h2 { color: var(--cream); }
.testimonials .section-head p { color: rgba(250, 247, 241, 0.75); }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { background: rgba(250, 247, 241, 0.04); border: 1px solid rgba(226, 198, 126, 0.2); border-radius: var(--radius); padding: 2rem; }
.testimonial .stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.15em; }
.testimonial blockquote { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.5; margin-bottom: 1.25rem; color: var(--cream); font-style: italic; }
.testimonial cite { font-style: normal; font-size: 0.85rem; color: rgba(250, 247, 241, 0.7); display: block; }
.testimonial cite strong { color: var(--gold-light); font-weight: 600; display: block; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.gallery-filter { background: transparent; border: 1px solid var(--line); padding: 0.5rem 1.25rem; border-radius: 100px; cursor: pointer; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); transition: all .2s var(--ease); }
.gallery-filter:hover { border-color: var(--gold); color: var(--gold-dark); }
.gallery-filter.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { aspect-ratio: 1; background-size: cover; background-position: center; border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .3s var(--ease); }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; box-shadow: 0 1px 4px rgba(26, 26, 26, 0.06); border: 1px solid var(--line); }
.faq-item summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-dark); flex-shrink: 0; transition: transform .2s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.5rem 1.5rem; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .form-row.split-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.form-field label .req { color: var(--gold-dark); }
.form-field input, .form-field select, .form-field textarea { padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius); font-family: var(--font-sans); font-size: 1rem; background: var(--white); color: var(--ink); transition: border-color .2s var(--ease); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field .hint { font-size: 0.8rem; color: var(--ink-muted); }
.contact-info { background: var(--cream-warm); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info-item { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .label { font-size: 0.75rem; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; }
.contact-info-item .value { color: var(--ink); font-weight: 500; }

.cta-strip { background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--ink) 100%); color: var(--cream); text-align: center; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.cta-strip h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-strip p { color: rgba(250, 247, 241, 0.85); max-width: 500px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-strip .btn-primary { background: var(--gold); color: var(--ink); }
.cta-strip .btn-primary:hover { background: var(--gold-light); }
.cta-strip .btn-secondary { color: var(--cream); border-color: var(--gold); }
.cta-strip .btn-secondary:hover { background: var(--gold); color: var(--ink); }

.site-footer { background: var(--ink); color: rgba(250, 247, 241, 0.7); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h4 { color: var(--gold-light); font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; font-weight: 600; }
.footer-col p, .footer-col li { line-height: 1.75; }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(250, 247, 241, 0.7); }
.footer-col a:hover { color: var(--gold-light); }
.footer-logo-block { margin-bottom: 1rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(250, 247, 241, 0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: rgba(250, 247, 241, 0.5); }

.text-center { text-align: center; } .mt-4 { margin-top: 4rem; }
.menu-category { margin-bottom: 3rem; }
.menu-category-title { border-bottom: 2px solid var(--gold); padding-bottom: 0.75rem; margin-bottom: 1.5rem; }
.menu-items-list { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 700px) { .menu-items-list { grid-template-columns: 1fr 1fr; } }
.menu-item { padding: 1rem 0; border-bottom: 1px dashed var(--line); }
.menu-item strong { color: var(--ink); display: block; margin-bottom: 0.25rem; }
.menu-item .tags { margin-top: 0.35rem; }
.menu-item .tag { display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 3px; background: var(--cream-warm); color: var(--gold-dark); margin-right: 0.35rem; letter-spacing: 0.05em; }

/* Placeholder photo marker */
.ph-note { position: absolute; bottom: 8px; left: 8px; background: rgba(26,26,26,0.72); color: var(--gold-light); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 7px; border-radius: 3px; z-index: 3; pointer-events: none; }



/* Raster logo override */
img.logo-mark { width:auto; height:38px; max-height:38px; object-fit:contain; display:block; }

/* Footer logo - brand seal panel. The logo has a black wordmark so we place it on a
   cream panel with a subtle gold border, giving it the look of an intentional trust seal. */
.footer-logo-block {
  display: inline-block;
  background: linear-gradient(135deg, #faf7f1 0%, #f4eee2 100%);
  padding: 22px 32px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  box-shadow:
    0 18px 40px -14px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-out-quart), box-shadow .5s ease, border-color .5s ease;
}
.footer-logo-block::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transition: left 1s var(--ease-swift);
}
.footer-logo-block:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 75, 0.7);
  box-shadow:
    0 24px 50px -14px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201, 162, 75, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.footer-logo-block:hover::before { left: 140%; }
.footer-logo-block img.logo-mark {
  height: 96px;
  max-height: 96px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

/* FSA Food Hygiene badge */
.hygiene-badge {
  display: block;
  margin-top: 1.5rem;
  max-width: 160px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .4s var(--ease-out-quart), box-shadow .4s ease;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.45);
}
.hygiene-badge img { display: block; width: 100%; height: auto; }
.hygiene-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px -10px rgba(154, 205, 50, 0.4);
}
.hygiene-badge-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(250, 247, 241, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.6rem;
  font-weight: 600;
}

/* Header logo - sized larger for readability of the wordmark */
img.logo-mark { height: 64px; max-height: 64px; width: auto; display: block; }
.site-header .logo { gap: 0; }
.site-header .logo-mark { transition: transform .35s var(--ease-out-quart); }
.site-header .logo:hover .logo-mark { transform: scale(1.03); }
.site-header.scrolled .logo-mark { height: 52px; max-height: 52px; }
@media (max-width: 700px) {
  img.logo-mark { height: 52px; max-height: 52px; }
}

/* ============ MOTION SYSTEM ============ */
:root {
  --ease-out-quart: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-swift: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll reveal - default (fade + rise) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out-quart), transform .9s var(--ease-out-quart); will-change: transform, opacity; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Image pop-in (has a subtle overshoot - the "bounce") */
.img-pop { opacity: 0; transform: scale(0.94); transition: opacity .6s ease-out, transform 1s var(--ease-spring); will-change: transform, opacity; }
.img-pop.in-view { opacity: 1; transform: scale(1); }

/* Text rise - for hero headings */
.text-rise > * { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out-quart), transform .8s var(--ease-out-quart); }
.text-rise.in-view > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .05s; }
.text-rise.in-view > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.text-rise.in-view > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .35s; }
.text-rise.in-view > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .5s; }

/* ============ GRADIENT BUTTONS ============ */
.btn-primary {
  background: linear-gradient(135deg, #e8cf8a 0%, #c9a24b 45%, #a8853a 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--ink);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: background-position .55s var(--ease-swift), transform .3s var(--ease-out-quart), box-shadow .35s ease;
  box-shadow: 0 4px 14px -4px rgba(168, 133, 58, 0.35);
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(201, 162, 75, 0.55);
  color: var(--ink);
}
/* Shine sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-swift);
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid transparent;
  background-image: linear-gradient(var(--cream), var(--cream)), linear-gradient(135deg, #e8cf8a, #c9a24b, #a8853a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform .3s var(--ease-out-quart), box-shadow .35s ease, color .3s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(201, 162, 75, 0.35);
  color: var(--gold-dark);
}
/* Secondary on dark backgrounds (hero, cta-strip) - swap inner colour */
.hero .btn-secondary, .cta-strip .btn-secondary, .testimonials .btn-secondary {
  background-image: linear-gradient(rgba(20,20,20,0.4), rgba(20,20,20,0.4)), linear-gradient(135deg, #e8cf8a, #c9a24b, #a8853a);
  color: var(--cream);
}
.hero .btn-secondary:hover, .cta-strip .btn-secondary:hover { color: var(--gold-light); }

/* ============ HEADER: reactive to scroll ============ */
.site-header.scrolled {
  background: rgba(250, 247, 241, 0.96);
  box-shadow: 0 4px 24px -8px rgba(26, 26, 26, 0.12);
  border-bottom-color: transparent;
}
.site-header.scrolled .header-inner { height: 64px; }
.header-inner { transition: height .35s var(--ease-out-quart); }

/* Nav link underline animation */
.nav a:not(.btn) {
  position: relative;
  padding-bottom: 4px;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out-quart);
}
.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============ HERO parallax & gradient ============ */
.hero { isolation: isolate; }
.hero-image { will-change: transform; transform: translateZ(0); transition: transform .1s linear; }
.hero-image::after {
  background:
    linear-gradient(100deg, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.7) 35%, rgba(20,20,20,0.35) 65%, rgba(20,20,20,0.2) 100%),
    linear-gradient(180deg, rgba(20,20,20,0.15) 0%, transparent 40%, rgba(20,20,20,0.4) 100%);
}
/* Slight zoom on hero image so the food's centre of interest sits nicely under text */
.hero-image { background-size: cover; background-position: center right; }
/* On sub-page heroes, keep the balanced center crop */
.hero-sub .hero-image { background-position: center; }
/* Subtle gold gradient bloom behind hero content */
.hero-content::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(226, 198, 126, 0.14) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ============ AUDIENCE / PACKAGE CARDS: richer hover ============ */
.audience-card, .package-card {
  transition: transform .5s var(--ease-out-quart), box-shadow .5s ease, border-color .3s ease;
}
.audience-card:hover, .package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -18px rgba(26, 26, 26, 0.32);
  border-color: rgba(201, 162, 75, 0.5);
}
.audience-card-image, .package-card-image {
  position: relative;
  overflow: hidden;
}
.audience-card-image::before, .package-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-out-quart);
  z-index: 0;
}
.audience-card:hover .audience-card-image, .package-card:hover .package-card-image {
  transform: scale(1.03);
}
/* Actually cleaner: scale the background image directly by using an inner ::after */
.audience-card-image, .package-card-image {
  transition: transform .8s var(--ease-out-quart);
}
.audience-card:hover .audience-card-image,
.package-card:hover .package-card-image {
  transform: scale(1.04);
}

/* ============ GALLERY: hover zoom + gold overlay ============ */
.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease-out-quart), box-shadow .55s ease;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 162, 75, 0) 0%, rgba(201, 162, 75, 0.35) 100%),
    linear-gradient(180deg, transparent 55%, rgba(26,26,26,0.55) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease-swift);
  z-index: 1;
}
.gallery-item::after {
  content: '↗';
  position: absolute;
  bottom: 12px; right: 14px;
  color: var(--cream);
  font-size: 1.4rem;
  font-family: var(--font-serif);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity .4s var(--ease-swift), transform .5s var(--ease-out-quart);
  z-index: 2;
}
.gallery-item:hover {
  transform: scale(1.035);
  box-shadow: 0 20px 40px -12px rgba(26, 26, 26, 0.35);
  z-index: 3;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { opacity: 1; transform: translate(0, 0); }

/* ============ SPLIT IMAGES: subtle float on hover ============ */
.split-image {
  transition: transform .8s var(--ease-out-quart), box-shadow .5s ease;
}
.split-image:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 30px 60px -20px rgba(26, 26, 26, 0.28);
}

/* ============ TESTIMONIALS ============ */
.testimonial {
  transition: transform .5s var(--ease-out-quart), border-color .4s ease, background .4s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 198, 126, 0.55);
  background: rgba(250, 247, 241, 0.06);
}

/* ============ TRUST BAR: count-up feel via subtle pulse on enter ============ */
.trust-item strong {
  background: linear-gradient(135deg, #e8cf8a, #c9a24b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  transition: transform .4s var(--ease-spring);
}
.trust-item:hover strong { transform: scale(1.08); }

/* ============ POPULAR BADGE pulse ============ */
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(201, 162, 75, 0); }
}
.package-card.popular::before {
  animation: badge-pulse 2.4s ease-in-out infinite;
}

/* ============ FAQ items: smoother open ============ */
.faq-item { transition: box-shadow .3s ease, border-color .3s ease; }
.faq-item:hover { border-color: rgba(201, 162, 75, 0.4); }
.faq-item[open] { box-shadow: 0 8px 24px -12px rgba(26, 26, 26, 0.15); border-color: rgba(201, 162, 75, 0.5); }
.faq-item .faq-answer { animation: faq-slide .35s var(--ease-out-quart); }
@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ FORM fields: gold focus ring ============ */
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.15);
}

/* ============ CTA STRIP with subtle animated gradient ============ */
.cta-strip {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  background-size: 200% 200%;
  animation: cta-drift 12s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
@keyframes cta-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(226, 198, 126, 0.1) 0%, transparent 60%);
  pointer-events: none;
}


  to   { opacity: 1; transform: translateY(0); }


/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .img-pop { opacity: 1 !important; transform: none !important; }
  .text-rise > * { opacity: 1 !important; transform: none !important; }
}


/* ============ FEATURED OFFER CARDS ============ */
.offer-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 75, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.offer-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.offer-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.offer-card {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 14px;
  transition: transform .6s var(--ease-out-quart), box-shadow .6s ease;
  isolation: isolate;
}
/* Animated gold gradient border via ::before */
.offer-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8cf8a 0%, #c9a24b 25%, #a8853a 50%, #c9a24b 75%, #e8cf8a 100%);
  background-size: 300% 300%;
  animation: offer-shimmer 5s ease-in-out infinite;
  z-index: -1;
}
@keyframes offer-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.offer-card-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 30px 60px -18px rgba(26, 26, 26, 0.4);
}

.offer-card:hover {
  transform: translateY(-6px);
}
.offer-card:hover .offer-card-inner {
  box-shadow: 0 40px 80px -20px rgba(26, 26, 26, 0.55);
}

.offer-image {
  width: 100%;
  display: block;
  transition: transform 1s var(--ease-out-quart);
}
.offer-card:hover .offer-image { transform: scale(1.02); }

/* Ribbon in the top-left corner */
.offer-ribbon {
  position: absolute;
  top: 24px;
  left: -8px;
  z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}
.offer-ribbon span {
  display: block;
  background: linear-gradient(135deg, #e8cf8a 0%, #c9a24b 50%, #a8853a 100%);
  color: var(--ink);
  padding: 10px 24px 10px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8px 50%);
  position: relative;
}
.offer-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 8px;
  height: 8px;
  background: #6d5622;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Hover CTA overlay: appears on hover, revealing a button */
.offer-hover-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem;
  background: linear-gradient(0deg, rgba(26,26,26,0.75) 0%, transparent 45%);
  opacity: 0;
  transition: opacity .5s var(--ease-swift);
  pointer-events: none;
}
.offer-card:hover .offer-hover-cta {
  opacity: 1;
  pointer-events: auto;
}
.offer-hover-cta .btn {
  transform: translateY(20px);
  transition: transform .5s var(--ease-out-quart) 0.05s;
}
.offer-card:hover .offer-hover-cta .btn { transform: translateY(0); }

/* Always-visible small CTA below the card on touch/mobile devices */
@media (hover: none) {
  .offer-hover-cta {
    opacity: 1;
    position: static;
    padding: 1.5rem;
    background: transparent;
  }
  .offer-hover-cta .btn { transform: none; }
}

.offer-caption {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.offer-caption strong { color: var(--gold-dark); }


/* ============ HAMBURGER BUTTON ============ */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 210;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease-out-quart), opacity .3s ease, background .3s ease;
  transform-origin: center;
}
.menu-toggle span:nth-child(2) { width: 75%; margin-left: auto; }

/* Open state: three lines morph into an X */
body.menu-open .menu-toggle span { background: var(--cream); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Hide hamburger on desktop, show on mobile */
@media (min-width: 900px) { .menu-toggle { display: none; } }
/* Also hide the header CTA button on mobile — it moves into the menu */
@media (max-width: 899px) {
  .site-header .nav .btn { display: none; }
}

/* ============ MOBILE MENU OVERLAY ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #141414 0%, #1f1a12 55%, #2c2410 100%);
  opacity: 0;
  transition: opacity .5s var(--ease-out-quart);
}
.mobile-menu-bg::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 80%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 75, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.mobile-menu-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem 3rem;
  overflow-y: auto;
}
.mm-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .5s var(--ease-out-quart), transform .5s var(--ease-out-quart), color .3s ease, border-color .3s ease;
}
.mm-link:hover, .mm-link:focus {
  color: var(--gold-light);
  border-bottom-color: rgba(201, 162, 75, 0.5);
}
.mm-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  min-width: 2rem;
}
.mm-cta {
  background: linear-gradient(135deg, #e8cf8a 0%, #c9a24b 50%, #a8853a 100%);
  color: var(--ink) !important;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-bottom: none;
  box-shadow: 0 10px 28px -10px rgba(201, 162, 75, 0.5);
}
.mm-cta .mm-num { color: rgba(20,20,20,0.55); }
.mm-cta:hover, .mm-cta:focus {
  color: var(--ink) !important;
  transform: translateX(0) translateY(-2px);
}

.mm-foot {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out-quart) .35s, transform .6s var(--ease-out-quart) .35s;
}
.mm-foot a {
  color: rgba(250, 247, 241, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color .3s ease;
}
.mm-foot a:hover { color: var(--gold-light); }

/* Open state */
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu {
  visibility: visible;
  pointer-events: auto;
  aria-hidden: false;
}
body.menu-open .mobile-menu-bg { opacity: 1; }
body.menu-open .mm-link {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger the link reveal */
body.menu-open .mm-link:nth-child(1) { transition-delay: .08s; }
body.menu-open .mm-link:nth-child(2) { transition-delay: .14s; }
body.menu-open .mm-link:nth-child(3) { transition-delay: .20s; }
body.menu-open .mm-link:nth-child(4) { transition-delay: .26s; }
body.menu-open .mm-link:nth-child(5) { transition-delay: .32s; }
body.menu-open .mm-link:nth-child(6) { transition-delay: .38s; }
body.menu-open .mm-foot { opacity: 1; transform: translateY(0); }

/* Ensure the header stays above the overlay so the X is clickable */
body.menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  z-index: 210;
}
body.menu-open .site-header .logo,
body.menu-open .site-header .nav a:not(.menu-toggle) { pointer-events: none; }
/* Logo needs to stay visible but the wordmark is black — on the dark overlay we invert-hide it */
body.menu-open .site-header .logo-mark { opacity: 0; transition: opacity .3s ease; }

/* ============ MOBILE HERO FIXES ============ */
@media (max-width: 700px) {
  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero-content {
    padding: 5rem 0 3rem;
    max-width: 100%;
  }
  .hero-content .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-wrap: balance;
    max-width: 15ch;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
    max-width: 34ch;
    text-wrap: pretty;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  /* Sub-page heroes: proportionally tighter */
  .hero-sub { min-height: auto; padding-bottom: 2rem; }
  .hero-sub .hero-content { padding: 4.5rem 0 2.5rem; }
  .hero-sub .hero-content h1 { font-size: 1.85rem; max-width: 20ch; }
  .hero-sub .hero-content p { font-size: 0.95rem; max-width: 36ch; }
}

/* Extra-narrow phones */
@media (max-width: 380px) {
  .wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-content h1 { font-size: 1.95rem; }
  .hero-content p { font-size: 0.95rem; }
}


/* ============ NAV DROPDOWN ============ */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer;
  color: var(--ink); font-size: 0.9rem; font-weight: 500;
  padding-bottom: 4px;
  position: relative;
}
.nav-dropdown-trigger.active { color: var(--gold-dark); }
.nav-arrow {
  font-size: 0.7rem;
  transition: transform .35s var(--ease-out-quart);
  display: inline-block;
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown:focus-within .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 340px;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 60px -18px rgba(26,26,26,0.25), 0 0 0 1px rgba(201,162,75,0.12);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-out-quart), transform .35s var(--ease-out-quart), visibility 0s .35s;
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .35s var(--ease-out-quart), transform .35s var(--ease-out-quart), visibility 0s;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: rgba(255, 253, 248, 0.98);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  color: var(--ink);
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(201, 162, 75, 0.08);
  transform: translateX(3px);
}
.nav-dropdown-menu a.active {
  background: rgba(201, 162, 75, 0.12);
}
.nav-dropdown-menu .dd-title {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.nav-dropdown-menu .dd-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

/* Hide desktop dropdown on mobile — the mobile menu handles it there */
@media (max-width: 899px) {
  .nav-dropdown { display: none; }
}

/* ============ MOBILE MENU — Services sub-list ============ */
.mm-services {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .5s var(--ease-out-quart), transform .5s var(--ease-out-quart);
}
body.menu-open .mm-services { opacity: 1; transform: translateX(0); transition-delay: .14s; }

.mm-services-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.mm-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 3rem;
  padding-top: 0.4rem;
}
.mm-sub {
  color: rgba(250, 247, 241, 0.72);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0.4rem 0;
  cursor: pointer;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  margin-left: -0.75rem;
}
.mm-sub:hover, .mm-sub:focus {
  color: var(--gold-light);
  border-left-color: var(--gold);
  transform: translateX(3px);
}

/* Recalibrate mm-link staggered delays now that mm-services is child 2 */
body.menu-open .mm-link:nth-child(1) { transition-delay: .08s; }
body.menu-open .mm-link:nth-child(3) { transition-delay: .20s; }
body.menu-open .mm-link:nth-child(4) { transition-delay: .26s; }
body.menu-open .mm-link:nth-child(5) { transition-delay: .32s; }
body.menu-open .mm-link:nth-child(6) { transition-delay: .38s; }

/* ============ HERO — allow multi-line eyebrow to breathe ============ */
.hero-content .eyebrow { text-wrap: balance; }


/* ============ COMING SOON GATE ============ */

/* Hide site chrome while gate is active (belt-and-braces on top of overflow lock) */
body.gated { overflow: hidden; }

/* Pre-check: if visitor already unlocked, don't render the gate at all */
html.gate-passed .site-gate { display: none !important; }

.site-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #141414 0%, #1f1a12 50%, #2c2410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  animation: gate-fade-in .8s var(--ease-out-quart);
}
@keyframes gate-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Gold radial bloom top-right */
.site-gate::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 90%; height: 130%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 75, 0.16) 0%, transparent 55%);
  pointer-events: none;
}
/* Softer bloom bottom-left */
.site-gate::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -20%;
  width: 80%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 75, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.gate-inner {
  position: relative;
  max-width: 540px;
  width: 100%;
  text-align: center;
  color: var(--cream);
  z-index: 1;
  animation: gate-rise .9s var(--ease-out-quart) .1s both;
}
@keyframes gate-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo — sits on cream panel (same treatment as footer) so the black wordmark is legible */
.gate-logo {
  height: 96px;
  width: auto;
  background: linear-gradient(135deg, #faf7f1 0%, #f4eee2 100%);
  padding: 20px 32px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.7);
  margin: 0 auto 2.5rem;
  display: block;
}

.gate-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding: 7px 16px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 100px;
  background: rgba(201, 162, 75, 0.06);
}

.gate-inner h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.gate-sub {
  font-size: 1.05rem;
  color: rgba(250, 247, 241, 0.72);
  margin: 0 auto 2.5rem;
  max-width: 42ch;
  line-height: 1.55;
  text-wrap: pretty;
}

/* PIN input — 4 individual digit boxes */
.gate-pin {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.gate-pin input {
  width: 64px;
  height: 76px;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  text-align: center;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(201, 162, 75, 0.32);
  border-radius: 10px;
  transition: border-color .3s var(--ease-out-quart), background .3s ease, transform .25s var(--ease-out-quart), box-shadow .3s ease;
  outline: none;
  caret-color: var(--gold);
}
.gate-pin input:focus {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.1);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
  transform: translateY(-2px);
}
.gate-pin input:not(:placeholder-shown):valid,
.gate-pin input:not([value=""]) {
  border-color: var(--gold-light);
  background: rgba(201, 162, 75, 0.12);
}

/* Shake animation for wrong code */
@keyframes gate-shake {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-10px); }
  30%, 60%, 90% { transform: translateX(10px); }
}
.gate-pin.shake { animation: gate-shake .55s ease-in-out; }
.gate-pin.shake input {
  border-color: #d97a6c;
  background: rgba(217, 122, 108, 0.1);
}

.gate-error {
  color: #ffa89a;
  font-size: 0.88rem;
  margin: 0 0 1.25rem;
  min-height: 1.2em;
  opacity: 0;
  transition: opacity .35s ease;
}
.gate-form.error .gate-error { opacity: 1; }

.gate-submit {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  justify-content: center;
  display: inline-flex;
}

.gate-foot {
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(250, 247, 241, 0.45);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Unlock animation */
.site-gate.unlocked {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s var(--ease-out-quart), transform .8s var(--ease-out-quart);
  pointer-events: none;
}

/* Mobile */
@media (max-width: 480px) {
  .site-gate { padding: 1.5rem; }
  .gate-logo { height: 76px; padding: 16px 26px; margin-bottom: 2rem; }
  .gate-pin input {
    width: 56px;
    height: 68px;
    font-size: 1.7rem;
  }
  .gate-pin { gap: 0.6rem; }
  .gate-inner h1 { font-size: 1.85rem; }
  .gate-sub { font-size: 0.98rem; margin-bottom: 2rem; }
  .gate-foot { margin-top: 2rem; }
}
@media (max-width: 360px) {
  .gate-pin input { width: 48px; height: 60px; font-size: 1.4rem; }
  .gate-pin { gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .site-gate, .gate-inner { animation: none !important; }
  .gate-pin.shake { animation: none !important; }
}

/* ============ TESTIMONIAL AVATARS ============ */
img.testimonial-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(226, 198, 126, 0.45);
  box-shadow: 0 12px 24px -8px rgba(201, 162, 75, 0.4);
  transition: transform .4s var(--ease-spring), box-shadow .4s ease;
  background: #2c2c2c;
}
.testimonial:hover img.testimonial-avatar {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(201, 162, 75, 0.55);
}
.testimonial:hover .testimonial-avatar {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(201, 162, 75, 0.55);
}
.testimonial-avatar::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  pointer-events: none;
}
.testimonial { text-align: center; }
.testimonial blockquote { text-align: center; }
.testimonial cite { display: block; margin-top: 1rem; }

/* ============ PAGE TRANSITION (real page loads now) ============ */
body { animation: body-in .5s var(--ease-out-quart); }
@keyframes body-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ MOBILE EDGE-TO-EDGE FIX ============ */
@media (max-width: 700px) {
  /* Ensure all text content has breathing room from screen edges */
  .wrap {
    padding-left: max(1.5rem, env(safe-area-inset-left, 1.5rem)) !important;
    padding-right: max(1.5rem, env(safe-area-inset-right, 1.5rem)) !important;
  }
  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }
  /* Section heads on mobile — ensure left-aligned text has breathing room */
  .split-content h2,
  .section-head h2 {
    text-align: left;
    text-wrap: balance;
  }
  .section-head {
    text-align: left;
  }
  .section-head p {
    text-align: left;
  }
  /* Gallery filters left-align on mobile */
  .gallery-filters {
    justify-content: flex-start;
  }
}

/* ============ MOBILE: CTA STRIP + FOOTER SPACING & CENTERING ============ */
@media (max-width: 700px) {
  /* CTA strip: center everything, constrain button widths */
  .cta-strip {
    padding: clamp(3rem, 8vw, 5rem) 0;
    text-align: center;
  }
  .cta-strip .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-strip h2 {
    text-align: center;
    font-size: clamp(1.65rem, 5vw, 2.25rem);
    text-wrap: balance;
  }
  .cta-strip p {
    text-align: center;
    max-width: 38ch;
  }
  .cta-strip .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-strip .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  /* Footer: center-align on mobile, proper spacing */
  .site-footer {
    text-align: center;
    padding: 3rem 0 2rem;
  }
  .site-footer .wrap {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .footer-grid {
    gap: 2.5rem;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-col ul {
    padding: 0;
    text-align: center;
  }
  .footer-col p {
    text-align: center;
    max-width: 36ch;
  }
  .footer-logo-block {
    margin-left: auto;
    margin-right: auto;
  }
  .hygiene-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hygiene-badge-label {
    text-align: center;
    display: block;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
}

/* ============ AGENCY CREDIT ============ */
.footer-legal { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-credit { white-space: nowrap; }
.agency-credit {
  background: linear-gradient(90deg, #DD7F63, #D9BC7A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  border-bottom: 1px solid #D9A56E;
  text-decoration: none;
  transition: filter .25s ease;
}
.agency-credit:hover { filter: brightness(1.2); }
@media (max-width: 700px) {
  .footer-legal { align-items: center; }
  .footer-credit { margin-top: 0.75rem; }
}
