/* =========================
EVER AFTER PICNICS
CLEAN CONSOLIDATED STYLES
========================= */

:root {
  --beige: #D6C2B4;
  --caramel: #C79E7F;
  --off-white: #f2ece3;
  --sage: #7E9287;
  --ink: #302A26;
  --soft-ink: rgba(48, 42, 38, 0.72);
  --glass: rgba(244, 241, 236, 0.76);
  --line: rgba(199, 158, 127, 0.34);
  --white-glass: rgba(255, 255, 255, 0.08);
  --white-border: rgba(255, 255, 255, 0.38);
  --shadow: 0 24px 70px rgba(48, 42, 38, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(126,146,135,.75) rgba(214,194,180,.25); }
body { width: 100%; max-width: 100%; overflow-x: hidden; background: var(--off-white); color: var(--ink); font-family: var(--sans); line-height: 1.7; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
main, section, .container { min-width: 0; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 150px) 0; }
.eyebrow { color: rgb(123,120,120); font-size: .73rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
h2 { color: var(--sage); font-size: clamp(2.5rem, 5vw, 5.2rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { color: var(--soft-ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(242,236,227,.96); }
::-webkit-scrollbar-thumb { background: rgba(126,146,135,.78); border: 3px solid rgba(242,236,227,.96); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(126,146,135,.95); }

/* =========================
BUTTONS + ANIMATIONS
========================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  overflow: hidden;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: var(--off-white); background: linear-gradient(135deg, var(--sage), var(--beige)); box-shadow: 0 20px 42px rgba(126,146,135,.22); }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-130%);
  transition: transform .8s var(--ease);
}
.btn-primary:hover::before { transform: translateX(130%); }
.btn-glass { color: var(--off-white); border: 1px solid var(--white-border); background: var(--white-glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

.reveal-on-scroll, .reveal-left, .reveal-right {
  opacity: 0;
  filter: blur(14px);
  will-change: opacity, transform, filter;
  transition: opacity 1.05s var(--ease), filter 1.05s var(--ease), transform 1.05s var(--ease);
}
.reveal-on-scroll { transform: translateY(34px); }
.reveal-left { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }
.reveal-on-scroll.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; filter: blur(0); transform: translate(0); }

@keyframes softAppear { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes revealUp { to { opacity: 1; filter: blur(0); transform: translateY(var(--final-y)); } }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
@keyframes heroButtonAppear { to { opacity: 1; filter: blur(0); transform: translateY(0); } }

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

/* =========================
HEADER + NAV
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 70px);
  transition: transform .65s var(--ease), background .55s ease, backdrop-filter .55s ease, box-shadow .55s ease, padding .55s ease;
}
.site-header.is-hidden { transform: translateY(-115%); }
.site-header.has-bg {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(242,236,227,.34);
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 48px rgba(48,42,38,.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-8px);
  animation: softAppear .95s var(--ease) .65s forwards;
}
.logo-main { height: 65px; width: auto; }
.logo-text { height: 50px; width: auto; }
.site-header.has-bg .logo-text,
body.menu-open .logo-text,
.about-header .logo-text,
.about-header.has-bg .logo-text,
body.menu-open .about-header .logo-text,
.contact-header .logo-text,
.contact-header.has-bg .logo-text,
body.menu-open .contact-header .logo-text,
.legal-header .logo-text,
.legal-header.has-bg .logo-text,
body.menu-open .legal-header .logo-text,
.package-header.has-bg .logo-text,
body.menu-open .package-header .logo-text { content: url("assets/brand2.png"); }

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); }
.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(255,255,255,.92);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-8px);
  animation: softAppear .85s var(--ease) forwards;
  transition: color .35s ease;
}
.desktop-nav > .nav-link:nth-child(1) { animation-delay: .95s; }
.desktop-nav > .nav-dropdown:nth-child(2) .nav-link { animation-delay: 1.12s; }
.desktop-nav > .nav-link:nth-child(3) { animation-delay: 1.29s; }
.desktop-nav > .nav-link:nth-child(4) { animation-delay: 1.46s; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .42s var(--ease);
}
.site-header.has-bg .nav-link,
.about-header .nav-link,
.contact-header .nav-link,
.legal-header .nav-link {
  color: rgba(48,42,38,.78);
}

/* Highlight and underline navigation links on hover */
.nav-link:hover,
.nav-link.active,
.site-header.has-bg .nav-link:hover,
.site-header.has-bg .nav-link.active,
.about-header .nav-link:hover,
.about-header .nav-link.active,
.contact-header .nav-link:hover,
.contact-header .nav-link.active,
.legal-header .nav-link:hover,
.legal-header .nav-link.active {
  color: var(--sage);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(214,194,180,.54);
  border-radius: 24px;
  background: rgba(244,241,236,.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .35s ease, transform .45s var(--ease);
}
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 4px); }
.dropdown-panel a { display: block; padding: 11px 14px; border-radius: 16px; color: var(--soft-ink); font-size: .87rem; transition: background .3s ease, color .3s ease; }
.dropdown-panel a:hover { color: var(--sage); background: rgba(214,194,180,.32); }
/* Active package item inside desktop dropdown */
.dropdown-panel a.active,
.dropdown-panel a[aria-current="page"] {
  color: var(--sage);
  background: rgba(126,146,135,.12);
  font-weight: 800;
}
.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-8px);
  animation: softAppear .85s var(--ease) .85s forwards;
}
.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,.92);
  transition: top .42s var(--ease), transform .42s var(--ease), opacity .25s ease, background .3s ease;
}
.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 24px; width: 15px; }
.menu-toggle span:nth-child(3) { top: 30px; }
.site-header.has-bg .menu-toggle, .about-header .menu-toggle, .contact-header .menu-toggle, .legal-header .menu-toggle { border-color: rgba(214,194,180,.5); background: rgba(244,241,236,.76); }
.site-header.has-bg .menu-toggle span, .about-header .menu-toggle span, .contact-header .menu-toggle span, .legal-header .menu-toggle span { background: var(--ink); }
.menu-toggle.is-open span:nth-child(1) { top: 24px; transform: rotate(42deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 24px; transform: rotate(-42deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 45; opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(48,42,38,.26); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.mobile-menu__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(86vw, 390px);
  padding: 108px 28px 34px;
  border-right: 1px solid rgba(214,194,180,.55);
  background: rgba(244,241,236,.86);
  box-shadow: 22px 0 70px rgba(48,42,38,.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateX(-100%);
  transition: transform .72s var(--ease);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__links { display: grid; gap: 8px; margin-top: 24px; }
.mobile-menu__links > a, .mobile-menu__links > p { padding: 10px 0; color: var(--ink); font-family: var(--serif); font-size: 1.55rem; line-height: 1.1; }
.mobile-menu__links a.active, .mobile-menu__links a[aria-current="page"], .mobile-menu__links p.active-parent { color: var(--sage); font-weight: 700; }
.mobile-sub-links { display: grid; gap: 8px; margin: 0 0 10px 14px; padding-left: 18px; border-left: 1px solid rgba(199,158,127,.45); }
.mobile-sub-links a { color: var(--soft-ink); font-size: .95rem; }
.mobile-sub-links a.active, .mobile-sub-links a[aria-current="page"] { color: var(--sage); font-weight: 700; background: rgba(214,194,180,.22); border-radius: 999px; padding: 10px 14px; margin-left: -14px; }
.mobile-menu-tagline { display: block; margin-top: -35px; color: rgb(123,120,120); white-space: nowrap; }

/* =========================
HOME: HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 175px clamp(22px, 6vw, 94px) 80px;
  color: var(--off-white);
}
.hero-slider, .hero-slide, .hero-slide img, .hero-overlay { position: absolute; inset: 0; }
.hero-slider { z-index: -3; }
.hero-slide { opacity: 0; filter: blur(18px); transform: scale(1.05); transition: opacity 2.1s ease, filter 2.1s ease; }
.hero-slide.is-active { opacity: 1; filter: blur(0); animation: heroZoom 7s linear forwards; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.92) saturate(.92) contrast(.96); }
.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20,18,16,.58), rgba(20,18,16,.42) 34%, rgba(20,18,16,.18) 62%, rgba(20,18,16,.08)),
    linear-gradient(180deg, rgba(20,18,16,.32), rgba(20,18,16,.08) 42%, rgba(20,18,16,.22));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 190px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,18,16,.62), rgba(20,18,16,.34) 45%, rgba(20,18,16,0));
}
.hero-content { width: min(760px, 100%); }
.hero .eyebrow { color: rgba(244,241,236,.78); }
.hero h1, .hero .eyebrow, .hero-subtitle, .hero-copy { position: relative; top: -60px; text-shadow: 0 4px 24px rgba(0,0,0,.38); }
.hero h1 { max-width: 740px; margin-top: 18px; color: var(--off-white); font-size: clamp(2.4rem, 5vw, 4.45rem); line-height: .94; letter-spacing: -.055em; }
.hero-copy { max-width: 600px; margin-top: 32px; color: rgba(244,241,236,.82); font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: -16px; transform: translateY(-28px); }
.hero-actions .btn { transform: translateY(12px); }
.reveal-hero {
  --final-y: 0px;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(calc(var(--final-y) + 24px));
  animation: revealUp .95s var(--ease) forwards;
}
.reveal-hero:nth-child(1) { animation-delay: 1.8s; }
.reveal-hero:nth-child(2) { animation-delay: 2.02s; }
.reveal-hero:nth-child(3) { animation-delay: 2.24s; }
.reveal-hero:nth-child(4) { animation-delay: 2.46s; }
.reveal-hero-buttons { opacity: 0; filter: blur(14px); transform: translateY(24px); animation: revealUp .7s var(--ease) 2.8s forwards; }
.reveal-hero-buttons .btn { opacity: 0; filter: blur(10px); transform: translateY(18px); animation: heroButtonAppear .6s var(--ease) forwards; }
.reveal-hero-buttons .btn:nth-child(1) { animation-delay: 2.9s; }
.reveal-hero-buttons .btn:nth-child(2) { animation-delay: 3.05s; }
.hero-location, .mobile-location { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.hero-location { width: fit-content; color: rgba(244,241,236,.78); letter-spacing: .22em; opacity: .9; transition: color .35s ease; }
.hero-location-icon, .mobile-location-icon { flex-shrink: 0; width: 14px; height: 14px; fill: currentColor; transition: transform .35s var(--ease); }
.hero-location:hover, .hero-location:focus, .mobile-location:hover, .mobile-location:focus { color: rgb(165,147,117); }
.hero-location:hover .hero-location-icon, .mobile-location:hover .mobile-location-icon { transform: translateY(-1px); }

/* =========================
HOME: SHARED BACKGROUND + HEADINGS
========================= */

.home-soft-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
 background: linear-gradient(
  135deg,
  rgba(244,241,236,.98),
  rgba(244,241,236,.92) 38%,
  rgba(214,194,180,.26)
);
}

.home-soft-bg::before { right: -210px; top: -90px; width: 620px; height: 620px; border: 1px solid rgba(199,158,127,.24); background: rgba(255,255,255,.14); }
.home-soft-bg::after { left: -220px; top: 520px; width: 640px; height: 640px; background: rgba(126,146,135,.10); }
.home-soft-bg .intro, .home-soft-bg .locations-section, .home-soft-bg .packages, .home-soft-bg .faq, .home-soft-bg .cta-section, .home-soft-bg .testimonials { background: transparent; }
.home-soft-bg .section { padding-top: clamp(86px, 9vw, 138px); padding-bottom: clamp(86px, 9vw, 138px); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2 { margin-top: 16px; }
.section-heading p:not(.eyebrow) { margin-top: 22px; max-width: 680px; }
.section-heading-centred { max-width: 820px; margin-inline: auto; text-align: center; }
.section-heading-centred p:not(.eyebrow) { max-width: 620px; margin: 22px auto 0; color: rgba(48,42,38,.68); }
.section-heading-centred::after { content: ""; display: block; width: 74px; height: 1px; margin: 28px auto 0; background: linear-gradient(90deg, transparent, rgba(199,158,127,.58), transparent); }

/* =========================
HOME: EXPERIENCE INTRO
========================= */

.experience-intro { position: relative; overflow: hidden; }
.experience-intro-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(38px, 7vw, 90px); align-items: center; }
.experience-intro-copy { max-width: 580px; }
.experience-intro-copy h2 { margin-top: 16px; font-size: clamp(2.65rem, 5vw, 5.6rem); line-height: .98; }
.experience-intro-copy p:not(.eyebrow) { max-width: 520px; margin-top: 22px; color: rgba(48,42,38,.72); font-size: clamp(.98rem, 1.08vw, 1.08rem); line-height: 1.78; }
.intro-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 12px 22px;
  overflow: hidden;
  border: 1px solid rgba(126,146,135,.34);
  border-radius: 999px;
  color: var(--sage);
  background: rgba(244,241,236,.72);
  box-shadow: 0 14px 38px rgba(48,42,38,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .55s var(--ease), background .55s ease, border-color .55s ease, box-shadow .55s ease, color .55s ease;
}
.intro-about-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translateX(-140%);
  transition: transform .9s var(--ease);
  pointer-events: none;
}
.intro-about-btn:hover { color: var(--off-white); background: var(--sage); border-color: rgba(126,146,135,.58); transform: translateY(-3px) scale(1.015); }
.intro-about-btn:hover::before { transform: translateX(140%); }

.experience-intro-card {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(214,194,180,.52);
  border-radius: 44px;
  background: radial-gradient(circle at 100% 0%, rgba(199,158,127,.16), transparent 34%), rgba(244,241,236,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform-style: preserve-3d;
}
.experience-intro-card::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.42); border-radius: 34px; pointer-events: none; }
.experience-card-main, .experience-mini-grid article, .location-card, .package-card, .testimonial-card, .faq-item, .cta-card {
  transition: transform .65s var(--ease), box-shadow .65s ease, border-color .65s ease, background .65s ease;
}
.experience-card-main {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: clamp(30px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(126,146,135,.92), rgba(214,194,180,.72));
  box-shadow: 0 18px 52px rgba(48,42,38,.12);
}
.experience-card-main:hover, .experience-mini-grid article:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(48,42,38,.13); }
.experience-card-main span, .experience-mini-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.experience-card-main span { color: rgba(244,241,236,.86); border: 1px solid rgba(244,241,236,.28); background: rgba(255,255,255,.10); }
.experience-card-main h3 { max-width: 420px; color: var(--off-white); font-size: clamp(2rem, 3vw, 3.4rem); line-height: 1; }
.experience-card-main p { max-width: 460px; margin-top: 16px; color: rgba(244,241,236,.84); font-size: .96rem; line-height: 1.7; }
.experience-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.experience-mini-grid article { padding: 26px 24px; border: 1px solid rgba(214,194,180,.52); border-radius: 28px; background: rgba(255,255,255,.24); box-shadow: 0 14px 38px rgba(48,42,38,.06); }
.experience-mini-grid article:hover { border-color: rgba(126,146,135,.34); background: rgba(255,255,255,.32); }
.experience-mini-grid span { color: var(--sage); background: rgba(126,146,135,.12); }
.experience-mini-grid h3 { color: var(--ink); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.05; }
.experience-mini-grid p { margin-top: 12px; color: rgba(48,42,38,.68); font-size: .9rem; line-height: 1.65; }

