:root {
  --bg: #f8f8f8;
  --surface: #ffffff;
  --ink: #151515;
  --ink-soft: #575757;
  --line: #e2e2e2;
  --brand: #3a5b4e;        /* deep forest green (site primary) */
  --brand-dark: #2c4639;
  --sage: #b4d1a2;         /* soft sage */
  --sage-soft: #eaf1e3;    /* pale sage tint */
  --blue: #3084a8;         /* logo blue (secondary accent) */
  --blue-dark: #25697f;
  --gold: #8ca6b3;         /* muted blue-grey for sub-labels */
  --danger: #cc0000;       /* logo red, used sparingly */
  --shadow: 0 10px 34px rgba(34, 49, 41, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; margin: 0; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.82rem; }
.center { text-align: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.brand-mark { width: 50px; height: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; color: var(--brand-dark); letter-spacing: 0.2px; }
.brand-sub { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gold); margin-top: 1px; }

.cart-button {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; cursor: pointer; transition: 0.15s;
}
.cart-button:hover { border-color: var(--brand); color: var(--brand); }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px;
  padding: 0 5px; border-radius: 10px; background: var(--brand); color: #fff;
  font-size: 0.72rem; font-weight: 600; display: grid; place-items: center;
}

/* Hero */
.hero {
  position: relative; text-align: center;
  min-height: 74vh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 5.5rem 1.25rem 4.5rem;
  background:
    linear-gradient(180deg, rgba(20, 30, 25, 0.42) 0%, rgba(20, 30, 25, 0.18) 32%, rgba(20, 30, 25, 0.40) 62%, rgba(20, 30, 25, 0.78) 100%),
    url("hero.jpg") center 38% / cover no-repeat;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-eyebrow { display: inline-block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 3px; color: #fff; font-weight: 600; margin-bottom: 1rem; opacity: 0.92; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.3px; line-height: 1.08; color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); }
.hero p { color: rgba(255, 255, 255, 0.94); font-size: 1.08rem; margin: 0.8rem auto 0; max-width: 600px; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); }
.hero-note { font-size: 0.85rem !important; margin-top: 1rem !important; opacity: 0.85; }

/* Toolbar (sticky search + categories) */
.toolbar {
  position: sticky; top: 66px; z-index: 20;
  background: rgba(248, 248, 248, 0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.search-wrap {
  position: relative; max-width: 720px; margin: 0 auto; padding: 0.9rem 1.25rem 0;
  display: flex; align-items: center;
}
.search-icon { position: absolute; left: 2rem; color: var(--ink-soft); pointer-events: none; }
.search-input {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  padding: 0.7rem 2.4rem 0.7rem 2.6rem; border: 1px solid var(--line);
  border-radius: 999px; background: var(--surface); transition: 0.15s;
}
.search-input::placeholder { color: #9a9a9a; }
.search-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(58, 91, 78, 0.12); }
.search-clear {
  position: absolute; right: 2rem; background: none; border: none; color: var(--ink-soft);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 0.2rem;
}
.search-clear:hover { color: var(--ink); }

/* Category nav */
.category-nav {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.7rem 1.25rem;
  max-width: 1140px; margin: 0 auto; scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.cat-pill {
  white-space: nowrap; padding: 0.45rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft);
  font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: 0.15s;
}
.cat-pill:hover { border-color: var(--cat, var(--brand)); color: var(--cat, var(--brand)); }
.cat-pill.active { background: var(--cat, var(--brand)); border-color: var(--cat, var(--brand)); color: #fff; }

/* Catalog */
.catalog { max-width: 1140px; margin: 0 auto; padding: 1rem 1.25rem 4rem; }
.result-count { color: var(--ink-soft); font-size: 0.9rem; margin: 1.4rem 0 0; }
.no-results { text-align: center; padding: 4rem 1rem; }
.no-results p { margin: 0.2rem 0; font-size: 1.05rem; }
.cat-section { margin-top: 2rem; }
.cat-section h2 { font-size: 1.4rem; color: var(--brand-dark); }
.sub-head { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin: 1.4rem 0 0.6rem; font-weight: 600; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1rem; margin-top: 0.6rem; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem; display: flex; flex-direction: column; gap: 0.6rem;
  transition: 0.18s; box-shadow: 0 1px 2px rgba(60,45,25,0.04);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--sage); }
.card-name { font-weight: 600; font-size: 1.02rem; line-height: 1.3; }
.card-note { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }
.card-price-row { display: flex; align-items: baseline; gap: 0.4rem; margin-top: auto; }
.card-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--brand-dark); }
.card-price-unit { font-size: 0.78rem; color: var(--ink-soft); }
.card-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 6px; background: var(--sage-soft); color: var(--brand-dark); }
.tag.parkfee { background: #eaf0f3; color: var(--blue-dark); }

/* Add form inside card */
.card-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.3rem; }
.field { display: flex; flex-direction: column; gap: 0.2rem; }
.field label { font-size: 0.72rem; color: var(--ink-soft); font-weight: 500; }
.field input, .field select {
  font-family: inherit; font-size: 0.88rem; padding: 0.45rem 0.5rem;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: var(--brand); }
