/* ============================================================
   Bristol Brewery Tours — design system
   Palette: harbour teal, warm cream, amber, coral, sea teal
   Type: Fraunces (display) + Inter (body)
   ============================================================ */

:root {
  --ink: #0e2b2f;
  --ink-2: #14383d;
  --ink-3: #1d4a4f;
  --cream: #fdf3e3;
  --paper: #fffaf0;
  --mist: #f4ece0;
  --body: #24393a;
  --body-soft: #5d7375;
  --line: #e7d9c3;
  --line-dark: rgba(253, 243, 227, .18);
  --amber: #e8942e;
  --amber-deep: #a9620f;
  --amber-soft: #fbe6c6;
  --coral: #e04f3d;
  --coral-deep: #b93524;
  --coral-soft: #fbdcd6;
  --teal: #2a7f78;
  --teal-deep: #1a5b56;
  --teal-soft: #dcece9;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow: 0 1px 2px rgba(14, 43, 47, .05), 0 14px 34px -18px rgba(14, 43, 47, .28);
  --shadow-lift: 0 2px 6px rgba(14, 43, 47, .08), 0 30px 60px -24px rgba(14, 43, 47, .4);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--coral-deep); }

::selection { background: var(--amber); color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container-narrow { max-width: 780px; }

/* ---------- typography ---------- */

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.018em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.075rem; }

p { text-wrap: pretty; }
p + p { margin-top: 1em; }

.lede {
  font-size: clamp(1.09rem, 1.9vw, 1.28rem);
  line-height: 1.6;
  color: var(--body-soft);
}

.eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: block;
  margin-bottom: .85rem;
}
.eyebrow.on-dark { color: var(--amber); }

.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.centred { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .9rem; }

/* ---------- layout primitives ---------- */

section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
section.tight { padding-block: clamp(2.6rem, 5vw, 4rem); }

