/* ==========================================================================
   Larry's World of Travel — site styles
   Light/bright theme. Palette derived from the hummingbird logo:
   navy for text, magenta -> purple -> teal gradient for accents.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — bright by default */
  --bg:            #ffffff;
  --bg-soft:       #f5f9fc;   /* sky-tinted panel */
  --bg-sand:       #fdf8f1;   /* warm panel, used to alternate sections */
  --bg-tint:       #eef6fa;

  /* Ink */
  --navy:          #10204a;   /* headings, 15:1 on white */
  --navy-soft:     #1d3566;
  --ink:           #2f3d57;   /* body copy, 10:1 on white */
  --muted:         #566579;   /* secondary text, 6.4:1 on white */
  --line:          #e2e8f0;
  --line-strong:   #cbd6e3;

  /* Brand accents (logo gradient) */
  --magenta:       #c2189f;
  --purple:        #7b2fbe;
  --teal:          #12b3a8;
  /* Decorative only — the bright teal end is too light to carry white text */
  --gradient:      linear-gradient(95deg, var(--magenta) 0%, var(--purple) 48%, var(--teal) 100%);
  /* Same hues, darkened so white text clears 4.5:1 at every point along it */
  --gradient-deep: linear-gradient(95deg, #a3157f 0%, #6a25a6 48%, #0b7a70 100%);

  /* Accent text colours — darkened so they pass 4.5:1 on white */
  --magenta-ink:   #a3157f;
  --teal-ink:      #0b7a70;
  --amber-ink:     #9a6510;

  /* Type */
  --font-display: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.80rem + 0.10vw, 0.88rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.18vw, 1.10rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.36vw, 1.42rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.70vw, 1.90rem);
  --step-3:  clamp(1.85rem, 1.55rem + 1.35vw, 2.75rem);
  --step-4:  clamp(2.40rem, 1.75rem + 2.90vw, 4.40rem);

  /* Space */
  --sp-1: 0.375rem;
  --sp-2: 0.75rem;
  --sp-3: 1.25rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6rem;

  /* Shape */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16, 32, 74, 0.06), 0 2px 8px rgba(16, 32, 74, 0.05);
  --shadow:    0 4px 12px rgba(16, 32, 74, 0.07), 0 14px 40px rgba(16, 32, 74, 0.08);
  --shadow-lg: 0 10px 30px rgba(16, 32, 74, 0.10), 0 30px 70px rgba(16, 32, 74, 0.12);

  --header-h: 96px;
  --measure: 68ch;
  --wrap: 1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 var(--sp-2);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }

p { margin: 0 0 var(--sp-3); max-width: var(--measure); }
a { color: var(--navy-soft); }
a:hover { color: var(--magenta-ink); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 var(--sp-3); padding-left: 1.15em; }
li { margin-bottom: var(--sp-1); }
strong { color: var(--navy); font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow { width: min(100% - 2.5rem, 900px); }

.section { padding-block: var(--sp-6); }
.section--soft { background: var(--bg-soft); }
.section--sand { background: var(--bg-sand); }
.section--tight { padding-block: var(--sp-5); }

/* Small letterspaced label that sits above a heading */
.eyebrow {
  display: block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: var(--sp-2);
}

.section-head { margin-bottom: var(--sp-4); }
.section-head p { color: var(--muted); }

/* Gradient hairline used as a section divider */
.rule {
  height: 3px;
  width: 84px;
  border: 0;
  border-radius: 3px;
  background: var(--gradient);
  margin: 0 0 var(--sp-3);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 700;
  line-height: 1.2;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gradient-deep);
  color: #fff;
  box-shadow: 0 4px 14px rgba(123, 47, 190, 0.28);
}
.btn--primary:hover { color: #fff; box-shadow: 0 6px 20px rgba(123, 47, 190, 0.38); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); color: #fff; }

.btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--purple); color: var(--navy); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: var(--step--1); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: 0.6rem;
}

.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 72px; width: auto; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: none;
}

/* --- Primary navigation ------------------------------------------------- */
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li { margin: 0; }

.nav__link {
  position: relative;
  display: block;
  padding: 0.45rem 0.15rem;
  font-weight: 600;
  font-size: var(--step-0);
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.nav__link:hover { color: var(--magenta-ink); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--navy); }

/* Hamburger — only rendered below the desktop breakpoint */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

.header-phone {
  font-weight: 700;
  font-size: var(--step-1);
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.header-phone:hover { color: var(--magenta-ink); }
.header-phone small {
  display: block;
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--bg-tint); }

