/* ==========================================================================
   Sunnystones — Camp & Weddings, Merrimu VIC
   Design system: warm cream paper, deep eucalyptus green, sun-amber (camps)
   and clay (weddings) accents. Lora display serif + Inter.
   ========================================================================== */

:root {
  --cream: #f7f2e9;
  --paper: #fffdf8;
  --green-950: #1c2d23;
  --green-900: #24382c;
  --green-700: #3e5c46;
  --green-100: #dde5da;
  --amber: #d9922e;
  --amber-dark: #b4761f;
  --clay: #b06a4a;
  --clay-dark: #93532f;
  --stone: #7c7466;
  --ink: #23251f;
  --line: #e4dccb;
  --shadow: 0 18px 40px -18px rgba(28, 45, 35, 0.35);
  --radius: 14px;
  --font-display: "Lora", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-950);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.8rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.55rem); }

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1rem; }
  body { font-size: 1rem; }
}

p { margin: 0 0 1.1em; }

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-900); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }

.section { padding: clamp(2.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding: clamp(1.8rem, 5vw, 4rem) 0; }

@media (max-width: 480px) {
  .section { padding: 2rem 0; }
  .section-tight { padding: 1.5rem 0; }
}
.section-paper { background: var(--paper); }
.section-green { background: var(--green-900); color: #e9e6da; }
.section-green h2, .section-green h3 { color: #f7f2e9; }
.section-green a { color: #e8c98f; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-dark);
  margin-bottom: 1rem;
}
.eyebrow-camp { color: var(--amber-dark); }
.section-green .eyebrow { color: #e8c98f; }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: #4c4a41; max-width: 46em; text-wrap: pretty; }
.section-green .lede { color: #d5d2c4; }

@media (max-width: 480px) {
  .lede { font-size: 1.0625rem; }
}

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-2px); }

@media (max-width: 480px) {
  .btn { min-height: 40px; padding: 0.45rem 0.9rem; font-size: 0.7rem; }
}

.btn-solid { background: var(--green-900); color: #f7f2e9; }
.btn-solid:hover { background: var(--green-700); color: #fff; }

.btn-amber { background: var(--amber); color: #2c1e05; }
.btn-amber:hover { background: #e5a648; color: #2c1e05; }

.btn-clay { background: var(--clay); color: #fff7ef; }
.btn-clay:hover { background: #c07d5c; color: #fff; }

.btn-gum { background: #7d9a6a; color: #16241a; }
.btn-gum:hover { background: #92ad7f; color: #16241a; }

.btn-outline { border-color: var(--green-900); color: var(--green-900); background: transparent; }
.btn-outline:hover { background: var(--green-900); color: #f7f2e9; }

.btn-light { border-color: rgba(255, 255, 255, 0.85); color: #fff; background: rgba(20, 30, 24, 0.18); backdrop-filter: blur(3px); }
.btn-light:hover { background: #f7f2e9; color: var(--green-950); border-color: #f7f2e9; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  /* Yellow ground-line lives on the header itself, not the logo image, so it always
     spans full width regardless of how large or small the logo is sized. */
  border-bottom: clamp(10px, 1.8vw, 16px) solid #f0ba22;
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(0.8rem, 2.2vw, 1.3rem) clamp(1.1rem, 4vw, 2.5rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

/* Logo is capped, not full-bleed, so it stays compact and sharp at any screen size.
   align-self: flex-end + zero padding-bottom on .header-inner keeps the artwork
   sitting flush on the yellow strip, no gap. */
.brand-full { display: block; line-height: 0; flex: none; align-self: flex-end; }
.brand-banner-full {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(42px, 7.5vw, 78px);
}

@media (min-width: 641px) {
  .header-inner {
    justify-content: flex-end;
    /* Matches .brand-banner-full's max-height so the absolutely positioned,
       bottom-anchored logo always has room and never clips above the header. */
    min-height: clamp(42px, 7.5vw, 78px);
  }
  .brand-full {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--green-950);
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.18rem;
}

/* Nav is always tucked behind the hamburger now - kept simple and consistent at every size */
.nav-toggle {
  flex: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green-950);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 1.2rem 1.2rem;
  box-shadow: var(--shadow);
}
.site-nav.open { display: flex; }
.site-nav > a {
  width: 100%;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.site-nav > a:hover { color: var(--green-700); }
.site-nav > a[aria-current="page"] { color: var(--green-900); }
.site-nav .btn { margin-top: 0.9rem; padding: 0.35rem 0.9rem; }
/* .site-nav > a outranks .btn-solid, so the Enquire now pill needs its own
   text colour back — dark ink on dark green is unreadable. */
.site-nav > a.btn-solid { color: #f7f2e9; }
.site-nav > a.btn-solid:hover { color: #fff; }

/* Nav dropdowns: parent row carries the link plus a caret button, with the
   sub-menu as its sibling so .site-nav > a.btn-solid above still matches. */
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.nav-item > a {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.8rem 0;
}
.nav-item > a:hover { color: var(--green-700); }
.nav-item > a[aria-current="page"] { color: var(--green-900); }

.nav-caret {
  flex: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--green-950);
  padding: 0.55rem 0.15rem 0.55rem 0.8rem;
  line-height: 0;
}
.nav-caret::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
}
.nav-caret[aria-expanded="true"]::after { transform: rotate(225deg) translate(-2px, -2px); }

.nav-sub {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.1rem 0 0.55rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.nav-sub[hidden] { display: none; }
.nav-sub > a {
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  color: #4c4a41;
  padding: 0.5rem 0;
}
.nav-sub > a:hover { color: var(--green-700); }
.nav-sub > a[aria-current="page"] { color: var(--green-900); font-weight: 600; }

/* ---------- Split hero (homepage) ---------- */

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: min(88vh, 880px);
  position: relative;
}

.split-title {
  position: absolute;
  top: clamp(1.2rem, 2.6vw, 2.2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  margin: 0;
  width: max-content;
  max-width: 94%;
  text-align: center;
  color: #fff;
  font-size: clamp(1.1rem, 1.9vw, 1.8rem);
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

@media (max-width: 1000px) {
  .split-title {
    position: static;
    transform: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    order: -1;
    background: var(--green-950);
    color: #f7f2e9;
    padding: 1.2rem 1.2rem;
    text-shadow: none;
    font-size: 1.1rem;
    line-height: 1.4;
    pointer-events: auto;
    max-width: none;
  }
  .split-hero { display: flex; flex-direction: column; min-height: auto; }
}

.split-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.6rem, 2.6vw, 3rem);
  padding-bottom: clamp(2.4rem, 4.5vw, 4.6rem);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}
.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.split-panel .bg-img { transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.split-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 28, 21, 0.72) 0%, rgba(18, 28, 21, 0.18) 42%, rgba(18, 28, 21, 0.06) 100%);
  z-index: -1;
  transition: background 0.4s ease;
}

/* Schools panel: text sits left, canoes right, so the scrim runs
   horizontally and the photo gets a lift out of the grey */
.split-panel-camp .bg-img { filter: brightness(1.12) saturate(1.08); }
.split-panel-camp::after {
  background: linear-gradient(to top, rgba(18, 28, 21, 0.4) 0%, rgba(18, 28, 21, 0.08) 40%, rgba(18, 28, 21, 0.02) 100%);
}
.split-panel-camp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12, 18, 14, 0.58) 0%, rgba(12, 18, 14, 0.3) 38%, rgba(12, 18, 14, 0) 68%);
  z-index: -1;
  pointer-events: none;
}

/* Couples panel: warm bottom-up scrim behind the caption, sky stays bright */
.split-panel-wed::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: linear-gradient(to top, rgba(62, 36, 18, 0.48) 0%, rgba(62, 36, 18, 0.2) 45%, rgba(62, 36, 18, 0) 100%);
  z-index: -1;
  pointer-events: none;
}
.split-panel:hover .bg-img { transform: scale(1.05); }

.split-content { max-width: 30em; position: relative; }
.split-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  display: inline-block;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.split-panel-camp .split-kicker { color: #f5c878; }
.split-panel-wed .split-kicker { color: #f0c2a8; }
.split-panel-group .split-kicker { color: #cfe3b4; }

.split-content h2 {
  color: #fff;
  font-size: clamp(1.2rem, 1.7vw, 1.85rem);
  white-space: nowrap;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.split-content p { color: #fff; margin-bottom: 1.4rem; font-size: 1.05rem; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55); }
/* Buttons hug their text, left-aligned under the copy with breathing room */
.split-content .btn {
  align-self: flex-start;
  width: auto;
  padding: 0.4rem 1rem;
  margin-top: 0.45rem;
}

@media (max-width: 480px) {
  .split-content { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
  .split-content h2 { margin-bottom: 0; font-size: 1.3rem; }
  .split-content p { margin-bottom: 0; font-size: 0.9rem; line-height: 1.5; }
}

/* Keep the three panels symmetrical on desktop so the kickers line up */
@media (min-width: 1001px) {
  .split-content h2 { line-height: 1.12; }
  .split-content p {
    line-height: 1.65;
    min-height: calc(3 * 1.65em);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 1000px) {
  .split-hero { grid-template-columns: 1fr; min-height: 0; }
  /* Stacked panels anchor the text to the top, tucked under the title
     bar, so the subject of each photo stays clear at the bottom */
  .split-panel { min-height: 48vh; align-items: flex-start; }
  .split-panel::after,
  .split-panel-camp::after {
    background: linear-gradient(to bottom, rgba(18, 28, 21, 0.6) 0%, rgba(18, 28, 21, 0.16) 58%, rgba(18, 28, 21, 0.04) 100%);
  }
  .split-panel-wed::before {
    top: 0;
    bottom: auto;
    height: 62%;
    background: linear-gradient(to bottom, rgba(62, 36, 18, 0.45) 0%, rgba(62, 36, 18, 0.18) 55%, rgba(62, 36, 18, 0) 100%);
  }
}

@media (max-width: 480px) {
  .split-panel { min-height: 42vh; }
  .split-content { max-width: 100%; }
  .split-content h2 { font-size: clamp(1rem, 5.4vw, 1.45rem); }
  .split-content p { font-size: 0.98rem; }
}

/* ---------- Jump navigation (on-page anchors) ---------- */

.jump-nav { background: var(--green-950); }
.jump-nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.jump-nav-inner::-webkit-scrollbar { display: none; }
.jump-nav a {
  color: #f0cd93;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 0;
  white-space: nowrap;
}
.jump-nav a:hover { color: #fff; }

/* Anchored sections clear the sticky header when jumped to */
#spaces, #included, #packages, #visit, #tour, #enquiry-form { scroll-margin-top: 84px; }

/* ---------- Sticky CTA pill ---------- */

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  padding: 0.32rem 0.85rem;
  font-size: 0.7rem;
  min-height: 0;
  box-shadow: 0 10px 26px rgba(28, 45, 35, 0.4);
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sticky-cta-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: clamp(280px, 50vh, 540px);
  color: #fff;
  isolation: isolate;
}

@media (max-width: 480px) {
  .page-hero { min-height: clamp(250px, 42vh, 360px); }
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 28, 21, 0.42), rgba(18, 28, 21, 0.16) 60%, rgba(18, 28, 21, 0.05));
  z-index: -1;
}
.page-hero .wrap { width: 100%; padding-top: clamp(1.8rem, 3.5vw, 2.8rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-hero h1 { color: #fff; max-width: 14em; text-shadow: 0 2px 26px rgba(0, 0, 0, 0.4); }
.page-hero .lede { color: #fff; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45); }
.page-hero .eyebrow {
  color: #f5ce8a;
  display: inline-block;
  font-size: 0.88rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  max-width: 100%;
  margin-bottom: 0.6rem;
}
@media (max-width: 480px) {
  .page-hero .eyebrow { font-size: 0.7rem; letter-spacing: 0.13em; }
}

/* ---------- Stats / trust bar ---------- */

.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: 1.2rem 0.9rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}
.stat span { display: block; font-size: 0.78rem; color: var(--stone); letter-spacing: 0.03em; line-height: 1.2; }

@media (max-width: 480px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 1rem 0.8rem; }
}

/* ---------- Cards & grids ---------- */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.4rem; }
.card-body p { font-size: 0.97rem; color: #4c4a41; margin-bottom: 0; }
.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.one-line { white-space: nowrap; font-size: clamp(1rem, 5vw, 2.8rem); }
.card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }

.photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 5vw, 4rem);
  margin-top: 1.4rem;
}
.logo-row img { height: 62px; width: auto; max-width: 100%; }
@media (max-width: 480px) {
  .logo-row img { height: 48px; }
}
.photo-frame img { width: 100%; object-fit: cover; }
.photo-frame iframe, .photo-frame video { display: block; width: 100%; border: 0; }

/* ---------- Feature list (icon-ish checklist) ---------- */

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.feature-list li { padding-left: 2rem; position: relative; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--amber);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.6 12.4 2.4 8.2l1.4-1.4 2.8 2.8 5.6-5.6 1.4 1.4z"/></svg>') center / contain no-repeat;
}
.feature-list-clay li::before { background: var(--clay); }
.section-green .feature-list li::before { background: #e8c98f; }

/* ---------- Document list (resources pages) ---------- */

.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.doc-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.4rem;
}
.doc-list .doc-text { flex: 1 1 20rem; min-width: 0; }
.doc-list h3 { font-size: 1.08rem; margin: 0 0 0.2rem; }
.doc-list p { font-size: 0.95rem; color: #4c4a41; margin: 0; }
.doc-meta {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.35rem;
}
.doc-list .btn { flex: 0 0 auto; }

@media (max-width: 480px) {
  .doc-list li { padding: 0.95rem 1.05rem; }
}

/* ---------- Benefits (numbered) ---------- */

.benefit { padding: 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.benefit b.num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.4rem;
}
.benefit h3 { font-size: 1.15rem; }
.benefit p { font-size: 0.94rem; color: #4c4a41; margin: 0; }

/* ---------- Team ---------- */

.team-group { margin-top: 2.4rem; }
.team-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-dark);
  margin-bottom: 1.2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  max-width: 900px;
  margin: 0 auto;
}
.team-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 440px; }
@media (max-width: 760px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.person { text-align: center; }
.person b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--green-950); margin-top: 0.7rem; }
.person span { font-size: 0.85rem; color: var(--stone); }
.headshot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #efe7d6, #e0d6c1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.headshot span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--green-700);
  opacity: 0.55;
}
.headshot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonials ---------- */

.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.5rem;
  position: relative;
  margin: 0;
}
.quote p { font-size: 1rem; }
.quote p::before { content: "\201C"; color: var(--amber); font-weight: 700; }
.quote p::after { content: "\201D"; color: var(--amber); font-weight: 700; }
.quote-clay p::before, .quote-clay p::after { color: var(--clay); }
.quote footer { font-size: 0.88rem; font-weight: 600; color: var(--stone); }
.quote footer b { color: var(--green-900); display: block; font-size: 0.95rem; }

/* Swipeable testimonial carousel: one card with a peek of the next on
   mobile, three across on desktop, snap scrolling, no autoplay */
.quote-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.3rem;
}
/* Equal-height cards (grid stretches to the tallest); shorter quotes
   centre vertically instead of leaving a gap at the bottom */
.quote-carousel .quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-carousel::-webkit-scrollbar { display: none; }
.quote-carousel > * { scroll-snap-align: center; }
@media (min-width: 761px) {
  .quote-carousel { grid-auto-columns: calc((100% - 2rem) / 3); gap: 1rem; }
}
.carousel-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 1.1rem; }
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d8d0bd;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots button.active { background: var(--green-700); transform: scale(1.2); }
.section-green .carousel-dots button { background: rgba(255, 255, 255, 0.28); }
.section-green .carousel-dots button.active { background: #f0cd93; }

.section-green .quote { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); }
.section-green .quote p { color: #ece9dd; }
.section-green .quote footer { color: #b9b5a5; }
.section-green .quote footer b { color: #f0cd93; }

/* ---------- Package cards (wedding pricing ladder) ---------- */

.pkg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.pkg-card-featured { border: 2px solid var(--clay); }
.pkg-flag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-dark);
  margin-bottom: 0.4rem;
}
.pkg-card h3 { margin-bottom: 0.4rem; }
.pkg-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-900);
  margin-bottom: 0.1rem;
}
.pkg-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone);
}
.pkg-price-off { font-size: 0.9rem; font-weight: 600; color: var(--stone); margin-bottom: 1rem; }
.pkg-desc { font-size: 0.92rem; color: var(--stone); margin-bottom: 0.9rem; }
.pkg-card .feature-list { margin-bottom: 0.9rem; }
.pkg-card .feature-list li { font-size: 0.92rem; }
.pkg-tagline {
  margin: auto 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--clay-dark);
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */

.masonry { columns: 3 300px; column-gap: 1.1rem; }
.masonry a { display: block; margin-bottom: 1.1rem; border-radius: 10px; overflow: hidden; }
.masonry img { width: 100%; transition: transform 0.4s ease; }
.masonry a:hover img { transform: scale(1.04); }

.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.strip a { border-radius: 10px; overflow: hidden; display: block; }
.strip img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform 0.4s ease; }
.strip a:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .strip { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 20, 16, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.25); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- Info tables & FAQ ---------- */

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; table-layout: fixed; }
.spec-table th, .spec-table td { text-align: left; padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--line); vertical-align: top; word-wrap: break-word; overflow-wrap: break-word; }
.spec-table th { font-weight: 700; color: var(--green-900); width: 38%; }