.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-mist  { background: var(--mist); }
.bg-ink   { background: var(--ink); color: #d9e5e2; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--paper); }
.bg-ink .lede { color: #a9c1bd; }
/* :not(.btn) matters — otherwise this beats .btn's own colour and an amber
   button on a dark band renders amber-on-amber. */
.bg-ink a:not(.btn) { color: var(--amber); }
.bg-teal a:not(.btn) { color: var(--amber); }
.bg-teal  { background: var(--teal-deep); color: #d6ece9; }
.bg-teal h2, .bg-teal h3 { color: var(--paper); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--amber);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 650;
  font-size: .98rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  box-shadow: 0 1px 2px rgba(14, 43, 47, .12);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(14, 43, 47, .5); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.btn-primary { --btn-bg: var(--amber); --btn-fg: #2a1a06; }
.btn-primary:hover { background: #f5a441; }
.btn-coral { --btn-bg: var(--coral); --btn-fg: #fff; }
.btn-coral:hover { background: #ec5f4d; }
.btn-dark { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn-dark:hover { background: var(--ink-3); }
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(14, 43, 47, .28);
}
.btn-ghost:hover { background: rgba(14, 43, 47, .06); box-shadow: inset 0 0 0 1.5px rgba(14, 43, 47, .45); }
.btn-ghost.on-dark { --btn-fg: var(--paper); box-shadow: inset 0 0 0 1.5px rgba(253, 243, 227, .38); }
.btn-ghost.on-dark:hover { background: rgba(253, 243, 227, .1); }
.btn-whatsapp { --btn-bg: #25d366; --btn-fg: #08361a; }
.btn-whatsapp:hover { background: #34e07a; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- header ---------- */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 243, 227, .86);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck {
  background: rgba(253, 243, 227, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(14, 43, 47, .6);
}

.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex; align-items: center; gap: .62rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  color: var(--ink); text-decoration: none; line-height: 1.05; letter-spacing: -.02em;
  margin-right: auto;
}
.logo:hover { color: var(--ink); }
.logo svg { width: 38px; height: 38px; flex: none; }
.logo .est {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .625rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-deep); margin-top: .16em;
}

.main-nav { display: flex; align-items: center; gap: .3rem; }
.main-nav a {
  padding: .55rem .78rem; border-radius: 999px;
  font-size: .94rem; font-weight: 550; color: var(--ink); text-decoration: none;
  transition: background-color .15s ease;
}
.main-nav a:hover { background: rgba(14, 43, 47, .07); color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--amber-deep); font-weight: 700; }
.main-nav .btn { margin-left: .5rem; padding: .65rem 1.25rem; }
.main-nav .btn:hover { background: #f5a441; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .5rem; margin: -.5rem; color: var(--ink); border-radius: 10px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .8rem 1.1rem 1.4rem;
    box-shadow: 0 24px 40px -24px rgba(14, 43, 47, .5);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .8rem .6rem; border-radius: 10px; font-size: 1.05rem; }
  .main-nav .btn { margin: .6rem 0 0; justify-content: center; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-art {
  position: absolute; inset: 0; z-index: -2;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 60%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(14, 43, 47, .95) 0%, rgba(14, 43, 47, .82) 34%, rgba(14, 43, 47, .34) 62%, rgba(14, 43, 47, .12) 100%),
    linear-gradient(to top, rgba(14, 43, 47, .78), transparent 45%);
}
/* Narrow screens: the copy sits over the busiest part of the artwork, so the
   overlay has to carry the contrast on its own. */
@media (max-width: 860px) {
  .hero-art img { object-position: 72% 62%; }
  .hero::after {
    background:
      linear-gradient(to bottom, rgba(14, 43, 47, .62) 0%, rgba(14, 43, 47, .8) 42%, rgba(14, 43, 47, .86) 100%),
      linear-gradient(100deg, rgba(14, 43, 47, .55), rgba(14, 43, 47, .1) 78%);
  }
}
.hero-inner {
  padding-block: clamp(3.2rem, 9vw, 6.6rem);
  max-width: 660px;
}
.hero h1 { color: var(--paper); }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero .lede { color: #cfe0dd; margin-top: 1.15rem; max-width: 54ch; }
.hero .btn-row { margin-top: 1.9rem; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-top: 1.7rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .82rem; border-radius: 999px;
  background: rgba(253, 243, 227, .12);
  box-shadow: inset 0 0 0 1px rgba(253, 243, 227, .22);
  font-size: .84rem; font-weight: 550; color: #e8f0ee;
}
.chip svg { width: 1em; height: 1em; flex: none; color: var(--amber); }
.chip strong { color: var(--paper); font-weight: 700; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem .4rem .5rem; border-radius: 999px;
  background: var(--coral); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-badge span.dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .3);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,.28); } 50% { box-shadow: 0 0 0 7px rgba(255,255,255,.06); } }
@media (prefers-reduced-motion: reduce) { .hero-badge span.dot { animation: none; } }

.stars { color: var(--amber); letter-spacing: .06em; }

/* page hero (interior pages) */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(2.6rem, 6vw, 4.4rem);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("/assets/img/illus/skyline-band.jpg");
  background-size: cover; background-position: center 78%;
  opacity: .3;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(14,43,47,.96) 12%, rgba(14,43,47,.72) 68%, rgba(14,43,47,.5));
}
.page-hero h1 { color: var(--paper); font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.page-hero .lede { color: #c6dbd7; margin-top: .95rem; max-width: 60ch; }
.page-hero .btn-row { margin-top: 1.6rem; }

.crumbs {
  font-size: .82rem; color: #9bb8b4; margin-bottom: 1rem;
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
}
.crumbs a { color: #c6dbd7; text-decoration: none; }
.crumbs a:hover { color: var(--amber); text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: .5; }

/* ---------- ticker ---------- */

.ticker {
  background: var(--amber);
  color: #2a1a06;
  overflow: hidden;
  border-block: 2px solid var(--ink);
}
.ticker-track {
  display: flex; width: max-content;
  animation: scroll-x 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group {
  display: flex; align-items: center; gap: 2.4rem;
  padding: .72rem 1.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  white-space: nowrap;
}
.ticker-group span { display: inline-flex; align-items: center; gap: 2.4rem; }
.ticker-group span::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); opacity: .5;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker { overflow-x: auto; }
}

/* ---------- cards ---------- */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--body-soft); font-size: .98rem; }

.card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--amber-soft); color: var(--amber-deep);
  margin-bottom: 1.05rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon.teal { background: var(--teal-soft); color: var(--teal-deep); }
.card-icon.coral { background: var(--coral-soft); color: var(--coral-deep); }

/* stop cards (the route) */
.stops { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); counter-reset: stop; }
.stop {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stop-media { position: relative; aspect-ratio: 4 / 3; background: var(--ink); }
.stop-media img { width: 100%; height: 100%; object-fit: cover; }
.stop-num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--coral); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.24rem;
  box-shadow: 0 4px 14px -4px rgba(14, 43, 47, .7);
}
.stop-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.stop-body h3 { margin-bottom: .3rem; }
.stop-kicker {
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .6rem;
}
.stop-body p { color: var(--body-soft); font-size: .97rem; }