.hero__media {
  position: relative;
  height: clamp(360px, 60vh, 620px);
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* Soft white fade at the bottom so the card below feels attached to the photo */
.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 70%, #fff 100%);
}

.hero__badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  z-index: 2;
  background: var(--gradient-deep);
  color: #fff;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* White title card overlapping the photo. Kept compact and with a shallow
   overlap so the ship stays the thing you notice first. */
.hero__card {
  position: relative;
  z-index: 3;
  margin-top: clamp(-64px, -4vw, -40px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 2.2vw, 1.85rem) clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
}

.hero__line {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta-ink);
  margin-bottom: 0.35rem;
}

/* Deliberately smaller than the global h1 scale — this headline sits in a card
   over the photo, so it has to stay out of the ship's way. */
.hero__card h1 {
  font-size: clamp(1.9rem, 1.35rem + 2.1vw, 3.05rem);
  margin-bottom: 0.35rem;
}

.hero__facts {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin: 0 auto;
  max-width: none;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-3);
}

/* --------------------------------------------------------------------------
   7. At-a-glance bar
   -------------------------------------------------------------------------- */
.glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: var(--sp-4);
}

.glance__cell {
  background: #fff;
  padding: var(--sp-3);
  text-align: center;
}
.glance__label {
  display: block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.glance__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   8. Two-column body with sticky pricing panel
   -------------------------------------------------------------------------- */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-block: var(--sp-5) var(--sp-6);
}

.layout__main > section { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.layout__main > section + section { margin-top: var(--sp-6); }

.layout__aside {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}

/* Pricing card */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-card__head {
  background: var(--gradient-deep);
  color: #fff;
  padding: var(--sp-3);
  text-align: center;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.price-card__body { padding: var(--sp-3); }

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: 0.7rem;
}
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row__label {
  font-weight: 700;
  color: var(--navy);
}
.price-row__label small {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-row__value {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-card__note {
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.55;
  margin: var(--sp-2) 0 var(--sp-3);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
}

.price-card__actions { display: grid; gap: 0.6rem; }

.price-card__contact {
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: var(--step--1);
  color: var(--muted);
}
.price-card__contact a { font-weight: 700; color: var(--navy); text-decoration: none; }
.price-card__contact a:hover { color: var(--magenta-ink); text-decoration: underline; }

/* Mobile action bar — hidden on desktop, shown below 1024px */
.action-bar { display: none; }

/* --------------------------------------------------------------------------
   9. Overview
   -------------------------------------------------------------------------- */
.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink);
}

.checklist { list-style: none; padding: 0; margin: var(--sp-3) 0 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  max-width: var(--measure);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--gradient);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   10. Itinerary
   -------------------------------------------------------------------------- */
.itinerary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--sp-4);
  align-items: start;
}

.days { border-top: 1px solid var(--line); }

.day {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: var(--sp-3);
  align-items: baseline;
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--line);
}

.day__num {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta-ink);
}

.day__port {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  max-width: none;
}
.day__note {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.15rem;
}

