/* ===== Design tokens ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #eef6fb;
  --surface: #ffffff;
  --text: #0c1418;
  --muted: #5c6b76;
  --blue: #4fb0e0;
  --blue-soft: #8fd2f0;
  --blue-deep: #2b86bd;
  --tint: #f3f9fd;
  --line: rgba(12, 20, 24, 0.10);
  --radius: 18px;
  --maxw: 1180px;
  --serif: "Space Grotesk", system-ui, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(43, 134, 189, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(92%, var(--maxw)); margin-inline: auto; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: var(--blue-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}

.lead { color: var(--muted); max-width: 56ch; margin-inline: auto; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(43, 134, 189, 0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; }

.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-mark { color: var(--gold); font-size: 1.4rem; }
.brand-text { font-size: 1.3rem; font-weight: 500; line-height: 1; display: flex; flex-direction: column; letter-spacing: 0.02em; }
.brand-text small { font-family: var(--sans); font-size: 0.48rem; letter-spacing: 0.46em; color: var(--muted); margin-top: 3px; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); transition: color 0.25s; position: relative; }
.nav a:hover { color: var(--text); }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--blue); transition: width 0.3s;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--blue); color: var(--blue-deep);
  padding: 0.5rem 1.2rem; border-radius: 100px;
}
.nav-cta:hover { background: var(--blue); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.95rem 2rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 30px rgba(79, 176, 224, 0.35); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }
.btn-outline { border-color: var(--blue); color: var(--blue-deep); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center;
  background: linear-gradient(180deg, #eef6fb 0%, #ffffff 60%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 55% at 18% 20%, rgba(79,176,224,0.22), transparent 70%),
    radial-gradient(40% 50% at 85% 80%, rgba(143,210,240,0.28), transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; padding: 7rem 0 4rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 1.4rem; }
.hero-sub { color: var(--muted); max-width: 54ch; margin: 0 auto 2.2rem; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
.hero-stats strong { font-family: var(--serif); font-size: 2.4rem; color: var(--blue-deep); display: block; }
.hero-stats span { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: var(--muted); font-size: 1.4rem; animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ===== Sections ===== */
.section { padding: 6.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }

.grid { display: grid; gap: 1.4rem; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(12, 20, 24, 0.04);
}

/* ===== Forest / Nature band ===== */
.forest-band {
  position: relative;
  padding: 6rem 0 0;
  text-align: center;
  background: linear-gradient(180deg, #eaf3ee 0%, #f4faf6 55%, #ffffff 100%);
  overflow: hidden;
}
.forest-content { position: relative; z-index: 2; padding-bottom: 2.5rem; }
.forest-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.forest-sub { color: var(--muted); max-width: 50ch; margin: 0 auto 2rem; }
.forest-band::after {
  content: "";
  display: block;
  height: clamp(150px, 22vw, 320px);
  background: url("gallery/forest.jpg") repeat-x bottom center;
  background-size: auto 100%;
}
@media (max-width: 600px) {
  .forest-band::after { background-size: cover; height: 180px; }
}

/* ===== Services ===== */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service { text-align: left; }
.service:hover { transform: translateY(-6px); border-color: rgba(79,176,224,0.5); box-shadow: var(--shadow); }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 1.2rem; border-radius: 14px;
  background: var(--tint); color: var(--blue-deep);
}
.service-icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.service p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.link-arrow { color: var(--blue-deep); font-size: 0.85rem; font-weight: 600; }
.link-arrow:hover { color: var(--blue); }