/* =========================
HOME: LOCATIONS
========================= */

.locations-section { position: relative; overflow: hidden; }
.locations-grid { display: grid; grid-template-columns:  repeat(3, 1fr); gap: 20px; align-items: stretch; }
.location-card {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(214,194,180,.48);
  border-radius: 36px;
  background: var(--beige);
  box-shadow: var(--shadow);
}
.location-card::before { content: ""; position: absolute; inset: 18px; z-index: -1; border: 1px solid rgba(244,241,236,.24); border-radius: 26px; opacity: 0; pointer-events: none; transition: opacity .65s ease; }
.location-card::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(48,42,38,.04), rgba(48,42,38,.28) 48%, rgba(48,42,38,.78)); transition: background .65s ease; }
.location-card img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease), filter 1.2s ease; }
.location-card:hover { transform: translateY(-6px); box-shadow: 0 28px 76px rgba(48,42,38,.18); }
.location-card:hover::before { opacity: 1; }
.location-card:hover::after { background: linear-gradient(180deg, rgba(48,42,38,.12), rgba(48,42,38,.36) 48%, rgba(48,42,38,.84)); }
.location-card:hover img { transform: scale(1.08); filter: saturate(.9) contrast(.96); }
.location-card-content { position: absolute; inset: auto 0 0 0; padding: clamp(28px, 3vw, 38px); color: var(--off-white); }
.location-label { display: inline-flex; margin-bottom: 14px; padding: 7px 12px; border: 1px solid rgba(244,241,236,.28); border-radius: 999px; color: rgba(244,241,236,.82); background: rgba(255,255,255,.10); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.location-card h3 { margin-bottom: 14px; color: var(--off-white); font-size: clamp(2rem, 3vw, 3.1rem); }
.location-card p { max-width: 390px; color: rgba(244,241,236,.82); font-size: .96rem; }
.locations-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid rgba(214,194,180,.54);
  border-radius: 30px;
  background: radial-gradient(circle at 0% 0%, rgba(126,146,135,.10), transparent 34%), rgba(244,241,236,.78);
  box-shadow: 0 18px 56px rgba(48,42,38,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.locations-note p { max-width: 760px; font-size: .92rem; }

/* =========================
HOME: PACKAGES
========================= */

.packages { position: relative; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.package-card {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(214,194,180,.42);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.package-card::before { content: ""; position: absolute; inset: 18px; z-index: -1; border: 1px solid rgba(244,241,236,.28); border-radius: 26px; opacity: 0; pointer-events: none; transition: opacity .65s ease; }
.package-card::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(48,42,38,.04), rgba(48,42,38,.18) 42%, rgba(48,42,38,.82)); transition: background .6s ease; }
.package-card img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter 1.2s ease; }
.package-card div { position: absolute; inset: auto 0 0 0; padding: clamp(30px, 3vw, 42px); color: var(--off-white); }
.package-card p, .package-card span { color: rgba(244,241,236,.82); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.package-card h3 { margin: 10px 0 18px; color: var(--off-white); font-size: clamp(2rem, 3vw, 3.1rem); }
.package-card span { position: relative; display: inline-flex; width: fit-content; margin-top: 2px; }
.package-card span::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: rgba(244,241,236,.72); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.package-card:hover { transform: translateY(-7px); box-shadow: 0 30px 82px rgba(48,42,38,.20); }
.package-card:hover::before { opacity: 1; }
.package-card:hover img { transform: scale(1.07); filter: saturate(.9) contrast(.98); }
.package-card:hover span::after { transform: scaleX(1); transform-origin: left; }
.package-card-featured { transform: translateY(-18px); }
.package-card-featured:hover { transform: translateY(-25px); }

/* =========================
HOME: TESTIMONIALS + FAQ + CTA
========================= */

.feeling-section { position: relative; }
.feeling-section .container { position: relative; z-index: 1; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid rgba(214,194,180,.52);
  border-radius: 34px;
  background: radial-gradient(circle at 100% 0%, rgba(199,158,127,.14), transparent 34%), rgba(244,241,236,.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.testimonial-card::before { content: "“"; position: absolute; right: 26px; top: 6px; color: rgba(126,146,135,.12); font-family: var(--serif); font-size: 8rem; line-height: 1; }
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(126,146,135,.32); box-shadow: 0 24px 70px rgba(48,42,38,.13); }
.testimonial-card-featured { background: radial-gradient(circle at 100% 0%, rgba(244,241,236,.18), transparent 34%), linear-gradient(135deg, rgba(126,146,135,.16), rgba(214,194,180,.30)); }
.testimonial-card p { color: var(--ink); font-family: var(--serif); font-size: 1.45rem; line-height: 1.35; }
.testimonial-card span { display: block; margin-top: 24px; color: var(--caramel); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.faq { position: relative; }
.faq-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(34px, 6vw, 88px); align-items: start; }
.faq .section-heading p:not(.eyebrow) { max-width: 520px; }
.accordion { display: grid; gap: 12px; }
.faq-item {
  overflow: hidden;
  border: 1px solid rgba(214,194,180,.55);
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0%, rgba(199,158,127,.10), transparent 34%), rgba(244,241,236,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.faq-item:hover { transform: translateY(-3px); border-color: rgba(126,146,135,.30); box-shadow: 0 18px 52px rgba(48,42,38,.08); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 24px; padding: 24px; text-align: left; color: var(--ink); font-family: var(--serif); font-size: 1.25rem; }
.faq-question span { position: relative; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 5px; }
.faq-question span::before, .faq-question span::after { content: ""; position: absolute; top: 50%; left: 0; width: 18px; height: 1px; background: var(--sage); transition: transform .35s var(--ease); }
.faq-question span::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] span::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.faq-answer p { padding: 0 24px 24px; color: rgba(48,42,38,.68); }

.cta-section { position: relative; padding-bottom: clamp(96px, 10vw, 150px); }
.cta-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 590px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(214,194,180,.52);
  border-radius: 46px;
  box-shadow: 0 24px 70px rgba(48,42,38,.12), inset 0 1px 0 rgba(255,255,255,.18);
}
.cta-card:hover { box-shadow: 0 30px 82px rgba(48,42,38,.16), inset 0 1px 0 rgba(255,255,255,.22); }
.cta-image { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.78) saturate(.88) contrast(.95); transition: transform 1.2s var(--ease), filter 1.2s ease; }
.cta-card:hover .cta-image { transform: scale(1.035); }
.cta-card::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(244,241,236,.92), rgba(244,241,236,.82) 36%, rgba(244,241,236,.48) 64%, rgba(244,241,236,.22)), linear-gradient(180deg, rgba(48,42,38,.12), rgba(48,42,38,.04) 44%, rgba(48,42,38,.18)); }
.cta-content {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(214,194,180,.44);
  border-radius: 34px;
  background: rgba(244,241,236,.78);
  box-shadow: 0 18px 54px rgba(48,42,38,.12), inset 0 1px 0 rgba(255,255,255,.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: left;
}
.cta-content .eyebrow { color: var(--caramel); }
.cta-card h2 { margin-top: 14px; color: var(--sage); font-size: clamp(3rem, 6vw, 6.4rem); line-height: .92; }
.cta-card p:not(.eyebrow) { max-width: 500px; margin: 24px 0 30px; color: rgba(48,42,38,.76); font-size: clamp(.98rem, 1.15vw, 1.08rem); line-height: 1.75; }
.cta-card .btn { width: fit-content; }

/* =========================
PACKAGE PAGES
========================= */

.package-hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--off-white);
}
.package-hero-bg, .package-hero-bg img, .package-hero-overlay { position: absolute; inset: 0; }
.package-hero-bg { z-index: -3; }
.package-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.7) saturate(.9) contrast(.96); animation: heroZoom 7s linear forwards; }
.package-hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(20,18,16,.72), rgba(20,18,16,.48) 36%, rgba(20,18,16,.16) 70%, rgba(20,18,16,.04)), linear-gradient(180deg, rgba(20,18,16,.62), rgba(20,18,16,.08) 45%, rgba(20,18,16,.34)); }
.package-hero-inner { position: relative; z-index: 2; padding-top: 92px; }
.package-hero h1 { max-width: 760px; margin-top: 18px; color: var(--off-white); font-size: clamp(2.45rem, 5.4vw, 5.4rem); text-shadow: 0 6px 34px rgba(0,0,0,.42); }
.package-hero-copy { max-width: 560px; margin-top: 28px; color: rgba(244,241,236,.86); font-size: clamp(1rem, 1.2vw, 1.12rem); text-shadow: 0 4px 24px rgba(0,0,0,.34); }
.package-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.package-intro-grid, .booking-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 7vw, 90px); align-items: center; }
.booking-layout { grid-template-columns: .82fr 1.18fr; align-items: start; }
.package-intro-copy p, .booking-copy p { max-width: 620px; margin-top: 18px; }
.booking-copy { position: sticky; top: 120px; }
.price-card, .package-included-card, .booking-mini-card, .booking-form, .addon-preview-card, .selected-package {
  border: 1px solid rgba(214,194,180,.54);
  background: rgba(244,241,236,.78);
  box-shadow: var(--shadow);
}
.price-card, .booking-mini-card { margin-top: 30px; padding: 24px; border-radius: 28px; }
.price-label, .addon-price { display: inline-flex; color: var(--caramel); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.price-row { display: flex; align-items: end; gap: 16px; margin-top: 10px; }
.price-row strong { color: var(--sage); font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 5.4rem); line-height: 1; }
.price-row s { color: rgba(48,42,38,.44); font-size: 1.4rem; }
.package-included-card, .booking-form { padding: clamp(30px, 4vw, 48px); border-radius: 40px; background: radial-gradient(circle at 100% 0%, rgba(199,158,127,.18), transparent 34%), rgba(244,241,236,.82); }
.package-included-card h3, .booking-form h3, .addon-preview-card h3 { margin-bottom: 20px; color: var(--sage); }
.package-included-card ul, .addon-preview-card ul { display: grid; gap: 12px; margin-top: 18px; padding-left: 0; list-style: none; }
.package-included-card li, .addon-preview-card li { position: relative; padding-left: 28px; color: var(--soft-ink); font-size: .94rem; }
.package-included-card li::before, .addon-preview-card li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 800; }
.small-note { margin-top: 26px; font-size: .92rem; }