.day__times {
  text-align: right;
  font-size: var(--step--1);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tag--overnight { background: #f3e8fb; color: #6b21a8; }
.tag--tender    { background: #e0f5f3; color: var(--teal-ink); }

.map-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3);
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}
.map-panel img { border-radius: var(--radius-sm); width: 100%; }
.map-panel figcaption {
  font-size: var(--step--1);
  color: var(--muted);
  margin-top: var(--sp-2);
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. Ship specs
   -------------------------------------------------------------------------- */
.specs {
  display: grid;
  /* 130px keeps all five tiles on one row down to tablet width */
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.spec {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--sp-3);
  text-align: center;
}
.spec__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.spec__label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   12. Collapsible groups (What's on board)
   -------------------------------------------------------------------------- */
.accordion { margin-top: var(--sp-3); }

.acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.acc[open] { box-shadow: var(--shadow-sm); }

.acc > summary {
  cursor: pointer;
  list-style: none;
  padding: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--navy);
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary:hover { background: var(--bg-soft); }

.acc__count {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
  margin-right: 0.5rem;
}

.acc__chev {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
  color: var(--navy);
  font-size: 0.8rem;
}
.acc[open] .acc__chev { transform: rotate(180deg); }

.acc__body {
  padding: 0 var(--sp-3) var(--sp-3);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-3);
}
.acc__body > p:first-child { margin-top: 0; }

.venues { list-style: none; padding: 0; margin: 0; }
.venues li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  padding-block: 0.6rem;
  margin: 0;
}
.venues li + li { border-top: 1px dashed var(--line); }
.venues b { color: var(--navy); font-family: var(--font-display); font-size: var(--step-0); }
.venues span { font-size: var(--step--1); color: var(--muted); }
.venues .deck {
  margin-left: auto;
  font-size: var(--step--1);
  color: var(--muted);
  white-space: nowrap;
}

.fineprint {
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.55;
  margin-top: var(--sp-3);
}

/* --------------------------------------------------------------------------
   13. How booking works
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: calc(-1 * var(--sp-2));
  left: var(--sp-3);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-0);
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: 0.35rem; }
.step p { margin: 0; font-size: var(--step--1); color: var(--muted); max-width: none; }

/* --------------------------------------------------------------------------
   14. Quote form
   -------------------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.75rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}
.field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.field .opt {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--purple); }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; }

.field .error {
  display: none;
  font-size: var(--step--1);
  font-weight: 600;
  color: #b3261e;
  margin-top: 0.3rem;
}
.field.is-invalid input,
.field.is-invalid select { border-color: #b3261e; background: #fdf3f2; }
.field.is-invalid .error { display: block; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.form-actions .note {
  font-size: var(--step--1);
  color: var(--muted);
  margin: 0;
  flex: 1 1 240px;
  min-width: 0;
}

/* Honeypot — kept out of sight and out of the tab order, but not display:none,
   since some bots skip fields that are display:none. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  border: 1px solid #a7d9d3;
  background: #eafaf7;
  color: #0a5c55;
}
.form-status.is-visible { display: block; }
.form-status strong { color: #0a5c55; }
.form-status a { color: #0a5c55; font-weight: 700; }

/* Failure state — the message could not be delivered */
.form-status--error {
  border-color: #e8b4b0;
  background: #fdf3f2;
  color: #8c1d18;
}
.form-status--error strong,
.form-status--error a { color: #8c1d18; }

/* Submit button while the request is in flight */
.btn[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   15. About Larry
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-tint);
}
.about__photo img { width: 100%; }

.credentials {
  list-style: none;
  padding: 0;
  margin: var(--sp-3) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.credentials li {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--navy);
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: #c3cede;
  padding-block: var(--sp-5) var(--sp-4);
  margin-top: var(--sp-6);
}
.site-footer a { color: #fff; }
.site-footer h4 {
  color: #fff;
  font-size: var(--step-0);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-bottom: var(--sp-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-4);
}
.footer-grid p { color: #c3cede; }

.footer-logo {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: inline-block;
  margin-bottom: var(--sp-3);
}
.footer-logo img { height: 56px; width: auto; }

/* --- Social links ------------------------------------------------------- */
/* Small flat glyphs, not buttons — they sit beside the phone number in the
   header and should read as secondary to it. */
.social {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social li { margin: 0; }

.social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.social a:hover {
  background: var(--bg-tint);
  color: var(--magenta-ink);
}
.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* Sits inside the mobile nav drawer; the header copy is hidden at that size */
.social--drawer {
  display: none;
  gap: 0.25rem;
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
}

/* Icon beside a text link, e.g. in the contact panel */
.social-row { list-style: none; padding: 0; margin: 0; }
.social-row li { margin: 0; }
.social-row li + li { border-top: 1px solid var(--line); }
.social-row a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-block: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.social-row a:hover { color: var(--magenta-ink); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.social-row .handle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--step--1);
  color: var(--muted);
  margin-left: auto;
}

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-hours {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--step--1);
  color: #9fb0c6;
}
.footer-contact li { margin-bottom: 0.45rem; }
.footer-contact a { text-decoration: none; font-weight: 600; }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  justify-content: space-between;
  font-size: var(--step--1);
  color: #9fb0c6;
}
.footer-bottom p { margin: 0; max-width: none; }

/* --------------------------------------------------------------------------
   17. Interior page components
   -------------------------------------------------------------------------- */

/* Compact banner for pages that don't carry a photo hero */
.page-head {
  background:
    radial-gradient(1200px 300px at 15% -40%, rgba(194, 24, 159, 0.10), transparent 65%),
    radial-gradient(1000px 320px at 85% -30%, rgba(18, 179, 168, 0.14), transparent 65%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding-block: var(--sp-5);
}
.page-head h1 { font-size: var(--step-3); margin-bottom: var(--sp-2); }
.page-head p {
  font-size: var(--step-1);
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

/* Breadcrumb-ish back link */
.backlink {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: var(--sp-2);
}
.backlink:hover { color: var(--magenta-ink); }

/* --- Card grid ---------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--sp-3);
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-tint);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }

.card__flag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gradient-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sp-3);
}
.card__meta {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: 0.35rem;
}
.card__body h3 { margin-bottom: 0.4rem; }
.card__body p { font-size: var(--step--1); color: var(--muted); margin-bottom: var(--sp-3); }

.card__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-3);
  font-size: var(--step--1);
  color: var(--ink);
}
.card__facts li {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: 0.35rem;
  border-top: 1px solid var(--line);
  margin: 0;
}
.card__facts b { font-weight: 700; color: var(--navy); }

.card__foot {
  margin-top: auto;
  padding-top: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Destination cards: the heading link covers the whole card */
.card__body h3 a { color: inherit; text-decoration: none; }
.card__body h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card:has(h3 a) { position: relative; }
.card:has(h3 a):hover h3 a { color: var(--magenta-ink); }
.card__link {
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--magenta-ink);
}
.card:has(h3 a) .card__media img { transition: transform 0.4s ease; }
.card:has(h3 a):hover .card__media img { transform: scale(1.05); }
.card__price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--navy);
  margin-right: auto;
}
.card__price small {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Text-only tiles (destinations, services) --------------------------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-3);
}

.tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  overflow: hidden;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--gradient);
}
.tile h3 { margin-bottom: 0.35rem; }
.tile h3 a { color: inherit; text-decoration: none; }
.tile h3 a:hover { color: var(--magenta-ink); }
/* Make the whole tile clickable without nesting links */
.tile h3 a::after { content: ""; position: absolute; inset: 0; }
.tile:has(h3 a) { transition: box-shadow 0.15s ease, transform 0.15s ease; }
.tile:has(h3 a):hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.tile__tag { position: relative; z-index: 1; }
.tile p { font-size: var(--step--1); color: var(--muted); margin: 0; }
.tile__tag {
  display: inline-block;
  margin-top: var(--sp-2);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--magenta-ink);
  text-decoration: none;
}
.tile__tag:hover { text-decoration: underline; }

/* --- Destination page banner -------------------------------------------- */
.dest-hero {
  position: relative;
  height: clamp(220px, 34vh, 380px);
  overflow: hidden;
  background: var(--bg-tint);
}
.dest-hero img { width: 100%; height: 100%; object-fit: cover; }
.dest-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,32,74,0.15) 0%, rgba(16,32,74,0) 45%, rgba(255,255,255,0.9) 100%);
}

/* Attribution line under a photo — required by the image licences */
.photo-credit {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}
.photo-credit a { color: var(--muted); }

/* ==========================================================================
   Home stage — the hero IS the gallery
   Full-bleed photography that cross-fades behind a compact copy block, so the
   picture is the page rather than something a card sits on top of.
   ========================================================================== */
.stage {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  overflow: hidden;
  min-height: clamp(500px, 82vh, 780px);
  display: flex;
  align-items: flex-end;
}

.stage__media { position: absolute; inset: 0; z-index: 0; }

/* Scrim: dark from the lower-left so white type stays legible over any photo,
   clearing away toward the top-right where the picture should breathe. */
.stage__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9, 18, 40, 0.92) 0%, rgba(9, 18, 40, 0.55) 30%,
                    rgba(9, 18, 40, 0.12) 62%, rgba(9, 18, 40, 0.30) 100%),
    linear-gradient(to right, rgba(9, 18, 40, 0.72) 0%, rgba(9, 18, 40, 0.22) 48%,
                    rgba(9, 18, 40, 0) 78%);
}

.stage__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
}

/* Sized in px, not ch: ch resolves against the body font, which would cap a
   54px display headline at roughly 300px and wrap it into a narrow tower. */
.stage__copy { max-width: min(620px, 100%); }

.stage__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.6rem;
}
.stage__eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient);
  flex: none;
}

.stage__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 0.6rem;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(9, 18, 40, 0.45);
}

.stage__sub {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfdaea;
  margin: 0 0 var(--sp-3);
  max-width: none;
}

.stage__cta { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Frosted secondary button, for use over photography */
.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }

/* --- "Now showing" panel + thumbnail rail -------------------------------- */
.stage__now {
  justify-self: end;
  width: min(300px, 42vw);
  text-align: left;
}

.stage__nowlabel {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fe3dc;
  margin: 0 0 0.15rem;
}