.field.full { grid-column: 1 / -1; }

/* Buttons */
.btn {
  font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border: none; border-radius: 10px; padding: 0.6rem 1rem; transition: 0.15s;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-primary:disabled { opacity: 0.6; cursor: progress; }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-block { width: 100%; }
.add-btn { margin-top: 0.2rem; }

.icon-btn { background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--ink-soft); cursor: pointer; padding: 0 0.3rem; }
.icon-btn:hover { color: var(--ink); }

/* Drawer + overlay */
.overlay { position: fixed; inset: 0; background: rgba(40, 30, 18, 0.45); z-index: 40; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--bg); z-index: 50; box-shadow: -10px 0 40px rgba(40,30,18,0.2);
  display: flex; flex-direction: column;
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 1.25rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 0.5rem 1.25rem; }
.cart-empty { flex: 1; display: grid; place-content: center; text-align: center; gap: 0.2rem; }
.cart-empty p { margin: 0; }

.cart-line { border-bottom: 1px solid var(--line); padding: 0.9rem 0; }
.cart-line-top { display: flex; justify-content: space-between; gap: 0.5rem; }
.cart-line-name { font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.cart-line-detail { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.25rem; line-height: 1.5; }
.cart-line-price { font-weight: 600; white-space: nowrap; color: var(--brand-dark); }
.cart-line-remove { background: none; border: none; color: var(--danger); font-size: 0.78rem; cursor: pointer; padding: 0.2rem 0; margin-top: 0.3rem; }
.cart-line-remove:hover { text-decoration: underline; }

.cart-footer { padding: 1.1rem 1.25rem; border-top: 1px solid var(--line); background: var(--surface); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 1.05rem; margin-bottom: 0.3rem; }
.cart-total-row strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brand-dark); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 60; background: rgba(40,30,18,0.5); display: grid; place-items: center; padding: 1rem; overflow-y: auto; }
.modal-card { background: var(--bg); border-radius: 16px; width: min(480px, 100%); box-shadow: var(--shadow); max-height: 92vh; overflow-y: auto; }
.modal-card.center { text-align: center; padding: 2rem; }
.checkout-form { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.1rem 1.25rem 1.4rem; }
.checkout-form label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.checkout-form input, .checkout-form textarea {
  font-family: inherit; font-size: 0.92rem; padding: 0.55rem 0.6rem; border: 1px solid var(--line);
  border-radius: 9px; background: #fff; color: var(--ink); resize: vertical;
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: var(--brand); }
.checkout-summary { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 0.8rem; font-size: 0.85rem; }
.checkout-summary .sum-line { display: flex; justify-content: space-between; padding: 0.2rem 0; }
.checkout-summary .sum-total { border-top: 1px solid var(--line); margin-top: 0.4rem; padding-top: 0.5rem; font-weight: 600; }
.form-error { background: #fdecec; color: var(--danger); border-radius: 9px; padding: 0.6rem 0.75rem; font-size: 0.85rem; }

.success-tick { width: 64px; height: 64px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 2rem; display: grid; place-items: center; margin: 0 auto 1rem; }
.success-modal h2 { margin-bottom: 0.5rem; }

.site-footer { text-align: center; padding: 2rem 1.25rem 3rem; color: var(--ink-soft); font-size: 0.82rem; border-top: 1px solid var(--line); }

@media (max-width: 520px) {
  .category-nav { top: 62px; }
  .grid { grid-template-columns: 1fr; }
}

/* ============ Multi-page site chrome ============ */
.main-nav { display: flex; align-items: center; gap: 0.3rem; margin-left: auto; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-size: 0.92rem; font-weight: 500;
  padding: 0.5rem 0.8rem; border-radius: 8px; transition: 0.15s; white-space: nowrap;
}
.main-nav a:hover { color: var(--brand); background: var(--sage-soft); }
.main-nav a.active { color: var(--brand); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.8rem; }
.nav-cta { padding: 0.55rem 1.1rem !important; font-size: 0.9rem; text-decoration: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 9px; width: 42px; height: 42px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { display: block; margin: auto; }

@media (max-width: 880px) {
  .main-nav {
    position: fixed; inset: 62px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; margin: 0; background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform 0.25s ease; z-index: 25;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 0.85rem 0.6rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .nav-cta.desktop-only { display: none; }
}

/* Generic page banner (slimmer hero for inner pages) */
.page-banner {
  position: relative; min-height: 440px; padding: 5rem 1.25rem 3.25rem; text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  background-size: cover; background-position: center;
}
.page-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,30,25,0.34) 0%, rgba(20,30,25,0.20) 40%, rgba(20,30,25,0.72) 100%); }
.page-banner > * { position: relative; }
.page-banner .eyebrow { display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.7rem; opacity: 0.92; }
.page-banner h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.page-banner p { margin: 0.7rem auto 0; max-width: 620px; font-size: 1.02rem; opacity: 0.95; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }

/* Content layout */
.section { max-width: 1080px; margin: 0 auto; padding: 3.5rem 1.25rem; }
.section.narrow { max-width: 760px; }
.section-eyebrow { display: block; text-align: center; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--blue); font-weight: 600; margin-bottom: 0.6rem; }
.section h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: var(--brand-dark); text-align: center; }
.section .lead { text-align: center; color: var(--ink-soft); font-size: 1.1rem; max-width: 680px; margin: 1rem auto 0; line-height: 1.7; }
.section p { color: var(--ink-soft); line-height: 1.75; font-size: 1rem; }
.section.narrow p { margin: 1rem 0; }
.section.narrow h2 { text-align: left; }
.divider { width: 54px; height: 3px; background: var(--sage); border: none; margin: 1.1rem auto 0; border-radius: 2px; }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: 0.18s; display: flex; flex-direction: column;
}
.feature:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--sage); }
.feature img { width: 100%; height: 190px; object-fit: cover; display: block; }
.feature-body { padding: 1.2rem 1.3rem 1.4rem; }
.feature-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--brand-dark); margin-bottom: 0.4rem; }
.feature-body p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Split rows (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-top: 2.5rem; }
.split:first-of-type { margin-top: 2.8rem; }
.split img { width: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.split h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brand-dark); margin-bottom: 0.6rem; }
.split p { margin: 0; }
.split.reverse .split-text { order: 2; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; gap: 1.3rem; } .split.reverse .split-text { order: 0; } }

/* Pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.pill-list span { background: var(--sage-soft); color: var(--brand-dark); padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.88rem; font-weight: 500; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.4rem; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1rem; }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 0.9rem; background: linear-gradient(140deg, var(--brand), var(--brand-dark)); color: #fff; display: grid; place-items: center; font-family: 'Playfair Display', serif; font-size: 1.7rem; }
.team-card h3 { font-size: 1.1rem; color: var(--brand-dark); margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); }

/* CTA band */
.cta-band { background: var(--brand); color: #fff; text-align: center; padding: 3.5rem 1.25rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0.8rem auto 1.6rem; line-height: 1.6; }
.cta-band .btn { background: #fff; color: var(--brand-dark); padding: 0.8rem 1.8rem; font-size: 1rem; }
.cta-band .btn:hover { background: var(--sage-soft); }

/* Stats */
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; margin-top: 2.4rem; }
.stat { text-align: center; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--brand); line-height: 1; }
.stat .label { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 1px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.4rem; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-card .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--sage-soft); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.contact-card h3 { font-size: 1rem; color: var(--brand-dark); margin-bottom: 0.15rem; }
.contact-card a, .contact-card p { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; margin: 0; }
.contact-card a:hover { color: var(--brand); }

/* Footer (site-wide) */
.footer {
  background: var(--brand-dark); color: #d7e1da; padding: 3rem 1.25rem 1.5rem; margin-top: 0;
}
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.7rem; }
.footer p, .footer a { color: #c2d0c8; font-size: 0.9rem; line-height: 1.7; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer .foot-mark { width: 120px; margin-bottom: 0.8rem; }
.footer-bottom { max-width: 1080px; margin: 2.2rem auto 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; color: #9fb3a8; text-align: center; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Text-only info blocks (experiences page) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.info-block { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: var(--radius); padding: 1.6rem 1.5rem 1.7rem; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.info-block:hover { transform: translateY(-6px) scale(1.025); box-shadow: var(--shadow); border-color: var(--sage); }
.info-block h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--brand-dark); margin-bottom: 0.5rem; }
.info-block p { color: var(--ink-soft); line-height: 1.65; font-size: 0.95rem; margin: 0; }

/* Home hero with logo */
.hero-home { min-height: 92vh; justify-content: flex-end; padding: 4.5rem 1.25rem 5.5rem; }
.hero-logo { width: min(460px, 82%); height: auto; margin: 0 auto 0.4rem; filter: drop-shadow(0 3px 22px rgba(0,0,0,0.4)); }
.hero-home p { font-size: 1.12rem; max-width: 640px; }
@media (max-width: 600px) { .hero-home { min-height: 78vh; } .hero-logo { width: 88%; } }