.theme-section, .addons-preview-section { background: linear-gradient(180deg, var(--off-white), rgba(214,194,180,.24)); }
.theme-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.theme-heading h2 { margin-top: 16px; }
.theme-heading p:last-child { max-width: 620px; margin: 22px auto 0; }
.theme-grid, .addons-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.theme-card, .addon-preview-card { overflow: hidden; min-height: 420px; border-radius: 36px; }
.theme-card { border: 1px solid rgba(214,194,180,.54); background: rgba(244,241,236,.78); box-shadow: 0 18px 56px rgba(48,42,38,.07); }
.theme-card img, .addon-preview-card img { width: 100%; height: 285px; object-fit: cover; }
.theme-card div, .addon-preview-card div { padding: 28px; }
.theme-sage h3 { color: #7E9287; }
.theme-lilac h3 { color: #B9A7C9; }
.theme-blue h3 { color: #8FA5B8; }
.addon-price { margin-bottom: 14px; padding: 7px 12px; border-radius: 999px; color: var(--sage); background: rgba(126,146,135,.13); font-size: .68rem; }
.addon-preview-card img { height: 270px; }

.booking-form { position: relative; }
.hidden-field, .custom-location-wrap[hidden], .food-allergies-wrap[hidden] { display: none !important; }
.form-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 34px; }
.progress-step { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(126,146,135,.38); border-radius: 999px; color: var(--sage); font-size: .78rem; font-weight: 800; }
.progress-step.is-active { color: var(--off-white); background: var(--sage); }
.progress-line { flex: 1; height: 1px; background: var(--line); }
.form-step { display: none; gap: 20px; }
.form-step.is-active { display: grid; animation: formFade .55s var(--ease) both; }
@keyframes formFade { from { opacity: 0; filter: blur(10px); transform: translateY(16px); } to { opacity: 1; filter: blur(0); transform: translateY(0); } }
.booking-form label, .theme-choice legend, .contact-form label { display: grid; gap: 8px; color: var(--ink); font-size: .86rem; font-weight: 700; }
.booking-form input, .booking-form select, .booking-form textarea, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(214,194,180,.72);
  border-radius: 18px;
  background: rgba(255,255,255,.42);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(126,146,135,.72);
  box-shadow: 0 0 0 4px rgba(126,146,135,.12);
  background: rgba(255,255,255,.70);
}
.booking-form input[type="date"] { cursor: pointer; color-scheme: light; }
.booking-form input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .72; }
.addon-card label, .theme-choice label { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(126,146,135,.34); border-radius: 20px; background: rgba(255,255,255,.32); cursor: pointer; }
.addon-card input, .theme-choice input { width: auto; }
.addon-card small, .form-helper, .summary-note { color: rgba(48,42,38,.62); font-size: .82rem; font-weight: 400; }
.theme-choice { display: grid; gap: 12px; padding: 0; border: 0; }
.colour-dot { width: 18px; height: 18px; border: 3px solid rgba(255,255,255,.76); border-radius: 999px; box-shadow: 0 4px 12px rgba(48,42,38,.12); }
.sage-dot { background: #7E9287; }
.lilac-dot { background: #B9A7C9; }
.blue-dot { background: #8FA5B8; }
.enquiry-summary, .location-helper, .enquiry-consent-card, .contact-consent-card { padding: 18px; border: 1px solid rgba(199,158,127,.30); border-radius: 24px; background: rgba(255,255,255,.28); }
.enquiry-summary strong { display: block; margin-bottom: 8px; color: var(--sage); }
.enquiry-summary p { margin: 4px 0; font-size: .92rem; }
.summary-total, .summary-deposit { margin-top: 12px !important; padding-top: 12px; border-top: 1px solid rgba(199,158,127,.28); color: var(--ink); }
.summary-total-due b { color: var(--sage); font-size: 1.05rem; }
.form-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; margin-top: 8px; }
.form-back { color: var(--ink); border-color: rgba(214,194,180,.72); background: rgba(255,255,255,.24); }
.form-success { display: none; margin-top: 1.5rem; padding: 2.2rem; border: 1px solid rgba(122,143,130,.25); border-radius: 2rem; background: rgba(231,235,224,.85); }
.form-success.is-visible { display: block; }
.form-success h3 { margin: 0 0 .8rem; color: #7a8f82; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.form-success p { margin: 0; color: #5f5f5f; line-height: 1.7; }
.booking-form.is-submitted .form-progress, .booking-form.is-submitted .form-step, .contact-form.is-submitted > *:not(.form-success) { display: none; }
.booking-form button[disabled], .contact-form button[disabled] { opacity: .46; cursor: not-allowed; transform: none; box-shadow: none; pointer-events: none; }
.selected-package { position: relative; display: flex !important; align-items: center; gap: 18px; padding: 26px 28px !important; border-radius: 30px; background: rgba(244,241,236,.96); }
.selected-package input { position: absolute; opacity: 0; pointer-events: none; }
.selected-package::before { display: none; content: none; }
.selected-package::after { content: "Selected package"; position: absolute; top: 18px; right: 18px; padding: 8px 12px; border-radius: 999px; color: var(--sage); background: rgba(126,146,135,.13); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.selected-package__content { display: grid; gap: 3px; padding-right: 140px; }
.selected-package__content small, .selected-package__content em { color: rgba(48,42,38,.62); font-family: var(--sans); font-size: .76rem; font-style: normal; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.selected-package__content strong { color: var(--ink); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -.035em; }
.selected-package__content em { color: var(--caramel); }
.pac-container { z-index: 99999; margin-top: 8px; overflow: hidden; border: 1px solid rgba(214,194,180,.72); border-radius: 18px; box-shadow: 0 18px 48px rgba(48,42,38,.16); font-family: var(--sans); }
.pac-item { padding: 10px 14px; border-top: 1px solid rgba(214,194,180,.24); cursor: pointer; }
.pac-item:hover { background: rgba(214,194,180,.22); }
.pac-item-query { color: var(--ink); font-size: .9rem; }
.pac-matched { color: var(--sage); font-weight: 800; }

/* =========================
LEGAL + ABOUT + CONTACT PAGES
========================= */

.about-hero, .legal-hero, .contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 80px;
  background: radial-gradient(circle at 12% 18%, rgba(199,158,127,.24), transparent 34%), linear-gradient(135deg, rgba(244,241,236,.96), rgba(214,194,180,.34));
  color: var(--ink);
}
.about-hero-bg, .legal-hero-bg, .contact-hero-bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(120deg, rgba(244,241,236,.92), rgba(244,241,236,.72) 46%, rgba(214,194,180,.46)); }
.about-hero-bg::before, .legal-hero-bg::before, .contact-hero-bg::before,
.about-hero-bg::after, .legal-hero-bg::after, .contact-hero-bg::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 999px; pointer-events: none; }
.about-hero-bg::before, .legal-hero-bg::before, .contact-hero-bg::before { right: -180px; top: -170px; border: 1px solid rgba(199,158,127,.26); background: rgba(255,255,255,.16); }
.about-hero-bg::after, .legal-hero-bg::after, .contact-hero-bg::after { left: -160px; bottom: -220px; background: rgba(126,146,135,.12); }
.about-hero-inner, .legal-hero-inner, .contact-hero-inner { position: relative; z-index: 2; width: min(1160px, calc(100% - 40px)); max-width: 900px; margin-inline: auto; }
.about-hero h1, .legal-hero h1, .contact-hero h1 { max-width: 850px; margin-top: 18px; color: var(--sage); font-size: clamp(3.2rem, 7vw, 7rem); line-height: 1.02; text-shadow: none; }
.about-hero-copy, .legal-hero-copy, .contact-hero-copy { max-width: 680px; margin-top: 24px; color: var(--soft-ink); font-size: clamp(1rem, 1.2vw, 1.12rem); }

.about-story { padding: clamp(80px, 9vw, 140px) 0; }
.about-story-stack { display: grid; gap: clamp(80px, 10vw, 145px); }
.about-story-row, .about-story-row--reverse { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 6vw, 86px); align-items: center; }
.about-story-row--reverse { grid-template-columns: 1.1fr .9fr; }
.about-story-row--reverse .about-text { order: 2; }
.about-story-row--reverse .about-image { order: 1; }
.about-text { max-width: 560px; }
.about-text h2 { margin: 14px 0 28px; font-size: clamp(2.35rem, 4.3vw, 4.9rem); }
.about-text p { margin-top: 16px; font-size: clamp(.98rem, 1.05vw, 1.06rem); }
.about-text strong { color: var(--sage); font-weight: 700; }
.about-image { position: relative; overflow: hidden; border-radius: 42px; background: var(--beige); box-shadow: var(--shadow); }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(48,42,38,.02), rgba(48,42,38,.16)); pointer-events: none; }
.about-image img { width: 100%; height: clamp(240px, 30vw, 420px); object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease), filter 1.2s ease; }
.about-image:hover img { transform: scale(1.06); filter: saturate(.94) contrast(.96); }
.about-closing { padding: 0 0 clamp(90px, 10vw, 150px); }
.about-closing-card, .legal-contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px);
  border: 1px solid rgba(214,194,180,.52);
  border-radius: 44px;
  background: radial-gradient(circle at 12% 20%, rgba(199,158,127,.22), transparent 34%), linear-gradient(135deg, rgba(244,241,236,.90), rgba(214,194,180,.36));
  box-shadow: var(--shadow);
  text-align: center;
}
.about-closing-card h2, .legal-contact-card h2 { max-width: 850px; margin: 14px auto 26px; font-size: clamp(2.4rem, 5vw, 5.4rem); }
.about-closing-card p, .legal-contact-card p { max-width: 680px; margin: 16px auto 0; }
.about-closing-card .btn, .legal-contact-card .btn { margin-top: 34px; }

