/* ==========================================================================
   Rocky Ridge Events — rockyridgeestate.co.za
   Design system: warm bushveld palette, Fraunces display + Nunito Sans body
   ========================================================================== */

:root {
  --ink: #142a21;
  --pine: #1d4534;
  --fern: #2e6b4f;
  --fern-dark: #245641;
  --leaf: #7fb069;
  --leaf-soft: #dcead2;
  --sun: #f0a832;
  --sun-dark: #d78f1a;
  --clay: #d96f43;
  --cream: #faf7f0;
  --sand: #f1e9da;
  --white: #ffffff;
  --muted: #5c6f66;
  --line: rgba(20, 42, 33, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px rgba(20, 42, 33, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 42, 33, 0.16);

  --container: 1180px;
  --header-h: 116px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: var(--fern); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; font-size: 1rem; text-decoration: none; line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sun { background: var(--sun); color: var(--ink); box-shadow: 0 6px 18px rgba(240, 168, 50, 0.4); }
.btn-sun:hover { background: var(--sun-dark); }
.btn-fern { background: var(--fern); color: #fff; }
.btn-fern:hover { background: var(--fern-dark); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn-outline { border-color: var(--fern); color: var(--fern); }
.btn-outline:hover { background: var(--fern); color: #fff; }
.btn svg { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(20, 42, 33, 0.07); }
.header-inner {
  display: flex; align-items: center; gap: 28px;
  min-height: var(--header-h);
}
.logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
/* The lockup is close to square, so it needs more height than a wide wordmark
   would to keep "Rocky Ridge" legible. Steps down at the breakpoints below so
   the sticky header doesn't eat the screen on smaller devices. */
.logo img { height: 96px; width: auto; }

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 10px 14px; border-radius: 999px;
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.98rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: var(--leaf-soft); }
.main-nav a[aria-current="page"] { background: var(--pine); color: #fff; }

/* "Get a Quote" inside the collapsible menu. Hidden on desktop, where the
   header already carries the button; shown on the breakpoint that hides it.
   Selector is .main-nav .nav-quote a so it outranks .main-nav a above. */
.nav-quote { display: none; }
.main-nav .nav-quote a {
  background: var(--sun); color: var(--ink);
  text-align: center; border-radius: 999px;
  padding: 14px 18px; font-weight: 800;
}
.main-nav .nav-quote a:hover { background: var(--sun-dark); color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 12px 22px; font-size: 0.95rem; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 10px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 3px; border-radius: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (split) ---------- */
.hero { padding: 64px 0 80px; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--clay); border-radius: 2px; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); font-weight: 640; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--fern); }
.hero-lead { font-size: 1.22rem; color: var(--muted); max-width: 34em; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.95rem; color: var(--pine); }
.hero-trust svg { color: var(--leaf); flex: none; }

.hero-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; position: relative; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-collage .tall { grid-row: span 2; height: 100%; min-height: 420px; }
.hero-collage .wide { aspect-ratio: 4 / 3; }
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 14px 22px; display: flex; align-items: center; gap: 14px;
  color: var(--pine);
}
.hero-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--clay); line-height: 1; }
.hero-badge .badge-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero-badge .badge-text strong { font-size: 1.05rem; font-weight: 800; }
.hero-badge .badge-text span { font-size: 0.84rem; font-weight: 700; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-sand { background: var(--sand); }
.section-ink { background: var(--pine); color: #fff; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.section-head p { color: var(--muted); font-size: 1.12rem; margin: 0; }
.section-ink .section-head p { color: rgba(255, 255, 255, 0.78); }
.section-ink .eyebrow { color: var(--sun); }
.section-ink .eyebrow::before { background: var(--sun); }

/* ---------- Venue cards ---------- */
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.venue-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.venue-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.venue-card figure { margin: 0; position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.venue-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.venue-card:hover img { transform: scale(1.05); }
.venue-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.venue-card h3 { font-size: 1.55rem; margin: 0; }
.venue-card p { color: var(--muted); margin: 0; flex: 1; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em;
  background: var(--leaf-soft); color: var(--pine);
  padding: 5px 12px; border-radius: 999px;
}
.card-link { font-weight: 800; color: var(--fern); display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; }

/* ---------- Feature band (Mini-Town) ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-grid.reverse > .feature-media { order: 2; }
.feature-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-media img { border-radius: var(--radius-sm); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.feature-media img:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
.feature-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.check-list { display: grid; gap: 12px; margin: 22px 0 30px; }
/* Each <li> is a flex row: icon + label. Bare text nodes become flex items, so
   an item that needs inline markup (<strong>, a data-price <span>) must wrap its
   whole label in a single <span>. Otherwise the gap opens up mid-sentence and
   the spaces around the markup are stripped. */
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.check-list svg { flex: none; margin-top: 4px; color: var(--sun); }
.section-ink .check-list li { color: rgba(255, 255, 255, 0.92); }

/* ---------- Occasion tiles ---------- */
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.occasion-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; text-decoration: none; box-shadow: var(--shadow); display: block;
}
.occasion-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.occasion-tile:hover img { transform: scale(1.06); }
.occasion-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16, 34, 26, 0.82) 0%, rgba(16, 34, 26, 0.05) 55%);
}
.occasion-tile span {
  position: absolute; left: 20px; bottom: 16px; z-index: 1;
  color: #fff; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
}

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); }
.service-card .icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--leaf-soft); color: var(--fern); margin-bottom: 18px;
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.service-price { margin: 14px 0 0 !important; font-size: 0.9rem; font-weight: 700; color: var(--pine) !important; }
.service-price a { font-weight: 800; text-decoration: none; }
.service-price a:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--pine); border-radius: 28px; padding: 64px 56px; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: rgba(127, 176, 105, 0.18);
}
.cta-band::after {
  content: ""; position: absolute; right: 60px; bottom: -120px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(240, 168, 50, 0.15);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 15em; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 36em; font-size: 1.1rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; position: relative; z-index: 1; }