/* Experiences browse tiles */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin-top: 1.6rem; }
.exp-tile {
  text-align: left; font-family: inherit; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1rem; display: flex; flex-direction: column; gap: 0.5rem;
  transition: 0.16s; min-height: 150px;
}
.exp-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sage); }
.exp-tile-cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--blue); font-weight: 600; }
.exp-tile-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--brand-dark); line-height: 1.25; flex: 1; }
.exp-tile-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.exp-tile-price { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.exp-tile-add { font-size: 0.82rem; font-weight: 600; color: #fff; background: var(--brand); padding: 0.32rem 0.7rem; border-radius: 999px; transition: 0.15s; }
.exp-tile:hover .exp-tile-add { background: var(--brand-dark); }

/* Item popup body */
.item-body { padding: 1.1rem 1.25rem 1.4rem; }
.item-note { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 0.3rem; }

/* Home "what we offer" — even 2x2 grid */
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) { .feature-grid.cols-2 { grid-template-columns: 1fr; } }

/* ============ Category colour-coding ============ */
/* Book page cards */
.card { border-top: 3px solid var(--cat, var(--line)); }
.cat-section h2 { color: var(--cat, var(--brand-dark)); }
.card .cat-tag {
  background: color-mix(in srgb, var(--cat, var(--brand)) 14%, #fff);
  color: var(--cat, var(--brand-dark)); font-weight: 600;
}
/* Experiences tiles */
.exp-tile { border-top: 3px solid var(--cat, var(--line)); }
.exp-tile-cat { color: var(--cat, var(--blue)); }
.exp-tile-add { background: var(--cat, var(--brand)); }
.exp-tile:hover .exp-tile-add { background: var(--cat, var(--brand-dark)); filter: brightness(0.9); }

/* Lighter, taller banner variant (experiences page) */
.page-banner.light::before { background: linear-gradient(180deg, rgba(20,30,25,0.20) 0%, rgba(20,30,25,0.10) 45%, rgba(20,30,25,0.60) 100%); }
.page-banner.tall { min-height: 560px; padding: 6rem 1.25rem 3.5rem; }
@media (max-width: 600px) { .page-banner, .page-banner.tall { min-height: 380px; } }

/* Experiences accordion */
.accordion { max-width: 920px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 0.7rem; }
.acc-item { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--cat, var(--brand)); border-radius: var(--radius); overflow: hidden; }
.acc-head {
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; text-align: left; transition: background 0.15s;
}
.acc-head:hover { background: color-mix(in srgb, var(--cat, var(--brand)) 7%, #fff); }
.acc-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--cat, var(--brand-dark)); }
.acc-meta { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.acc-count { font-size: 0.82rem; color: var(--ink-soft); white-space: nowrap; }
.acc-chevron { color: var(--cat, var(--brand)); display: flex; transition: transform 0.2s; }
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-body { padding: 0 1.3rem 1.3rem; }
.acc-body .exp-grid { margin-top: 0.3rem; }

/* Statement line (experiences intro) */
.statement { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.2vw, 2.2rem); line-height: 1.35; color: var(--brand-dark); font-weight: 600; max-width: 820px; margin: 0 auto; }
/* Transfer pick-up / drop-off fields */
.transfer-locs label:not(:first-child) { margin-top: 0.5rem; }

/* Compact home-style hero (Contact) — match the experiences banner height */
.hero-home.compact { min-height: 560px; padding-bottom: 3.5rem; }
.hero-home.compact .hero-logo { width: min(400px, 78%); }
@media (max-width: 600px) { .hero-home.compact { min-height: 420px; } }

/* ============ Mobile refinements ============ */
@media (max-width: 560px) {
  .site-header { padding: 0.55rem 0.9rem; }
  .brand-mark { width: 38px; }
  .brand-name { font-size: 0.98rem; }
  .brand-sub { display: none; }
  .nav-right { gap: 0.4rem; }
  .cart-button, .nav-toggle { width: 40px; height: 40px; }
  .toolbar { top: 56px; }
  .main-nav { inset: 56px 0 auto 0; }
  .hero-eyebrow, .page-banner .eyebrow { font-size: 0.6rem; letter-spacing: 1.6px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .hero p { font-size: 1rem; }
  .section { padding: 2.4rem 1.1rem; }
  .cta-band { padding: 2.6rem 1.1rem; }
  .page-banner, .page-banner.tall { min-height: 340px; padding: 4rem 1.1rem 2.5rem; }
  .accordion { margin-top: 1.4rem; }
  .acc-title { font-size: 1.1rem; }
  .modal { padding: 0.6rem; }
  .modal-card { max-height: 94vh; }
}

/* Keep the statement header centred (overrides .section.narrow h2 left-align) */
.section.narrow .statement { text-align: center; }

/* Home hero CTA buttons — flex so they never overlap */
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.8rem; }
.hero-cta .btn { padding: 0.8rem 1.6rem; font-size: 1rem; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.hero-ghost { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.55); color: #fff; }
.hero-ghost:hover { background: rgba(255,255,255,0.24); }
@media (max-width: 430px) { .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; } }