.legal-hero-note { display: inline-flex; gap: 8px; margin-top: 34px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(244,241,236,.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: rgba(48,42,38,.68); font-size: .84rem; }
.legal-hero-note strong { color: var(--ink); font-weight: 700; }
.legal-content-section, .contact-section { padding-top: clamp(60px, 8vw, 110px); background: linear-gradient(180deg, var(--off-white), rgba(214,194,180,.22)); }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(34px, 5vw, 72px); align-items: start; }
.legal-index {
  position: sticky;
  top: 110px;

  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overscroll-behavior: contain;

  padding: 26px;
  border: 1px solid rgba(214,194,180,.56);
  border-radius: 32px;
  background: rgba(244,241,236,.78);
  box-shadow: 0 18px 56px rgba(48,42,38,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  scrollbar-width: thin;
  scrollbar-color: rgba(126,146,135,.55) transparent;
}

.legal-index::-webkit-scrollbar {
  width: 6px;
}

.legal-index::-webkit-scrollbar-track {
  background: transparent;
}

.legal-index::-webkit-scrollbar-thumb {
  background: rgba(126,146,135,.55);
  border-radius: 999px;
}

.legal-index .eyebrow { margin-bottom: 16px; }
.legal-index a { display: block; padding: 10px 0; border-bottom: 1px solid rgba(199,158,127,.22); color: rgba(48,42,38,.68); font-size: .9rem; transition: color .3s ease, transform .3s var(--ease); }
.legal-index a:last-child { border-bottom: 0; }
.legal-index a:hover { color: var(--sage); transform: translateX(4px); }
.legal-document { display: grid; gap: 18px; }
.legal-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(214,194,180,.56);
  border-radius: 36px;
  background: radial-gradient(circle at 100% 0%, rgba(199,158,127,.12), transparent 34%), rgba(244,241,236,.84);
  box-shadow: 0 18px 56px rgba(48,42,38,.06);
}
.legal-intro-card { border-radius: 44px; background: radial-gradient(circle at 8% 12%, rgba(126,146,135,.16), transparent 32%), linear-gradient(135deg, rgba(244,241,236,.96), rgba(214,194,180,.28)); }
.legal-card h2 { margin: 14px 0 24px; font-size: clamp(2.2rem, 4.4vw, 4.7rem); }
.legal-card h3 { margin-bottom: 20px; color: var(--sage); font-size: clamp(1.55rem, 2.5vw, 2.45rem); }
.legal-card p { margin-top: 14px; font-size: .98rem; }
.legal-card ul { display: grid; gap: 10px; margin-top: 18px; padding-left: 0; list-style: none; }
.legal-card li { position: relative; padding-left: 28px; color: var(--soft-ink); font-size: .96rem; }
.legal-card li::before { content: "•"; position: absolute; left: 4px; top: 0; color: var(--sage); font-size: 1.4rem; line-height: 1.1; }
.legal-callout, .legal-business-details { margin-top: 26px; padding: 20px 22px; border: 1px solid rgba(126,146,135,.28); border-radius: 26px; background: rgba(126,146,135,.10); }
.legal-business-details { margin: 24px 0 26px; border-color: rgba(199,158,127,.28); background: rgba(255,255,255,.28); }
.legal-business-details p { margin-top: 6px; font-size: .92rem; }
.legal-business-details p:first-child { margin-top: 0; }
.legal-small-print { padding: 20px 4px 0; color: rgba(48,42,38,.56); font-size: .86rem; text-align: center; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 7vw, 90px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { margin: 16px 0 28px; font-size: clamp(2.4rem, 4.8vw, 5rem); }
.contact-copy p { max-width: 560px; margin-top: 18px; }
.contact-info-card {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(214,194,180,.56);
  border-radius: 26px;
  background: rgba(244,241,236,.78);
  box-shadow: 0 18px 56px rgba(48,42,38,.06);
}
.contact-info-card strong, .contact-info-card span, .contact-info-card a { display: block; }
.contact-info-card strong { color: var(--sage); font-family: var(--serif); font-size: 1.35rem; }
.contact-info-card a, .contact-info-card span { margin-top: 6px; color: var(--soft-ink); font-size: .96rem; overflow-wrap: anywhere; }
.contact-info-card a:hover { color: var(--sage); }
.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(214,194,180,.58);
  border-radius: 42px;
  background: radial-gradient(circle at 0% 0%, rgba(199,158,127,.18), transparent 36%), rgba(244,241,236,.86);
  box-shadow: var(--shadow);
}
.contact-form-heading h3 { margin-top: 10px; color: var(--sage); font-size: clamp(2rem, 3.2vw, 3.4rem); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.optional-label { color: rgba(48,42,38,.5); font-weight: 400; }
.enquiry-consent-card, .contact-consent-card { display: grid; gap: 16px; }
.enquiry-consent-card p { margin: 0; color: rgba(48,42,38,.72); font-size: .88rem; }
.enquiry-consent-card a { color: var(--sage); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.enquiry-consent-check, .contact-consent-check { display: flex !important; align-items: flex-start; gap: 12px !important; cursor: pointer; }
.enquiry-consent-check input, .contact-consent-check input { flex: 0 0 auto; width: auto; margin-top: 4px; }
.enquiry-consent-check span, .contact-consent-check span { color: var(--ink); font-size: .88rem; font-weight: 700; line-height: 1.5; }
.contact-submit { width: fit-content; margin-left: auto; }
.contact-form-note { margin-top: -4px; color: rgba(48,42,38,.58); font-size: .84rem; }

/* =========================
FOOTER
========================= */

.luxury-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0 28px;
  border-top: 1px solid rgba(199,158,127,.28);
  background: radial-gradient(circle at 12% 8%, rgba(199,158,127,.22), transparent 34%), linear-gradient(135deg, rgba(244,241,236,.98), rgba(214,194,180,.55) 52%, rgba(126,146,135,.18));
}
.luxury-footer::before, .luxury-footer::after, .footer-glow { content: ""; position: absolute; border-radius: 999px; pointer-events: none; z-index: -1; }
.luxury-footer::before { right: -190px; top: -210px; width: 520px; height: 520px; border: 1px solid rgba(199,158,127,.24); background: rgba(255,255,255,.12); }
.luxury-footer::after { left: -220px; bottom: -260px; width: 560px; height: 560px; background: rgba(126,146,135,.10); }
.footer-glow { filter: blur(12px); }
.footer-glow-one { right: 12%; bottom: 22%; width: 180px; height: 180px; background: rgba(255,255,255,.18); }
.footer-glow-two { left: 18%; top: 18%; width: 140px; height: 140px; background: rgba(199,158,127,.12); }
.footer-inner { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(520px, 1.6fr); gap: clamp(42px, 6vw, 96px); align-items: start; }
.footer-brand-block { max-width: 390px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.footer-logo-main { width: auto; height: 62px; }
.footer-logo-text { width: auto; height: 46px; }
.footer-tagline { max-width: 360px; margin-top: 28px; color: rgba(48,42,38,.72); font-size: .98rem; line-height: 1.75; }
.footer-location { margin-top: 18px; color: var(--sage); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(32px, 4vw, 72px); width: 100%; align-items: start; }
.footer-column { min-width: 0; }
.footer-column h3 { margin-bottom: 18px; color: var(--sage); font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a {
  position: relative;
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: rgba(48,42,38,.68);
  font-size: .92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color .35s ease, transform .35s var(--ease);
}
.footer-column a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--sage); transform: scaleX(0); transform-origin: right; transition: transform .42s var(--ease); }
.footer-column a:hover { color: var(--sage); transform: translateX(3px); }
.footer-column a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-contact-icons { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.footer-contact-icon { display: inline-flex !important; align-items: center; justify-content: center; color: #7b7069; line-height: 1; transition: color .25s ease, transform .25s ease; }
.footer-contact-icon:hover { color: #b89b72; transform: translateY(-1px); }
.footer-icon { display: block; width: 24px; height: 24px; }
.footer-icon-mail, .footer-icon-phone { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: clamp(54px, 7vw, 84px); padding-top: 22px; border-top: 1px solid rgba(48,42,38,.12); }
.footer-bottom p { color: rgba(48,42,38,.58); font-size: .82rem; }

/* Legal links use pipes when Legal drops below */
@media (min-width: 769px) and (max-width: 1180px) {
  .footer-inner { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand-block { max-width: 620px; }
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 760px; column-gap: clamp(36px, 8vw, 90px); row-gap: 28px; }
  .footer-links-grid .footer-column:nth-child(1) { grid-column: 1; order: 1; }
  .footer-links-grid .footer-column:nth-child(3) { grid-column: 2; order: 2; }
  .footer-links-grid .footer-column:nth-child(2) {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(48,42,38,.10);
    text-align: center;
  }
  .footer-links-grid .footer-column:nth-child(2) h3 { display: none; }
  .footer-links-grid .footer-column:nth-child(2) a {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin: 0;
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .footer-links-grid .footer-column:nth-child(2) a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: calc(100% - 20px);
    height: 1px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .42s var(--ease);
  }
  .footer-links-grid .footer-column:nth-child(2) a:last-child::before { width: 100%; }
  .footer-links-grid .footer-column:nth-child(2) a:hover::before { transform: scaleX(1); transform-origin: left; }
  .footer-links-grid .footer-column:nth-child(2) a::after {
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
  }
  .footer-links-grid .footer-column:nth-child(2) a:not(:last-child)::after {
    content: "|";
    display: inline-block;
    margin: 0 10px;
    color: rgba(48,42,38,.42);
    font-size: .86rem;
    line-height: 1;
  }
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1040px) {
  .locations-grid, .package-grid, .testimonial-grid, .addons-preview-grid, .theme-grid { grid-template-columns: 1fr; }
  .location-card, .location-card-featured { min-height: 430px; }
  .package-card, .package-card-featured { min-height: 460px; transform: none; }
  .package-card-featured:hover { transform: translateY(-7px); }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .experience-intro-layout, .package-intro-grid, .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .experience-intro-copy { max-width: 760px; }
  .experience-intro-copy p:not(.eyebrow) { max-width: 680px; }
  .booking-copy, .contact-copy { position: relative; top: auto; }
}

@media (max-width: 900px) {
  .about-story-row, .about-story-row--reverse, .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .about-story-row--reverse .about-text, .about-story-row--reverse .about-image { order: initial; }
  .about-text { max-width: 100%; }
  .about-image { border-radius: 34px; }
  .about-image img { height: clamp(360px, 92vw, 520px); }
.legal-index {
    position: relative;
    top: auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;

    max-height: none;
    overflow: visible;
}
  .legal-index .eyebrow { grid-column: 1 / -1; }
  .cta-card { min-height: 540px; border-radius: 38px; }
  .cta-content { width: min(620px, 100%); }
  .cta-card::after { background: linear-gradient(180deg, rgba(244,241,236,.92), rgba(244,241,236,.76) 48%, rgba(244,241,236,.38)); }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .site-header, .about-header, .contact-header, .legal-header, .package-header { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 22px; }
  .brand, .about-header .brand, .contact-header .brand, .legal-header .brand, .package-header .brand { display: flex; flex: 1 1 auto; min-width: 0; }
  .logo-main { height: 47px; }
  .logo-text { height: 38px; }
  .menu-toggle, .about-header .menu-toggle, .contact-header .menu-toggle, .legal-header .menu-toggle, .package-header .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin-left: auto;
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  .hero { padding: 132px 22px 70px; align-items: end; }
  .hero::before { height: 155px; background: linear-gradient(180deg, rgba(20,18,16,.72), rgba(20,18,16,.42) 48%, rgba(20,18,16,0)); }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,18,16,.68), rgba(20,18,16,.38) 35%, rgba(20,18,16,.82)); }
  .hero-content, .hero-copy { max-width: 100%; }
  .home-soft-bg .section { padding-top: 78px; padding-bottom: 78px; }
  .home-soft-bg .packages::before, .home-soft-bg .faq::before, .locations-section::before { display: none; }
  .section-heading-centred { text-align: left; margin-left: 0; margin-right: 0; }
  .section-heading-centred p:not(.eyebrow) { margin-left: 0; margin-right: 0; }
  .section-heading-centred::after { margin-left: 0; }
  .split-layout, .faq-layout { grid-template-columns: 1fr; }
  .locations-note { align-items: flex-start; flex-direction: column; }
  .locations-note .btn, .package-hero-actions, .package-hero-actions .btn, .form-buttons, .form-buttons .btn, .contact-submit { width: 100%; }
  .package-hero { min-height: 86vh; align-items: flex-end; }
  .package-hero-bg img { object-position: center; filter: brightness(.58) saturate(.86) contrast(.95); }
  .package-hero-overlay { background: linear-gradient(180deg, rgba(20,18,16,.72), rgba(20,18,16,.34) 34%, rgba(20,18,16,.86)); }
  .package-hero-inner { padding-top: 0; padding-bottom: 70px; }
  .package-hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .about-hero, .legal-hero, .contact-hero { height: auto !important; min-height: 58vh !important; padding: 132px 0 64px !important; align-items: center !important; }
  .about-hero-inner, .legal-hero-inner, .contact-hero-inner { width: min(100% - 32px, 1160px) !important; padding: 0 !important; transform: none !important; }
  .about-hero h1, .legal-hero h1, .contact-hero h1 { max-width: 100% !important; font-size: clamp(3rem, 15vw, 5rem) !important; }
  .about-hero-bg::before, .legal-hero-bg::before, .contact-hero-bg::before { right: -260px; top: -150px; width: 420px; height: 420px; }
  .about-hero-bg::after, .legal-hero-bg::after, .contact-hero-bg::after { left: -260px; bottom: -180px; width: 420px; height: 420px; }
  .contact-section .reveal-left, .contact-section .reveal-right { transform: translateY(34px); }
  .contact-section .reveal-left.is-visible, .contact-section .reveal-right.is-visible { transform: translateY(0); }
}

@media (max-width: 768px) {
  .luxury-footer { padding: 58px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand-block { max-width: 100%; }
  .footer-logo-main { height: 46px; }
  .footer-logo-text { height: 34px; }
  .footer-tagline { max-width: 100%; margin-top: 20px; font-size: .88rem; line-height: 1.65; }
  .footer-location { margin-top: 14px; font-size: .64rem; letter-spacing: .15em; }
  .footer-links-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); column-gap: 34px; row-gap: 30px; max-width: 520px; margin-inline: auto; justify-items: center; text-align: center; }
  .footer-links-grid .footer-column:nth-child(1) { grid-column: 1; order: 1; }
  .footer-links-grid .footer-column:nth-child(3) { grid-column: 2; order: 2; }
  .footer-links-grid .footer-column:nth-child(2) {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 6px;
    padding-top: 18px;
    border-top: 1px solid rgba(48,42,38,.10);
    text-align: center;
  }
  .footer-links-grid .footer-column:nth-child(2) h3 { display: none; }
  .footer-column h3 { margin-bottom: 12px; font-size: .62rem; letter-spacing: .16em; text-align: center; }
  .footer-column a { margin: 8px auto; font-size: .78rem; line-height: 1.45; text-align: center; }
  .footer-column a::after { display: none; }
  .footer-column a:hover { transform: none; }
  .footer-contact-icons { justify-content: center; }
  .footer-links-grid .footer-column:nth-child(2) a { display: inline-flex; align-items: center; width: auto; margin: 0; font-size: .76rem; line-height: 1.9; white-space: nowrap; overflow-wrap: normal; }
  .footer-links-grid .footer-column:nth-child(2) a:not(:last-child)::after { content: "|"; display: inline-block; position: static; width: auto; height: auto; margin: 0 8px; color: rgba(48,42,38,.42); background: none; transform: none; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 6px; margin-top: 20px; padding-top: 18px; text-align: center; }
  .footer-bottom p { font-size: .75rem; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, 1160px); }
  .home-soft-bg .section { padding-top: 70px; padding-bottom: 70px; }
  .experience-intro-copy h2, .section-heading h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .experience-intro-card { padding: 18px; border-radius: 34px; }
  .experience-intro-card::before { inset: 10px; border-radius: 26px; }
  .experience-card-main { min-height: 250px; padding: 30px 24px; border-radius: 28px; }
  .experience-mini-grid { grid-template-columns: 1fr; }
  .experience-mini-grid article { border-radius: 24px; }
  .intro-about-btn, .cta-card .btn { width: 100%; }
  .location-card, .package-card { min-height: 430px; border-radius: 30px; }
  .location-card-content, .package-card div { padding: 26px; }
  .locations-note, .contact-form, .booking-form { padding-left: 22px; padding-right: 22px; border-radius: 30px; }
  .testimonial-card { min-height: auto; }
  .cta-card { min-height: auto; padding: 22px; border-radius: 32px; }
  .cta-image { object-position: 42% center; filter: brightness(.72) saturate(.86) contrast(.95); }
  .cta-card::after { background: linear-gradient(180deg, rgba(244,241,236,.94), rgba(244,241,236,.82) 54%, rgba(244,241,236,.58)); }
  .cta-content { padding: 28px 24px; border-radius: 28px; text-align: center; }
  .cta-card h2 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .cta-card p:not(.eyebrow) { margin: 20px auto 28px; font-size: .94rem; }
  .name-fields { grid-template-columns: 1fr; }
  .selected-package { align-items: flex-start; padding: 20px !important; }
  .selected-package::after { position: static; align-self: flex-start; margin-left: auto; white-space: nowrap; }
  .selected-package__content { padding-right: 0; }
  .selected-package__content strong { font-size: 1.62rem; }
  .theme-card, .addon-preview-card, .price-card, .package-included-card { border-radius: 30px; }
  .addon-preview-card img { height: 235px; }
  .legal-index { grid-template-columns: 1fr; border-radius: 28px; }
  .legal-card { padding: 26px 22px; border-radius: 30px; }
  .legal-card h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .legal-card h3 { font-size: 1.65rem; }
  .legal-card p, .legal-card li { font-size: .94rem; }
  .about-image img { height: clamp(180px, 58vw, 300px); }
  .contact-info-card { padding-left: 20px; padding-right: 20px; border-radius: 24px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .hero-actions, .btn { width: 100%; }
  .testimonial-card p { font-size: 1.25rem; }
  .price-row strong { font-size: 3.5rem; }
}