/* ---------- stats ---------- */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.2rem; }
.stat { text-align: center; padding: 1.2rem .8rem; }
.stat dt {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1; color: var(--amber);
}
.stat dd {
  margin-top: .5rem; font-size: .88rem; letter-spacing: .04em;
  text-transform: uppercase; font-weight: 600; color: #9dbab6;
}

/* ---------- includes list ---------- */

.includes-list { list-style: none; display: grid; gap: .78rem; }
.includes-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; }
.includes-list li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: .18em;
  border-radius: 50%; background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5b56' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.includes-list.on-dark li::before { background-color: rgba(232, 148, 46, .2); }
.includes-list.excl li::before {
  background-color: var(--coral-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b93524' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

/* ---------- booking ---------- */

.booking-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.booking-head {
  background: var(--ink);
  color: var(--paper);
  padding: 1.8rem 1.6rem 1.5rem;
  text-align: center;
  position: relative;
}
.booking-head h2, .booking-head h3 { color: var(--paper); }
.price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1; color: var(--amber);
  display: block; margin: .5rem 0 .2rem;
}
.price sup { font-size: .42em; top: -.85em; margin-right: .06em; }
.price-note { font-size: .92rem; color: #a9c1bd; }
.booking-body { padding: 1.5rem 1.2rem 1.8rem; }
.booking-body > p { text-align: center; color: var(--body-soft); font-size: .95rem; }

/* DesignMyNight widget shell — the widget injects its own markup here */
.dmn-widget {
  margin: 1.2rem 0 .4rem;
  min-height: 120px;
  container-type: inline-size;
}
.dmn-widget iframe, .dmn-widget img { max-width: 100%; }
.dmn-widget * { max-width: 100%; box-sizing: border-box; }
.dmn-fallback {
  text-align: center; padding: 1.2rem 1rem;
  border: 1.5px dashed var(--line); border-radius: var(--radius-sm);
  color: var(--body-soft); font-size: .94rem;
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .85rem;
}
.gallery figure {
  margin: 0; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; background: var(--ink-2);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 560px) { .gallery figure.wide { grid-column: span 2; } }

.frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lift); background: var(--ink-2);
}
.frame img { width: 100%; }
.frame.illus { box-shadow: var(--shadow); background: var(--cream); }
.frame.tall { aspect-ratio: 4 / 5; }
.frame.tall img { height: 100%; object-fit: cover; }

.illus-band {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--cream); box-shadow: var(--shadow);
}
.illus-band img { width: 100%; }

/* ---------- reviews ---------- */

.reviews { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .9rem;
  box-shadow: var(--shadow);
}
.review blockquote { font-size: 1.02rem; line-height: 1.6; color: var(--ink); }
.review blockquote::before { content: "“"; font-family: var(--font-display); font-size: 2.4rem; line-height: 0; color: var(--amber); vertical-align: -.28em; margin-right: .1em; }
.review footer { font-size: .87rem; color: var(--body-soft); margin-top: auto; }
.review footer strong { display: block; color: var(--ink); font-size: .95rem; }