.showcase__name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}
.showcase__tag {
  font-size: var(--step--1);
  color: #c3cede;
  margin: 0.15rem 0 0.7rem;
  max-width: none;
}
.showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--step--1);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.showcase__link:hover { color: #fff; border-bottom-color: var(--teal); }

/* Thumbnail rail doubles as the slide picker */
.showcase__dots {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: var(--sp-3) 0 0;
  padding: 0;
}
.showcase__dots li { margin: 0; }
.showcase__dots button {
  position: relative;
  width: 44px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14) center/cover no-repeat;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.showcase__dots button:hover { opacity: 0.9; transform: translateY(-2px); }
.showcase__dots button[aria-current="true"] {
  opacity: 1;
  box-shadow: 0 0 0 2px #fff;
}

/* Thin progress bar across the foot of the stage */
.stage__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
}
.stage__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient);
}
.stage__progress span.is-running {
  animation: stage-progress var(--hold, 6s) linear forwards;
}
@keyframes stage-progress { from { width: 0 } to { width: 100% } }

/* --- Slide layer --------------------------------------------------------- */
.showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity, transform;
}
.showcase__img.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out both;
}

@keyframes kenburns {
  from { transform: scale(1.0) translate3d(0, 0, 0); }
  to   { transform: scale(1.09) translate3d(-1.2%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase__img.is-active { animation: none; }
  .showcase__img { transition: none; }
  .stage__progress span.is-running { animation: none; width: 100%; }
}

@media (max-width: 860px) {
  .stage { min-height: clamp(460px, 72vh, 620px); }
  .stage__inner { grid-template-columns: minmax(0, 1fr); }
  .stage__now { justify-self: start; width: 100%; }
  .stage__copy { max-width: none; }
  .showcase__tag { display: none; }
}

/* --- Contact page ------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.info-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3);
}
.info-card + .info-card { margin-top: var(--sp-3); }
.info-card h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  padding-block: 0.6rem;
  margin: 0;
}
.info-list li + li { border-top: 1px solid var(--line); }
.info-list .label {
  display: block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-list a, .info-list strong {
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
}
.info-list a:hover { color: var(--magenta-ink); text-decoration: underline; }

/* Empty-state panel — used for the bio until Larry supplies copy */
.placeholder {
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-soft);
  padding: var(--sp-4);
  color: var(--muted);
  text-align: center;
}
.placeholder p { margin: 0 auto; max-width: 46ch; }

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: var(--sp-5);
  }

  /* Pricing card stops being sticky and moves inline above the content */
  .layout__aside {
    position: static;
    order: -1;
  }

  .itinerary { grid-template-columns: minmax(0, 1fr); }
  .map-panel { position: static; }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }

  /* Nav collapses into a drawer under the header */
  .nav-toggle { display: grid; place-items: center; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: var(--sp-2) var(--sp-3) var(--sp-3);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    /* visibility is deliberately NOT transitioned — it flips instantly with the
       class so the open/closed state never depends on a transition finishing */
    transition: transform 0.2s ease, opacity 0.2s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--line); }
  .nav__link { padding: 0.9rem 0.25rem; font-size: var(--step-1); }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--magenta-ink); }

  /* Exactly one copy is ever visible: header above 1024, drawer below. */
  .social--header { display: none; }
  .social--drawer { display: flex; }

  /* Fixed bottom action bar takes over the sticky panel's job */
  .action-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    gap: 0.6rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(16, 32, 74, 0.10);
  }
  .action-bar .btn { flex: 1; padding-inline: 0.75rem; }
  /* Only pages that actually carry the bar reserve room for it */
  body.has-action-bar { padding-bottom: 76px; }
}

@media (max-width: 860px) {
  .glance { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: minmax(0, 1fr); }
  .about__photo { max-width: 260px; }
}

@media (max-width: 640px) {
  :root { --header-h: 76px; }

  .wrap { width: min(100% - 1.75rem, var(--wrap)); }
  .section { padding-block: var(--sp-5); }

  .brand img { height: 56px; }
  .header-phone { font-size: var(--step-0); }
  .header-phone small { display: none; }
  .header-actions .btn { display: none; }
  .page-head { padding-block: var(--sp-4); }

  .hero__card {
    margin-top: -50px;
    border-radius: var(--radius);
    text-align: left;
  }
  .hero__cta { justify-content: flex-start; }
  .hero__facts { font-size: var(--step--1); letter-spacing: 0.1em; }

  .day {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.4rem var(--sp-2);
  }
  .day__num { grid-column: 1 / -1; }
  .day__times { text-align: right; }

  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   19. Print — so Larry can still hand a client a paper copy
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .action-bar, .hero__cta, .form-card, .btn { display: none !important; }
  body.has-action-bar { padding-bottom: 0; }
  .layout { grid-template-columns: 1fr; }
  .site-footer { background: #fff; color: #000; }
  .site-footer a, .site-footer h4, .footer-grid p, .footer-bottom { color: #000; }
  .acc { break-inside: avoid; }
  .acc__body { display: block !important; }
}