@media (max-width: 390px) {
  .container, .about-hero-inner, .legal-hero-inner, .contact-hero-inner { width: min(100% - 28px, 1160px) !important; }
  .footer-links-grid { max-width: 100%; column-gap: 22px; }
  .footer-column a { font-size: .74rem; }
  .footer-links-grid .footer-column:nth-child(2) a { font-size: .68rem; }
  .footer-links-grid .footer-column:nth-child(2) a:not(:last-child)::after { margin: 0 6px; }
  .contact-form, .contact-info-card { padding-left: 18px; padding-right: 18px; }
  .about-hero h1 { font-size: clamp(2.8rem, 14vw, 4.6rem) !important; }
}

/* Active desktop nav state */
.site-header .nav-link.active,
.site-header .nav-link[aria-current="page"],
.site-header.has-bg .nav-link.active,
.site-header.has-bg .nav-link[aria-current="page"],
.about-header .nav-link.active,
.about-header .nav-link[aria-current="page"],
.contact-header .nav-link.active,
.contact-header .nav-link[aria-current="page"],
.legal-header .nav-link.active,
.legal-header .nav-link[aria-current="page"],
.package-header .nav-link.active,
.package-header .nav-link[aria-current="page"] {
  color: var(--sage);
}

.site-header .nav-link.active::after,
.site-header .nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
  background: var(--sage);
}