/* ---------- Venue detail (venues.html) ---------- */
.venue-detail { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; padding: 72px 0; }
.venue-detail.reverse .venue-detail-media { order: 2; }
.venue-detail h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.venue-detail .lead { color: var(--muted); font-size: 1.1rem; }
.venue-detail + .venue-detail { border-top: 1px solid var(--line); }

/* ---------- Slider ---------- */
.slider { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--sand); }
.slider .slides { position: absolute; inset: 0; }
.slider .slides img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.5s ease;
}
.slider .slides img.active { opacity: 1; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(250, 247, 240, 0.92); color: var(--ink);
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.15s ease;
}
.slider-btn:hover { background: var(--sun); }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }
.slider-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 7px; z-index: 2; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.55); padding: 0; }
.slider-dots button.active { background: var(--sun); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--pine); color: #fff; padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -140px; width: 420px; height: 420px;
  border-radius: 50%; background: rgba(127, 176, 105, 0.16);
}
.page-hero .eyebrow { color: var(--sun); }
.page-hero .eyebrow::before { background: var(--sun); }
.page-hero h1 { font-size: clamp(2.3rem, 4.5vw, 3.4rem); max-width: 16em; }
.page-hero p { color: rgba(255, 255, 255, 0.82); font-size: 1.15rem; max-width: 40em; margin: 0; }
/* The default link green is far too dark against the pine background. Buttons
   are excluded: they carry their own colours, and this selector outranks them. */