/* ===== Portfolio ===== */
.filters { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.filter {
  background: none; border: 1px solid var(--line); color: var(--muted);
  padding: 0.5rem 1.2rem; border-radius: 100px; cursor: pointer; font-family: var(--sans);
  font-size: 0.85rem; transition: 0.25s;
}
.filter:hover { color: var(--text); border-color: var(--blue); }
.filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.gallery { columns: 4; column-gap: 1.2rem; }
.shot {
  break-inside: avoid; margin-bottom: 1.2rem; position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: opacity 0.4s, transform 0.4s;
}
.shot.hide { display: none; }
.ph { width: 100%; aspect-ratio: 4 / calc(3 * var(--h, 1)); transition: transform 0.5s; }
.shot:hover .ph { transform: scale(1.06); }
.ph-1 { background: linear-gradient(135deg, #cfe9f7, #7cc0e8); }
.ph-2 { background: linear-gradient(135deg, #e3eef5, #a9c7da); }
.ph-3 { background: linear-gradient(135deg, #d4ecf6, #6fb3da); }
.ph-4 { background: linear-gradient(135deg, #e7f4fb, #9bd3ee); }
.ph-5 { background: linear-gradient(135deg, #bfe3f5, #4fb0e0); }
.ph-6 { background: linear-gradient(135deg, #dff0ec, #8fcfc4); }
.ph-7 { background: linear-gradient(135deg, #d8e6f3, #7f9fd0); }
.ph-8 { background: linear-gradient(135deg, #e9f1f6, #afc8d6); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-family: var(--serif); font-size: 1.1rem; opacity: 0; transform: translateY(8px); transition: 0.3s;
}
.shot:hover figcaption { opacity: 1; transform: translateY(0); }

/* ===== Process ===== */
.steps-grid { grid-template-columns: repeat(4, 1fr); }
.step { padding: 1.5rem 0; }
.step-no { font-family: var(--serif); font-size: 2.4rem; color: rgba(79,176,224,0.55); }
.step h3 { font-size: 1.4rem; margin: 0.4rem 0 0.5rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ===== Pricing ===== */
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
.price { text-align: center; position: relative; }
.price h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.price-amount { font-family: var(--serif); font-size: 2.8rem; color: var(--blue-deep); margin-bottom: 1.4rem; }
.price-amount span { font-family: var(--sans); font-size: 0.9rem; color: var(--muted); }
.price ul { list-style: none; margin-bottom: 1.8rem; }
.price li { padding: 0.55rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.92rem; }
.price li:last-child { border-bottom: 0; }
.price.featured { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-10px); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 100px; font-weight: 600;
}

/* ===== Testimonials ===== */
.quotes-grid { grid-template-columns: repeat(3, 1fr); }
.quote p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; margin-bottom: 1.4rem; }
.quote footer { display: flex; flex-direction: column; gap: 0.3rem; }
.stars { color: var(--blue); letter-spacing: 0.15em; }
.quote cite { color: var(--muted); font-style: normal; font-size: 0.88rem; }

/* ===== Contact ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info .section-head { text-align: left; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.contact-info .lead { margin-inline: 0; }
.contact-list { list-style: none; margin: 1.8rem 0; }
.contact-list li { display: flex; align-items: center; gap: 0.8rem; padding: 0.5rem 0; color: var(--muted); }
.contact-list .ci { display: inline-flex; color: var(--blue-deep); flex: 0 0 auto; }
.contact-list .ci svg { width: 20px; height: 20px; }
.socials { display: flex; gap: 1.4rem; }
.socials a { color: var(--blue-deep); font-size: 0.88rem; }
.socials a:hover { color: var(--blue); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }
.field input, .field select, .field textarea {
  background: var(--tint); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.8rem 1rem; color: var(--text); font-family: var(--sans); font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,176,224,0.18); }
.field textarea { resize: vertical; }
.form-note { color: var(--blue-deep); font-size: 0.9rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-note[hidden] { display: none; }
.form-note .note-icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* ===== Footer ===== */
.site-footer { padding: 3rem 0; border-top: 1px solid var(--line); background: var(--bg-alt); }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav { display: flex; gap: 1.6rem; }
.footer-nav a { color: var(--muted); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--text); }
.copy { color: var(--muted); font-size: 0.82rem; }

/* ===== Reveal animation ===== */
.reveal, .card, .step, .shot { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in, .card.in, .step.in, .shot.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price.featured { transform: none; }
  .quotes-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line);
    padding: 1rem 0; transform: translateY(-130%); transition: transform 0.35s; align-items: stretch;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 0.9rem 8%; }
  .nav-cta { margin: 0.6rem 8% 0; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 2rem; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
}

/* ============================================================
   NAVBAR — clean rewrite
   ============================================================ */

/* Bar */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 5vw, 3.5rem);
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #0c1418;
  font-family: "Dancing Script", cursive;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-text { white-space: nowrap; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0c1418;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: #00843f;
  transition: width 0.28s ease;
}
.nav-link:hover { color: #00843f; }
.nav-link:hover::after { width: 100%; }

/* "Book Now" CTA link */
.nav-link--cta {
  background: #00843f;
  color: #fff !important;
  padding: 0.52rem 1.3rem;
  border-radius: 100px;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 14px rgba(0, 132, 63, 0.32);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: #006c33 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 132, 63, 0.4);
}

/* Hamburger — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0c1418;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
/* Burger → X animation */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 680px) {

  /* Show hamburger, hide the logo text to save space */
  .nav-burger { display: flex; }

  /* Center logo, hamburger floats right via absolute */
  .nav-bar {
    justify-content: center;
    padding: 0 1rem;
  }
  .nav-logo { margin: 0 auto; }
  .nav-burger {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Dropdown panel — hidden until .open */
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;           /* exactly below the bar */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0 0.8rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }

  .nav-link {
    padding: 0.95rem 6%;
    font-size: 0.92rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: 0.14em;
  }
  .nav-link:first-child { border-top: none; }
  .nav-link::after { display: none; }

  /* Book Now pill spans full width on mobile */
  .nav-link--cta {
    margin: 0.6rem 6% 0;
    border-radius: 10px;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================================
   GALLERY / PORTFOLIO PAGE
   ============================================================ */
.gallery-page {
  background: linear-gradient(180deg, #ffffff 0%, #4fc487ab 44vh, #eaf9ef 62vh, #f3fbf5 100%);
  background-attachment: scroll;
  min-height: 100vh;
}

/* Cursive headings throughout the gallery page */
.gallery-page h1,
.gallery-page h2,
.gallery-page .nav-logo {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  letter-spacing: 0;
}

/* Title block text — always white + shadow on green background */
.gallery-page .g-title h1 {
  color: #ffffff;
  text-shadow: -1px 2px 5px #0000008c;
}
.gallery-page .g-cta h2 {
  color: #ffffff;
  text-shadow: -1px 2px 5px #0000008c;
}
.gallery-page .g-sub {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: -1px 2px 5px #0000008c;
}
.gallery-page .eyebrow {
  color: #ffffff;
  text-shadow: -1px 2px 5px #0000008c;
}

.g-title { text-align: center; padding: 4.5rem 1.2rem 1.8rem; }
.g-title h1 { font-size: clamp(2.8rem, 7vw, 5rem); margin-bottom: 0.7rem; font-weight: 500; }
.g-sub { color: var(--muted); max-width: 44ch; margin: 0 auto; font-weight: 300; }

.g-filters { margin-bottom: 3rem; }

/* Organic, editorial masonry (Pinterest-style) */
.g-grid {
  width: min(94%, 1240px); margin: 0 auto 5rem;
  columns: 3; column-gap: 22px;
}
.g-item {
  break-inside: avoid; margin-bottom: 22px; position: relative;
  border-radius: 14px; overflow: hidden; background: var(--tint);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.g-item:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.12); }
.g-item img {
  width: 100%; height: auto; display: block; object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s; filter: saturate(1.08);
}
.g-item:hover img { transform: scale(1.04); }

/* Varied proportions for a natural, staggered flow */
.g-item.ar-tall img { aspect-ratio: 3 / 4.4; object-fit: cover; }
.g-item.ar-portrait img { aspect-ratio: 4 / 5; object-fit: cover; }
.g-item.ar-square img { aspect-ratio: 1 / 1; object-fit: cover; }
.g-item.ar-wide img { aspect-ratio: 4 / 3; object-fit: cover; }

.g-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2rem 1.2rem 1.1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  color: #fff; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; letter-spacing: -0.01em;
  opacity: 0; transform: translateY(10px); transition: 0.35s;
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* Bright placeholder when an image link is missing */
.g-item img.missing {
  min-height: 260px; filter: none; aspect-ratio: auto;
  background: repeating-linear-gradient(135deg, #ffd166, #ffd166 20px, #ff8fab 20px, #ff8fab 40px, #4fb0e0 40px, #4fb0e0 60px, #06d6a0 60px, #06d6a0 80px);
}
.g-item img.missing { color: transparent; }
.g-item.ar-tall img.missing { min-height: 420px; }
.g-item.ar-portrait img.missing { min-height: 340px; }
.g-item.ar-square img.missing { min-height: 280px; }
.g-item.ar-wide img.missing { min-height: 220px; }

.g-cta { text-align: center; padding: 3rem 1.2rem 5rem; }
.g-cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.6rem; font-weight: 500; }


/* Booking section themed to match the gallery */
.g-booking { padding: 4rem 0 5rem; }
.gallery-page .g-booking .contact-info h2 { color: #000000; }
.gallery-page .g-booking .lead { color: rgb(133 133 133 / 92%); }
.gallery-page .g-booking .contact-list li { color: rgba(255, 255, 255, 0.92); }
.gallery-page .g-booking .contact-list .ci { color: #d8ffe6; }
.gallery-page .g-booking .socials a { color: #d8ffe6; }
.gallery-page .g-booking .socials a:hover { color: #ffffff; }
.gallery-page .g-booking .contact-form { background: #ffffff; }
.gallery-page .g-booking .field input,
.gallery-page .g-booking .field select,
.gallery-page .g-booking .field textarea { background: #f3fbf5; }
.gallery-page .g-booking .field input:focus,
.gallery-page .g-booking .field select:focus,
.gallery-page .g-booking .field textarea:focus {
  border-color: #00843f; box-shadow: 0 0 0 3px rgba(0, 132, 63, 0.18);
}
.gallery-page .g-booking .form-note { color: #00843f; }

/* Green buttons on the gallery page */
.gallery-page .btn-primary { background: #00b757c9; color: #ffffff; box-shadow: 0 12px 30px rgba(0, 183, 87, 0.3); }
.gallery-page .btn-primary:hover { background: #00943f; }

/* Gallery page has no reveal script — keep cards/items visible */
.gallery-page .card,
.gallery-page .g-item,
.gallery-page .reveal { opacity: 1; transform: none; }

/* Booking form text colours for readability on the white card */
.gallery-page .g-booking .field label { color: #44525a; }
.gallery-page .g-booking .field input,
.gallery-page .g-booking .field select,
.gallery-page .g-booking .field textarea { color: #0c1418; }

@media (max-width: 980px) {
  .g-grid { columns: 2; column-gap: 18px; }
  .g-item { margin-bottom: 18px; }
}
@media (max-width: 680px) {
  .g-grid { columns: 1; }
}

/* ===== Scroll-to-top button ===== */
.scroll-top {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
  width: 48px; height: 48px; border-radius: 50%;
  background: #00843f; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: #006c33; }
.scroll-top svg { width: 20px; height: 20px; }


/* ============================================================
   Mobile Quick-Book FAB + Bottom Sheet
   ============================================================ */

/* FAB — shown only on mobile, always visible in bottom-left */
.qb-fab {
  display: none; /* desktop: hidden */
}
@media (max-width: 680px) {
  .qb-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    position: fixed;
    bottom: 1.4rem;
    left: 1.1rem;
    z-index: 180;
    background: #00b757c9;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0.78rem 1.2rem 0.78rem 0.9rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 22px rgba(0, 183, 87, 0.42), 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .qb-fab:hover,
  .qb-fab:active { background: #00943f; transform: translateY(-2px); }
  .qb-fab svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* Push scroll-top up so they don't overlap */
  .scroll-top { bottom: 5rem; right: 1rem; width: 40px; height: 40px; }
}

/* Overlay backdrop */
.qb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  align-items: flex-end; /* sheet sits at bottom */
}
.qb-overlay.open {
  display: flex;
  animation: qbFadeIn 0.22s ease;
}
@keyframes qbFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* The sheet itself */
.qb-sheet {
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 1.4rem 1.2rem 2.4rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
  animation: qbSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes qbSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* Sheet header */
.qb-sheet-head {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1.2rem;
}
.qb-title {
  font-family: "Dancing Script", cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0c1418;
  margin-top: 0.2rem;
}
.qb-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0c1418;
  transition: background 0.2s;
}
.qb-close:hover { background: #e2e4e8; }
.qb-close svg { width: 16px; height: 16px; }

/* Form inside the sheet */
.qb-form { display: flex; flex-direction: column; gap: 0.9rem; }
.qb-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.qb-form .field input,
.qb-form .field select,
.qb-form .field textarea {
  font-size: 16px; /* prevents iOS zoom */
  background: #f3fbf5;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: #0c1418;
  width: 100%;
  font-family: var(--sans);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qb-form .field input:focus,
.qb-form .field select:focus,
.qb-form .field textarea:focus {
  outline: none;
  border-color: #00843f;
  box-shadow: 0 0 0 3px rgba(0, 132, 63, 0.14);
}
.qb-form .field label { font-size: 0.78rem; color: #44525a; letter-spacing: 0.04em; }
.qb-form .btn-primary {
  background: #00b757c9;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 183, 87, 0.3);
  margin-top: 0.4rem;
  padding: 1rem;
  font-size: 0.9rem;
}
.qb-form .btn-primary:hover { background: #00943f; }
.qb-form .form-note { color: #00843f; font-size: 0.88rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.qb-form .form-note.is-error { color: #c0392b; }