/* =========================
FAQS PAGE
========================= */

.faqs-page .legal-hero-note {
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
}

.faqs-content-section {
  padding-bottom: clamp(84px, 9vw, 140px);
}

.faq-page-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.faq-side-card {
  position: sticky;
  top: 120px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(214,194,180,.56);
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199,158,127,.16), transparent 34%),
    rgba(244,241,236,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.faq-side-card::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(199,158,127,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  pointer-events: none;
}

.faq-side-card h2 {
  position: relative;
  margin-top: 14px;
  font-size: clamp(2.3rem, 4.2vw, 4.6rem);
  line-height: 1;
}

.faq-side-card p {
  position: relative;
  margin-top: 22px;
  color: rgba(48,42,38,.72);
}

.faq-side-note {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(126,146,135,.26);
  border-radius: 26px;
  background: rgba(126,146,135,.10);
}

.faq-side-note strong {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.1;
}

.faq-side-note span {
  color: rgba(48,42,38,.68);
  font-size: .92rem;
  line-height: 1.65;
}

.faq-side-card .btn {
  position: relative;
  width: fit-content;
  margin-top: 30px;
}

.faq-page-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.faq-welcome-card {
  margin-bottom: 10px;
}

.faq-page-accordion {
  display: grid;
  gap: 12px;
}

.faq-category {
  width: fit-content;
  margin: 24px 0 2px;
  padding: 8px 13px;
  border: 1px solid rgba(126,146,135,.24);
  border-radius: 999px;
  color: var(--sage);
  background: rgba(126,146,135,.10);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-page-accordion .faq-question {
  align-items: flex-start;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.25;
}

.faq-page-accordion .faq-answer p {
  font-size: .96rem;
  line-height: 1.75;
}

.faqs-closing {
  padding-top: 0;
}

/* FAQ responsive */
@media (max-width: 980px) {
  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-side-card {
    position: relative;
    top: auto;
  }

  .faq-side-card .btn {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .faq-side-card {
    padding: 28px 22px;
    border-radius: 30px;
  }

  .faq-side-card h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .faq-side-card .btn {
    width: 100%;
  }

  .faq-category {
    max-width: 100%;
    white-space: normal;
  }

  .faq-page-accordion .faq-question {
    padding: 22px;
    gap: 18px;
  }

  .faq-page-accordion .faq-answer p {
    padding: 0 22px 22px;
  }
}

/* =========================
GOOGLE REVIEWS
========================= */

.google-reviews-section {
  position: relative;
  overflow: hidden;
}

.google-reviews-heading {
  margin-bottom: 42px;
  text-align: center;
}

/* Summary */

.google-review-summary {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-bottom: 30px;
  padding: clamp(28px, 3vw, 38px);

  background:
    linear-gradient(
      135deg,
      rgba(146, 158, 151, 0.88) 0%,
      rgba(178, 183, 173, 0.86) 48%,
      rgba(216, 205, 197, 0.88) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 44px;
  box-shadow:
    0 22px 58px rgba(48, 42, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.google-review-summary::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  pointer-events: none;
}

.google-review-summary::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -150px;
  z-index: -1;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.google-review-summary[hidden] {
  display: none;
}

.google-review-summary-content {
  display: grid;
  gap: 12px;
}

.google-reviews-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
}

.google-reviews-wordmark strong {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--off-white);
}

.google-wordmark {
  font-family: Arial, sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.08em;
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

.google-review-summary-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-review-summary-rating > strong {
  color: #F8F5EF;
  font-family: var(--sans);
  font-size: clamp(1.8rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.google-review-count {
  color: rgba(248, 245, 239, 0.82);
  font-size: 0.9rem;
}

/* Button */

.google-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  flex-shrink: 0;
  background: #1a73e8;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.google-review-button:hover {
  background: #1765cc;
  box-shadow: 0 12px 28px rgba(26, 115, 232, 0.24);
  transform: translateY(-2px);
}

/* Carousel */

.google-review-carousel {
  position: relative;
  width: 100%;
}

.google-review-viewport {
  width: 100%;
  overflow: hidden;
}

.google-review-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Three cards on desktop */

.google-review-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex: 0 0 calc((100% - 56px) / 3);
  flex-direction: column;
  min-width: 0;
  height: 360px;
  min-height: 0;
  padding: 28px 30px;
  overflow: hidden;

  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 34px;
  box-shadow:
    0 20px 52px rgba(48, 42, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.google-review-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  pointer-events: none;
}

.google-review-card:hover {
  border-color: rgba(48, 42, 38, 0.1);
  box-shadow: 0 18px 40px rgba(48, 42, 38, 0.08);
  transform: translateY(-3px);
}

/* Reviewer */

.google-review-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
}

.google-review-avatar-wrap {
  position: relative;
  flex: 0 0 auto;
}

.google-review-avatar {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.google-review-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4511e;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
}

.google-review-avatar-badge {
  position: absolute;
  right: -5px;
  bottom: -4px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  background: #ffffff;
  border-radius: 50%;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(48, 42, 38, 0.12);
}

.google-review-author {
  min-width: 0;
}

.google-review-author-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.google-review-author-name {
  overflow: hidden;
  color: #111111;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  background: #1a73e8;
  border-radius: 50%;
}

.google-review-verified svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.google-review-date {
  display: block;
  margin-top: 3px;
  color: #969696;
  font-size: 0.82rem;
  line-height: 1.3;
}

/* Stars */

.google-review-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.google-review-stars span {
  display: inline-block;
  margin: 0;
  color: #d8d8d8;
  font-size: 1.25rem;
  line-height: 1;
}

.google-review-stars span.is-filled {
  color: #fbbc04;
}

.google-review-summary-stars span {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.google-review-card-stars {
  margin-top: 20px;
}

.google-review-card-stars span {
  font-size: 1.45rem;
}

/* Text */

.google-review-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  margin-top: 18px;
}

.google-review-text {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #181818;
  font-family: var(--sans);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.55;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/* Used only while JavaScript measures the full review */
.google-review-text.is-measuring {
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  max-height: none;
  visibility: hidden;
  overflow: visible;
  -webkit-line-clamp: unset;
}

/* Expanded review scrolls inside its own card */
.google-review-card.is-review-expanded .google-review-text {
  display: block;
  max-height: 145px;
  padding-right: 9px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-line-clamp: unset;
  scrollbar-width: thin;
  scrollbar-color:
    #7f9287
    rgba(83, 101, 78, 0.1);
}

.google-review-card.is-review-expanded
.google-review-text::-webkit-scrollbar {
  width: 5px;
}

.google-review-card.is-review-expanded
.google-review-text::-webkit-scrollbar-track {
  background: rgba(83, 101, 78, 0.1);
  border-radius: 999px;
}

.google-review-card.is-review-expanded
.google-review-text::-webkit-scrollbar-thumb {
  background: #7f9287;
  border: 0;
  border-radius: 999px;
}

.google-review-read-more {
  width: fit-content;
  margin-top: auto;
  padding-top: 12px;
  color: #6F8176;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.google-review-read-more:hover {
  color: #344033;
}

.google-review-read-more[hidden] {
  display: none;
}

/* Controls */

.google-review-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #7f9287;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.google-review-arrow:hover:not(:disabled) {
  background: #5b6d63;
  transform: translateY(-50%) scale(1.04);
}

.google-review-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.google-review-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.google-review-arrow-prev {
  left: -24px;
}

.google-review-arrow-next {
  right: -24px;
}

.google-review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 30px;
}

.google-review-dots[hidden] {
  display: none;
}

.google-review-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(48, 42, 38, 0.32);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.google-review-dot.is-active {
  width: 9px;
  height: 9px;
  background: #181818;
  transform: none;
}

.google-review-status {
  flex-basis: 100%;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Tablet */

@media (max-width: 1000px) {
  .google-review-card {
    flex-basis: calc((100% - 28px) / 2);
  }

  .google-review-arrow-prev {
    left: -12px;
  }

  .google-review-arrow-next {
    right: -12px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .google-reviews-heading {
    margin-bottom: 28px;
  }

  .google-review-summary {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .google-review-summary-content {
    align-items: start;
  }

  .google-review-summary-rating {
    flex-wrap: wrap;
    gap: 8px;
  }

  .google-review-button {
    width: 100%;
  }

  .google-review-track {
    gap: 16px;
  }

  .google-review-text {
    font-size: 1rem;
    -webkit-line-clamp: 5;
  }

  .google-review-card {
    flex-basis: 100%;
    height: 350px;
    min-height:0;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .google-review-author-name {
    white-space: normal;
  }

  .google-review-arrow {
    display: none;
  }

  .google-review-viewport {
    touch-action: pan-y;
  }

  .google-review-card.is-review-expanded .google-review-text {
    max-height: 150px;
  }

  .google-review-text.is-measuring {
    width: calc(100% - 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-review-track {
    transition: none;
  }
}


/* =========================
GOOGLE REVIEWS CAROUSEL
========================= */

.google-review-carousel {
  position: relative;
  width: 100%;
}

.google-review-viewport {
  width: 100%;
  overflow: hidden;
}

.google-review-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.google-review-track .google-review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}

.google-review-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: #7f9287;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(52, 64, 51, 0.18);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.google-review-arrow:hover:not(:disabled) {
  background: #5b6d63;
  transform: translateY(-50%) scale(1.05);
}

.google-review-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.google-review-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.google-review-arrow-prev {
  left: -23px;
}

.google-review-arrow-next {
  right: -23px;
}

.google-review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.6rem;
}

.google-review-dots[hidden] {
  display: none;
}

.google-review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(111,129,118,.25);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.google-review-dot.is-active {
  width: 25px;
  background: #6F8176;
}

@media (max-width: 1100px) {
  .google-review-arrow-prev {
    left: -12px;
  }

  .google-review-arrow-next {
    right: -12px;
  }
}

@media (max-width: 1000px) {
  .google-review-track .google-review-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 700px) {
  .google-review-carousel {
    padding: 0 8px;
  }

  .google-review-track {
    gap: 16px;
  }

  .google-review-track .google-review-card {
    flex-basis: 100%;
  }

  .google-review-arrow {
    display: none;
  }

  .google-review-viewport {
    touch-action: pan-y;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-review-track {
    transition: none;
  }
}

/* Faster hero text animation for About, Contact & Legal pages */
.about-hero .reveal-hero:nth-child(1),
.contact-hero .reveal-hero:nth-child(1),
.legal-hero .reveal-hero:nth-child(1) {
    animation-delay: 0.5s;
}

.about-hero .reveal-hero:nth-child(2),
.contact-hero .reveal-hero:nth-child(2),
.legal-hero .reveal-hero:nth-child(2) {
    animation-delay: 0.7s;
}

.about-hero .reveal-hero:nth-child(3),
.contact-hero .reveal-hero:nth-child(3),
.legal-hero .reveal-hero:nth-child(3) {
    animation-delay: 0.9s;
}

.about-hero .reveal-hero:nth-child(4),
.contact-hero .reveal-hero:nth-child(4),
.legal-hero .reveal-hero:nth-child(4) {
    animation-delay: 1.1s;
}

.about-hero .reveal-hero-buttons,
.contact-hero .reveal-hero-buttons,
.legal-hero .reveal-hero-buttons {
    animation-delay: 1.3s;
}