.rating-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem;
  padding: 1.1rem 1.4rem; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
}
.rating-row .n { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--ink); line-height: 1; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .18s ease;
}
.faq details[open] { border-color: var(--amber); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.075rem;
  color: var(--ink); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.15rem; top: 50%;
  width: 20px; height: 20px; margin-top: -10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9620f' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq summary:hover { background: rgba(232, 148, 46, .07); }
.faq summary:focus-visible { outline: 3px solid var(--coral); outline-offset: -3px; }
.faq .faq-body { padding: 0 1.25rem 1.25rem; color: var(--body-soft); }
.faq .faq-body p + p { margin-top: .8rem; }
.faq .faq-body ul { margin: .7rem 0 0 1.1rem; display: grid; gap: .4rem; }

/* ---------- callout / notes ---------- */

/* Marked with a dotted run of beads rather than a solid rule — the same
   device the illustrated route map uses to draw the walk between stops. */
.callout {
  --callout-mark: var(--amber-deep);
  position: relative;
  background: var(--amber-soft);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem 1.1rem 1.75rem;
  font-size: .98rem;
}
.callout::before {
  content: "";
  position: absolute;
  left: .78rem; top: 1.05rem; bottom: 1.05rem;
  width: 4px;
  background-image: radial-gradient(circle, var(--callout-mark) 1.8px, transparent 2.1px);
  background-size: 4px 7px;
  background-repeat: repeat-y;
  opacity: .8;
}
.callout.teal { --callout-mark: var(--teal-deep); background: var(--teal-soft); }
.callout.coral { --callout-mark: var(--coral-deep); background: var(--coral-soft); }
.callout.on-dark { --callout-mark: var(--amber); }
.callout strong { color: var(--ink); }

.disclaimer {
  font-size: .84rem; color: var(--body-soft);
  padding-top: 1.4rem; margin-top: 2rem; border-top: 1px solid var(--line);
}

/* ---------- prose (long-form pages) ---------- */

.prose { max-width: 74ch; }
.prose h2 { margin: 2.6rem 0 .9rem; }
.prose h3 { margin: 2rem 0 .7rem; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.05rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose li::marker { color: var(--amber-deep); }
.prose strong { color: var(--ink); }

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

.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 62%; z-index: -1;
  background: url("/assets/img/illus/skyline-band.jpg") center bottom / cover no-repeat;
  opacity: .28;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, var(--ink) 22%, rgba(14, 43, 47, .72));
}
.cta-band h2 { color: var(--paper); }
.cta-band p { color: #b9d0cc; margin: .9rem auto 0; max-width: 56ch; }
.cta-band .btn-row { justify-content: center; margin-top: 1.7rem; }

/* ---------- sticky mobile book bar ---------- */

.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; gap: .9rem;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(14, 43, 47, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(253, 243, 227, .16);
  transform: translateY(110%);
  transition: transform .28s ease;
}
.book-bar.is-visible { transform: translateY(0); }
.book-bar .bb-price { color: var(--paper); font-size: .88rem; line-height: 1.25; }
.book-bar .bb-price strong { display: block; font-family: var(--font-display); font-size: 1.28rem; color: var(--amber); }
.book-bar .btn { margin-left: auto; white-space: nowrap; flex: none; padding-inline: 1.15rem; }
@media (max-width: 360px) { .book-bar .bb-price { font-size: .8rem; } .book-bar .btn { font-size: .9rem; } }
@media (max-width: 780px) { .book-bar { display: flex; } body { padding-bottom: 0; } }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #a9c1bd;
  padding-top: 0;
  font-size: .94rem;
}
.footer-band { height: clamp(90px, 14vw, 150px); overflow: hidden; background: var(--cream); }
.footer-band img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }

.footer-main {
  display: grid; gap: 2.2rem;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  padding-block: clamp(2.6rem, 5vw, 3.6rem);
}
@media (max-width: 880px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-main { grid-template-columns: 1fr; } }

.site-footer .logo { color: var(--paper); margin-right: 0; }
.site-footer .logo:hover { color: var(--paper); }
.site-footer h4 {
  color: var(--paper); font-family: var(--font-body); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: .95rem;
}
.site-footer ul { list-style: none; display: grid; gap: .55rem; }
.site-footer a { color: #c2d6d3; text-decoration: none; }
.site-footer a:hover { color: var(--amber); text-decoration: underline; }
.site-footer p { color: #93aeaa; }

.footer-bottom {
  border-top: 1px solid rgba(253, 243, 227, .13);
  padding-block: 1.3rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center;
  font-size: .85rem; color: #7f9a96;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-left: auto; }

/* ---------- forms ---------- */

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field .hint { font-size: .84rem; color: var(--body-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--body);
  padding: .78rem .95rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232, 148, 46, .22);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- misc utilities ---------- */

.text-centre { text-align: center; }
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1.2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.tag {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .68rem; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal-deep);
  font-size: .78rem; font-weight: 650;
}
.tag.amber { background: var(--amber-soft); color: var(--amber-deep); }
.tag.coral { background: var(--coral-soft); color: var(--coral-deep); }

.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.6rem 2.6rem; }
.logo-strip img { max-height: 42px; width: auto; opacity: .72; filter: saturate(0); transition: opacity .2s ease, filter .2s ease; }
.logo-strip img:hover { opacity: 1; filter: none; }

/* Reveal on scroll. Gated behind .js so that without JavaScript — and for any
   crawler or reader that does not run it — every section is simply visible. */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}