details.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
details.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 1.2rem;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clay);
}
details.faq[open] summary::after { content: "\2013"; }
details.faq .faq-body { padding: 0 1.2rem 1.1rem; color: #4c4a41; font-size: 0.98rem; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

label { font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 0.35rem; color: var(--green-950); }
label .req { color: var(--clay); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #d8d0bd;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(62, 92, 70, 0.18);
}
textarea { resize: vertical; min-height: 130px; }

.pill-choices { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-choices input { position: absolute; opacity: 0; pointer-events: none; }
.pill-choices label {
  margin: 0;
  border: 1.5px solid #d8d0bd;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  transition: all 0.15s ease;
}
.pill-choices input:checked + label { background: var(--green-900); border-color: var(--green-900); color: #f7f2e9; }
.pill-choices input:focus-visible + label { box-shadow: 0 0 0 3px rgba(62, 92, 70, 0.3); }

.form-note { font-size: 0.85rem; color: var(--stone); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  isolation: isolate;
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 36, 28, 0.72);
  z-index: -1;
}
.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255, 255, 255, 0.9); margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.6rem; }
.cta-band a { color: #e8c98f; }

/* ---------- Footer ---------- */

.site-footer { background: var(--green-950); color: #c9c5b6; font-size: 0.95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.2rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 { color: #f0cd93; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #e6e2d4; text-decoration: none; }
.site-footer a:hover { color: #f0cd93; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-brand .brand-name { color: #f7f2e9; }
.footer-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }
.footer-logos img { height: 52px; width: auto; background: #fff; padding: 5px 10px; border-radius: 8px; }
.footer-brand .brand-tag { color: #9a968a; }
.footer-ack { font-size: 0.85rem; color: #9a968a; margin-top: 1.2rem; max-width: 34em; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #9a968a;
}

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Skip to content (keyboard only) ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  background: var(--green-900);
  color: #f7f2e9;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom-right-radius: var(--radius);
}
.skip-link:focus {
  left: 0;
  color: #f7f2e9;
  outline: 3px solid var(--amber);
  outline-offset: -3px;
}

/* ---------- Utilities ---------- */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 0.88rem; color: var(--stone); }
.divider-leaf {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: clamp(2rem, 5vw, 3.5rem) auto;
  max-width: var(--wrap);
}