.page-hero a:not(.btn), .section-ink a:not(.btn) { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }
.page-hero a:not(.btn):hover, .section-ink a:not(.btn):hover { color: #fff; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px; border-radius: 999px; border: 2px solid var(--line);
  background: var(--white); font-weight: 800; font-size: 0.92rem; color: var(--pine);
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--fern); }
.filter-btn.active { background: var(--pine); border-color: var(--pine); color: #fff; }
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item {
  margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow); cursor: zoom-in; border: 0; padding: 0; background: none;
  display: block; width: 100%; break-inside: avoid;
}
.gallery-item img { width: 100%; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.hidden { display: none; }

.lightbox {
  border: 0; padding: 0; background: transparent; max-width: min(94vw, 1100px);
}
.lightbox::backdrop { background: rgba(10, 20, 15, 0.9); }
.lightbox img { max-height: 82vh; width: auto; max-width: 100%; margin: 0 auto; border-radius: 10px; }
.lightbox-bar { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.lightbox-bar button {
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: rgba(250, 247, 240, 0.14); color: #fff; display: grid; place-items: center;
}
.lightbox-bar button:hover { background: var(--sun); color: var(--ink); }

/* ---------- Quote page ---------- */
.quote-layout { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.quote-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.quote-tab {
  padding: 13px 26px; border-radius: 999px; border: 2px solid var(--line);
  background: var(--white); font-weight: 800; color: var(--pine); transition: all 0.15s ease;
}
.quote-tab:hover { border-color: var(--fern); }
.quote-tab.active { background: var(--fern); border-color: var(--fern); color: #fff; }
.quote-frame-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px; }
/* JS grows this to the form's real height; min-height is the fallback. */
.quote-frame-wrap iframe { width: 100%; border: 0; border-radius: var(--radius-sm); min-height: 1200px; display: block; }
.quote-panel { display: none; }
.quote-panel.active { display: block; }
.side-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; margin-bottom: 22px; }
.side-card h3 { font-size: 1.3rem; }
.side-card .btn { width: 100%; margin-top: 8px; }
.contact-line { display: flex; gap: 13px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-of-type { border-bottom: 0; }
.contact-line svg { flex: none; color: var(--fern); margin-top: 3px; }
.contact-line a { color: var(--ink); text-decoration: none; font-weight: 700; }
.contact-line a:hover { color: var(--fern); }
.contact-line .small { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.contact-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px 28px; text-align: center;
}
.contact-card .icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; background: var(--leaf-soft); color: var(--fern);
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; }
.contact-card a.big { font-weight: 800; font-size: 1.1rem; text-decoration: none; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ---------- Décor ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mosaic img { border-radius: var(--radius-sm); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; box-shadow: var(--shadow); }
.doc-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 24px 28px; text-decoration: none; color: var(--ink);
  transition: transform 0.15s ease;
}
.doc-card:hover { transform: translateY(-3px); }
.doc-card .icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(217, 111, 67, 0.14); color: var(--clay); display: grid; place-items: center; flex: none; }
.doc-card strong { display: block; font-size: 1.1rem; }
.doc-card span { color: var(--muted); font-size: 0.92rem; }

/* ---------- Pricing ---------- */
.price-table { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.price-row {
  display: flex; align-items: center; gap: 24px;
  padding: 22px 30px; border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row > div:first-child { flex: 1; }
.price-row strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.price-row span { color: var(--muted); font-size: 0.95rem; }
.price-amount {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  color: var(--fern); white-space: nowrap;
}
.price-amount span { color: inherit; font-size: inherit; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.price-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 28px; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li > span:first-child { color: var(--ink); font-weight: 600; }
.price-list li > span:last-child { font-weight: 800; color: var(--fern); white-space: nowrap; }
.price-note { margin: 14px 0 0; font-size: 0.88rem; color: var(--muted); }
.price-footnote {
  text-align: center; color: var(--muted); font-size: 0.92rem;
  max-width: 46em; margin: 0 auto 40px;
}

/* venue hire price shown on the venues page */
.price-line { display: flex; align-items: baseline; gap: 10px; margin: 0 0 18px; }
.price-line > span:first-child {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--fern);
}
.price-line > span:last-child { color: var(--muted); font-weight: 700; font-size: 0.92rem; }

/* ---------- Info strip ---------- */
.info-strip {
  display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center;
  background: var(--ink); color: rgba(255, 255, 255, 0.9);
  padding: 18px 24px; font-weight: 700; font-size: 0.95rem;
}
.info-strip span { display: inline-flex; gap: 9px; align-items: center; }
.info-strip svg { color: var(--sun); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; font-family: var(--font-body); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.site-footer a:hover { color: var(--sun); }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.98rem; max-width: 26em; }
.footer-list li { padding: 5px 0; }
.footer-contact li { display: flex; gap: 11px; padding: 6px 0; align-items: flex-start; }
.footer-contact svg { flex: none; color: var(--leaf); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(20, 42, 33, 0.35);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slider .slides img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --header-h: 100px; }
  .logo img { height: 82px; }
  .venue-grid, .feature-grid, .hero-grid, .venue-detail, .quote-layout { grid-template-columns: 1fr; }
  .feature-grid.reverse > .feature-media, .venue-detail.reverse .venue-detail-media { order: 0; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .hero { padding-top: 40px; }
  .hero-collage .tall { min-height: 320px; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(20, 42, 33, 0.12); padding: 12px 24px 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .header-cta .btn-sun { display: none; }
  /* Quote moves into the menu, since the header button is hidden here. */
  .nav-quote { display: block; margin-top: 10px; }
  /* 404.html has no menu to move it into, so it keeps its header button. */
  .header-cta-solo .btn-sun { display: inline-flex; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  :root { --header-h: 84px; }
  .logo img { height: 68px; }
  .occasion-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { columns: 1; }
  .cta-band { padding: 44px 28px; }
  .hero-badge { left: 8px; bottom: 12px; padding: 10px 16px; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { width: 100%; }
  .quote-frame-wrap iframe { min-height: 1500px; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 22px; }
  .price-card { padding: 26px 22px; }
}
