/* ==========================================================================
   On The Go Golf — Global Stylesheet
   Brand system: charcoal / sage / cream / warm gold. Fraunces + Inter.
   Single locked theme (no dark mode) — this is a fixed brand identity,
   not a generic product UI, so the palette does not adapt to
   prefers-color-scheme.
   ========================================================================== */

:root {
  /* Brand palette (locked) */
  --charcoal: #1a1a1a;
  --charcoal-soft: #2b2b28;
  --sage: #7a9b76;
  --sage-dark: #4c6549;
  --sage-tint: #e4ebe2;
  --cream: #f0ede5;
  --cream-alt: #e7e2d5;
  --gold: #c9a668;
  --gold-dark: #a9854e;
  --white: #ffffff;
  --ink-muted: rgba(26, 26, 26, 0.68);
  --ink-on-sage: #17241a;
  --hairline: rgba(26, 26, 26, 0.12);
  --hairline-on-dark: rgba(240, 237, 229, 0.16);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-base: 0.6s;

  /* Systemic z-index scale */
  --z-sticky: 40;
  --z-header: 50;
  --z-overlay: 60;
  --z-toast: 70;
}

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

html {
  scroll-behavior: smooth;
}

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

h1, .h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.015em;
}

h3, .h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* Italic emphasis inside display headings — same family, descender-safe */
em.accent {
  font-style: italic;
  font-weight: 500;
  color: var(--sage-dark);
  line-height: 1.15;
  display: inline-block;
  padding-bottom: 0.08em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background-color 0.35s var(--ease-out-expo);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 10px 30px -12px rgba(26, 26, 26, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-on-dark {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-on-dark:hover {
  background: var(--cream);
}

.btn-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(240, 237, 229, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-out-expo), background-color 0.35s var(--ease-out-expo);
}

.btn-primary .btn-icon {
  background: rgba(240, 237, 229, 0.14);
}

.btn:hover .btn-icon {
  transform: translate(2px, -1px) scale(1.06);
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: var(--z-toast);
  transition: top 0.25s var(--ease-out-expo);
}

.skip-link:focus {
  top: 1rem;
}

/* Global focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2.5px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(240, 237, 229, 0.86);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--hairline);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(122, 155, 118, 0.35);
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1;
}

.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 0.2rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.5rem;
}

.header-social a {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--charcoal);
  opacity: 0.65;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), background-color 0.3s var(--ease-out-expo);
}

.header-social a:hover {
  opacity: 1;
  background: var(--sage-tint);
  transform: translateY(-1px) scale(1.05);
}

.header-social svg {
  width: 15px;
  height: 15px;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-block: 0.3rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--sage-dark);
  transition: right 0.35s var(--ease-out-expo);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-link {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  border: 1.5px solid var(--hairline);
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.call-link svg {
  width: 15px;
  height: 15px;
  color: var(--sage-dark);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--hairline);
}

.nav-toggle .bar {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav-toggle .bar span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s var(--ease-out-expo), top 0.4s var(--ease-out-expo);
}

.nav-toggle .bar span:nth-child(1) { top: 0; }
.nav-toggle .bar span:nth-child(2) { top: 5.5px; }
.nav-toggle .bar span:nth-child(3) { top: 11px; }

.nav-toggle[aria-expanded="true"] .bar span:nth-child(1) {
  top: 5.5px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar span:nth-child(3) {
  top: 5.5px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: 1.4rem;
  right: var(--gutter);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--hairline-on-dark);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 500;
  display: inline-block;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.mobile-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-nav.is-open li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-nav.is-open li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-nav.is-open li:nth-child(4) a { transition-delay: 0.26s; }
.mobile-nav.is-open li:nth-child(5) a { transition-delay: 0.32s; }

.mobile-nav-footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo) 0.4s;
}

.mobile-nav.is-open .mobile-nav-footer {
  opacity: 1;
}

.mobile-nav-footer a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--hairline-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-footer svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 960px) {
  .main-nav { display: block; }
  .call-link { display: inline-flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 959.98px) {
  .header-cta .btn-primary span.btn-label-full { display: none; }
  .header-cta .btn-primary { padding: 0.7rem; }
  .header-social { display: none; }
}

@media (max-width: 420px) {
  .brand-word span { display: none; }
  .brand-word { font-size: 1.02rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
  isolation: isolate;
}

.hero-bg-layer,
.hero-fg-layer {
  position: absolute;
  inset: -10% -5%;
  z-index: -2;
  will-change: transform;
}

.hero-bg-layer {
  background: linear-gradient(165deg, #223324 0%, var(--charcoal) 46%, #1c241c 100%);
}

.hero-bg-layer .hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.15), rgba(26, 26, 26, 0.75)),
    repeating-linear-gradient(120deg, rgba(122, 155, 118, 0.14) 0 2px, transparent 2px 34px);
}

.hero-photo-label {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  max-width: min(90%, 34rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.7rem;
  color: rgba(240, 237, 229, 0.5);
  border: 1px dashed rgba(240, 237, 229, 0.24);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

@media (max-width: 899.98px) {
  .hero-photo-label {
    display: none;
  }
}

.hero-fg-layer {
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.hero-swoosh {
  position: absolute;
  bottom: -6%;
  left: -8%;
  width: 60%;
  min-width: 420px;
  color: var(--sage);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--gutter);
  padding-block: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 2rem;
  }
}

.hero-copy h1 {
  color: var(--cream);
}

.hero-copy .lede {
  color: rgba(240, 237, 229, 0.78);
  margin-top: 1.1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-ctas .btn-secondary {
  border-color: rgba(240, 237, 229, 0.5);
  color: var(--cream);
}

.hero-ctas .btn-secondary:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.hero-ctas .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.hero-ctas .btn-primary:hover {
  background: var(--cream);
}

.hero-ctas .btn-primary .btn-icon {
  background: rgba(26, 26, 26, 0.12);
}

.hero-microcopy {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: rgba(240, 237, 229, 0.6);
}

.hero-panel {
  background: rgba(240, 237, 229, 0.08);
  border: 1px solid rgba(240, 237, 229, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-panel-inner {
  background: rgba(26, 26, 26, 0.35);
  border-radius: calc(var(--radius-lg) - 0.45rem);
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 0.8rem;
  border-bottom: 1px solid rgba(240, 237, 229, 0.12);
}

.hero-panel-row:first-child { padding-top: 0; }
.hero-panel-row:last-child { border-bottom: none; padding-bottom: 0; }

.hero-panel-row .label {
  font-size: 0.85rem;
  color: rgba(240, 237, 229, 0.65);
}

.hero-panel-row .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-layer,
  .hero-fg-layer {
    transform: none !important;
  }
}

/* ==========================================================================
   What We Do
   ========================================================================== */

.what-we-do {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.wwd-head {
  max-width: 42rem;
  margin-bottom: 3.25rem;
}

.wwd-head h2 {
  margin-top: 0.6rem;
}

.wwd-head .lede {
  margin-top: 1rem;
}

.wwd-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .wwd-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
  }

  .wwd-card--corporate {
    grid-column: span 2;
    grid-row: span 2;
  }
  .wwd-card--wedding {
    grid-column: span 2;
  }
  .wwd-card--brewery {
    grid-column: span 1;
  }
  .wwd-card--hotel {
    grid-column: span 1;
  }
}

.wwd-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.wwd-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wwd-card--corporate {
  background: var(--charcoal);
  color: var(--cream);
  min-height: 20rem;
}

.wwd-card--wedding {
  background: var(--sage);
  color: var(--ink-on-sage);
}

.wwd-card--brewery {
  background: var(--cream-alt);
  color: var(--charcoal);
  border: 1px solid var(--hairline);
}

.wwd-card--hotel {
  background: var(--gold);
  color: var(--charcoal);
}

.wwd-card-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
}

.wwd-card--brewery .wwd-card-icon,
.wwd-card--hotel .wwd-card-icon {
  background: rgba(26, 26, 26, 0.08);
}

.wwd-card-icon svg {
  width: 20px;
  height: 20px;
}

.wwd-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-top: 1.2rem;
}

.wwd-card p {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 30ch;
}

.wwd-card--corporate p,
.wwd-card--wedding p {
  opacity: 0.92;
}

.wwd-differentiator {
  margin-top: 3rem;
  border-top: 1px solid var(--hairline);
  padding-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .wwd-differentiator {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 3rem;
  }
}

.wwd-diff-list {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .wwd-diff-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wwd-diff-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.wwd-diff-item svg {
  width: 20px;
  height: 20px;
  color: var(--sage-dark);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.wwd-diff-item p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.wwd-diff-item strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ==========================================================================
   Packages preview
   ========================================================================== */

.packages {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--cream-alt);
}

.packages-head {
  max-width: 42rem;
  margin-bottom: 3.25rem;
}

.packages-head h2 {
  margin-top: 0.6rem;
}

.packages-head .lede {
  margin-top: 1rem;
}

.packages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pkg-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo),
    border-color 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
}

.pkg-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pkg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, var(--sage));
}

.pkg-card--warrior { --accent: var(--gold); }
.pkg-card--corporate { --accent: var(--charcoal); }
.pkg-card--brewery { --accent: var(--sage); }

.pkg-card:hover,
.pkg-card:focus-within {
  border-color: var(--accent, var(--sage));
  box-shadow: 0 20px 40px -28px rgba(26, 26, 26, 0.35);
}

.pkg-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent, var(--sage)) 16%, transparent);
  color: var(--accent, var(--sage-dark));
}

.pkg-card--corporate .pkg-card-icon {
  color: var(--charcoal);
}

.pkg-card-icon svg {
  width: 20px;
  height: 20px;
}

.pkg-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  margin-top: 1.1rem;
}

.pkg-card-top p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.pkg-card-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease-out-expo), opacity 0.35s var(--ease-out-expo), margin-top 0.45s var(--ease-out-expo);
}

.pkg-card-details > * {
  overflow: hidden;
}

.pkg-card:hover .pkg-card-details,
.pkg-card:focus-within .pkg-card-details {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 1.25rem;
}

.pkg-card-details ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline);
}

.pkg-card-details li {
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding-left: 1.1rem;
  position: relative;
}

.pkg-card-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent, var(--sage));
}

.pkg-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.pkg-card-link span {
  transition: transform 0.3s var(--ease-out-expo);
}

.pkg-card-link:hover span {
  transform: translateX(3px);
}

/* Fallback for browsers without focus-within/hover nuance (touch): keep details
   visible at rest below tablet width so nothing is hidden behind a hover state
   that touch input can't reach. */
@media (max-width: 779.98px) {
  .pkg-card-details {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 1.25rem;
  }
}

/* ==========================================================================
   Stats (count-up on scroll)
   ========================================================================== */

.stats {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--charcoal);
  color: var(--cream);
}

.stats-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.stats-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(240, 237, 229, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  text-align: center;
}

@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: rgba(240, 237, 229, 0.72);
}

/* ==========================================================================
   Gallery (horizontal scroll)
   ========================================================================== */

.gallery {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gallery-head h2 {
  margin-top: 0.6rem;
  max-width: 32rem;
}

.gallery-nav {
  display: none;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .gallery-nav { display: flex; }
}

.gallery-nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo);
}

.gallery-nav-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.gallery-nav-btn svg {
  width: 18px;
  height: 18px;
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) transparent;
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 999px;
}

.gallery-slide {
  flex: 0 0 min(80vw, 420px);
  scroll-snap-align: start;
}

.gallery-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--charcoal-soft), var(--charcoal));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, rgba(122, 155, 118, 0.14) 0 2px, transparent 2px 34px);
}

.gallery-photo-label {
  position: relative;
  font-size: 0.7rem;
  color: rgba(240, 237, 229, 0.55);
  border: 1px dashed rgba(240, 237, 229, 0.24);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  text-align: center;
}

.gallery-caption {
  margin-top: 1rem;
}

.gallery-caption h3 {
  font-size: 1.15rem;
}

.gallery-caption p {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ==========================================================================
   Final CTA (magnetic button)
   ========================================================================== */

.final-cta {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  padding-block: clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.final-cta-swoosh {
  position: absolute;
  top: -8%;
  right: -10%;
  width: 55%;
  min-width: 380px;
  color: var(--sage);
  opacity: 0.35;
  transform: rotate(180deg);
  z-index: -1;
}

.final-cta-inner {
  max-width: 42rem;
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-inner h1,
.final-cta-inner h2 {
  color: var(--cream);
}

.final-cta-inner .lede {
  color: rgba(240, 237, 229, 0.78);
  margin-inline: auto;
  margin-top: 1rem;
}

.magnetic-wrap {
  display: inline-flex;
  margin-top: 2.25rem;
}

.btn-lg {
  padding: 1.15rem 2.1rem;
  font-size: 1.02rem;
}

.final-cta .hero-microcopy {
  margin-top: 1.5rem;
}

/* ==========================================================================
   Interior page hero (Services / Pricing / About)
   ========================================================================== */

.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(3rem, 6vw, 4.5rem);
}

.eyebrow--on-dark {
  color: var(--sage);
}

.page-hero h1 {
  color: var(--cream);
  margin-top: 0.6rem;
  max-width: 24ch;
}

.page-hero .lede {
  color: rgba(240, 237, 229, 0.78);
  margin-top: 1.1rem;
}

/* ==========================================================================
   404 page
   ========================================================================== */

.not-found {
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  text-align: center;
}

.not-found-inner {
  max-width: 34rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found-svg {
  width: min(360px, 80vw);
  margin-block: 1.5rem 0.5rem;
  overflow: visible;
}

.not-found-arc {
  fill: none;
  stroke: var(--sage);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
}

.not-found-ob-line {
  stroke: var(--gold-dark);
  stroke-width: 2;
  stroke-dasharray: 4 5;
}

.not-found-ob-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--gold-dark);
}

.not-found-flag line {
  stroke: var(--charcoal);
  stroke-width: 2;
  stroke-linecap: round;
}

.not-found-flag path {
  fill: var(--sage-dark);
}

.not-found-flag-cup {
  fill: none;
  stroke: var(--charcoal);
  stroke-width: 2;
  opacity: 0.35;
}

.not-found-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  fill: var(--sage-dark);
}

.not-found-ball circle:first-child {
  fill: var(--cream);
  stroke: var(--charcoal);
  stroke-width: 1.6;
}

.not-found-ball-dimple {
  fill: var(--charcoal);
  opacity: 0.4;
  stroke: none;
}

.not-found h1 {
  margin-top: 0.25rem;
}

.not-found .lede {
  margin-top: 1rem;
  margin-inline: auto;
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.25rem;
}

.not-found-links {
  display: flex;
  gap: 0.5rem 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}

.not-found-links a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--sage);
  transition: color 0.2s var(--ease-out-expo);
}

.not-found-links a:hover {
  color: var(--sage-dark);
}

/* ==========================================================================
   Package detail cards (Services page)
   ========================================================================== */

.pkg-detail-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.pkg-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pkg-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.pkg-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 860px) {
  .pkg-detail {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.pkg-detail-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent, var(--sage)) 16%, transparent);
  color: var(--accent, var(--sage-dark));
  flex-shrink: 0;
}

.pkg-detail-icon svg {
  width: 24px;
  height: 24px;
}

.pkg-detail--warrior { --accent: var(--gold); }
.pkg-detail--corporate { --accent: var(--charcoal); }
.pkg-detail--brewery { --accent: var(--sage); }

.pkg-detail--corporate .pkg-detail-icon {
  color: var(--charcoal);
}

.pkg-detail-body h2 {
  margin-top: 0.5rem;
}

.pkg-detail-body .lede {
  margin-top: 0.85rem;
  max-width: 62ch;
}

.pkg-detail-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}

@media (min-width: 560px) {
  .pkg-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pkg-detail-grid h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-family: var(--font-body);
}

.pkg-detail-grid ul {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pkg-detail-grid li {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.pkg-detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent, var(--sage));
}

.pkg-detail-body .btn-secondary {
  margin-top: 1.75rem;
}

/* ==========================================================================
   Setup requirements
   ========================================================================== */

.setup-req {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--cream-alt);
}

.setup-req-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.setup-req-head h2 {
  margin-top: 0.6rem;
}

.setup-req-head .lede {
  margin-top: 1rem;
}

.setup-req-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .setup-req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .setup-req-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.setup-req-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.setup-req-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.setup-req-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-tint);
  color: var(--sage-dark);
}

.setup-req-icon svg {
  width: 20px;
  height: 20px;
}

.setup-req-item h3 {
  font-size: 1.1rem;
  margin-top: 1.1rem;
}

.setup-req-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ==========================================================================
   Service area
   ========================================================================== */

.service-area {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.service-area-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 780px) {
  .service-area-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.service-area h2 {
  color: var(--cream);
  margin-top: 0.6rem;
  max-width: 22ch;
}

.service-area .lede {
  color: rgba(240, 237, 229, 0.78);
  margin-top: 1rem;
}

.service-area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-area-cities li {
  padding: 0.75rem 1.4rem;
  border: 1.5px solid rgba(240, 237, 229, 0.25);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
}

/* ==========================================================================
   FAQ (native details/summary accordion)
   ========================================================================== */

.faq {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.faq-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.faq-head h2 {
  margin-top: 0.6rem;
}

.faq-list {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  transition: border-color 0.3s var(--ease-out-expo);
}

.faq-item[open] {
  border-color: var(--sage);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding-block: 0.35rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--sage-tint);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--font-body);
  transition: transform 0.35s var(--ease-out-expo);
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: 3.5rem 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hairline-on-dark);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand .brand-word { color: var(--cream); }
.footer-brand .brand-word span { color: var(--sage); }

.footer-tagline {
  margin-top: 1.1rem;
  max-width: 26rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(240, 237, 229, 0.6);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 237, 229, 0.5);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(240, 237, 229, 0.82);
  transition: color 0.3s var(--ease-out-expo);
}

.footer-col a:hover {
  color: var(--sage);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--hairline-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out-expo), background-color 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo);
}

.footer-social a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--charcoal);
  transform: translateY(-2px) scale(1.05);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(240, 237, 229, 0.55);
}

.footer-bottom a:hover {
  color: var(--cream);
}

/* ==========================================================================
   Pricing page
   ========================================================================== */

.pricing-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 780px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.75rem);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.price-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card--full {
  border-color: var(--gold);
  box-shadow: 0 20px 48px -30px rgba(26, 26, 26, 0.4);
}

.price-card-ribbon {
  position: absolute;
  top: -0.9rem;
  left: clamp(2rem, 4vw, 2.75rem);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.price-card-tagline {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  color: var(--ink-muted);
  max-width: 30ch;
}

.price-card-amount {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
}

.price-card-currency {
  font-size: 0.5em;
  vertical-align: 0.3em;
  color: var(--sage-dark);
  margin-right: 0.1em;
}

.price-card-list {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}

.price-card-list li {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.price-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--sage);
}

.price-card--full .price-card-list li::before {
  background: var(--gold-dark);
}

.price-card-best {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.price-card-best strong {
  color: var(--charcoal);
}

.price-card-cta {
  margin-top: 1.75rem;
  justify-content: center;
}

.pricing-deposit-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  text-align: center;
}

/* ---------- What affects your price ---------- */

.price-factors {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--cream-alt);
}

.price-factors-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.price-factors-head h2 {
  margin-top: 0.6rem;
}

.price-factors-head .lede {
  margin-top: 0.85rem;
}

.price-factors-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 620px) {
  .price-factors-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1020px) {
  .price-factors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-factor {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.price-factor.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price-factor-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-tint);
  color: var(--sage-dark);
}

.price-factor-icon svg {
  width: 20px;
  height: 20px;
}

.price-factor h3 {
  margin-top: 1.1rem;
  font-size: 1.05rem;
}

.price-factor p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ==========================================================================
   Booking page
   ========================================================================== */

.booking-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.booking-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .booking-layout {
    grid-template-columns: 1.65fr 1fr;
    gap: 3rem;
  }
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.booking-card-head {
  margin-bottom: 2rem;
}

.booking-card-head h2 {
  margin-top: 0.5rem;
}

.booking-card-head .lede {
  margin-top: 0.6rem;
  font-size: 1rem;
  max-width: none;
}

/* ---------- Fields ---------- */

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#booking-form[hidden] {
  display: none;
}

.field-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .field-row--split {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-weight: 600;
  font-size: 0.88rem;
}

.field-required {
  color: var(--sage-dark);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.3s var(--ease-out-expo), background-color 0.3s var(--ease-out-expo);
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--sage);
}

.field.is-valid input,
.field.is-valid select {
  border-color: var(--sage-dark);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: var(--gold-dark);
  background: color-mix(in srgb, var(--gold) 10%, var(--cream));
}

.field-msg {
  font-size: 0.82rem;
  min-height: 1.2em;
  color: var(--gold-dark);
}

/* ---------- Optional-details disclosure ---------- */

.field-more {
  margin-top: 0.25rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
}

.field-more summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sage-dark);
}

.field-more summary::-webkit-details-marker {
  display: none;
}

.field-more-toggle {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--sage-tint);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  transition: transform 0.35s var(--ease-out-expo);
}

.field-more[open] .field-more-toggle {
  transform: rotate(45deg);
}

.field-more-body {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- Honeypot (bot trap, invisible to real users) ---------- */

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

/* ---------- Form-level submit error ---------- */

.booking-form-error {
  font-size: 0.9rem;
  color: var(--gold-dark);
  background: color-mix(in srgb, var(--gold) 10%, var(--cream));
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

/* ---------- Submit ---------- */

.btn.is-loading {
  opacity: 0.7;
  cursor: default;
}

.booking-submit-row {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.booking-submit-row .magnetic-wrap {
  margin-top: 0;
}

.booking-submit-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  max-width: 46ch;
}

.booking-submit-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Success state ---------- */

.booking-success {
  text-align: left;
}

.booking-success-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: var(--sage-tint);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.booking-success-icon svg {
  width: 22px;
  height: 22px;
}

.booking-success h2 {
  margin-top: 0;
}

.booking-success .lede {
  margin-top: 0.85rem;
  max-width: 52ch;
}

.booking-success .btn {
  margin-top: 1.75rem;
}

/* ---------- Aside ---------- */

.booking-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-aside-card {
  background: var(--cream-alt);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}

.booking-steps {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-steps li {
  display: flex;
  gap: 1rem;
}

.booking-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.booking-steps h3 {
  font-size: 1rem;
}

.booking-steps p {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.booking-aside-contact {
  background: var(--charcoal);
  color: var(--cream);
}

.booking-aside-link {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.booking-aside-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(240, 237, 229, 0.72);
  line-height: 1.55;
}

/* ==========================================================================
   Founder story (About page)
   ========================================================================== */

.founder-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.founder-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .founder-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}

.founder-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--charcoal-soft), var(--charcoal));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, rgba(122, 155, 118, 0.14) 0 2px, transparent 2px 34px);
}

.founder-photo-label {
  position: relative;
  font-size: 0.72rem;
  color: rgba(240, 237, 229, 0.55);
  border: 1px dashed rgba(240, 237, 229, 0.24);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  text-align: center;
}

.founder-body {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.founder-body.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.founder-body h2 {
  margin-top: 0.6rem;
  max-width: 20ch;
}

.founder-body p {
  margin-top: 1.1rem;
  color: var(--ink-muted);
  max-width: 56ch;
  line-height: 1.65;
}

.founder-signoff {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.founder-signoff-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.founder-signoff-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.3;
}

.founder-signoff-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}

/* ==========================================================================
   Service area map (About page)
   ========================================================================== */

.about-map {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.about-map-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-map-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-map-copy h2 {
  color: var(--cream);
  margin-top: 0.6rem;
  max-width: 22ch;
}

.about-map-copy .lede {
  color: rgba(240, 237, 229, 0.78);
  margin-top: 1rem;
  max-width: 40ch;
}

.about-map-legend {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-map-legend li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(240, 237, 229, 0.85);
}

.about-map-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.about-map-dot--hq {
  background: var(--gold);
}

.about-map-dot--served {
  background: var(--sage);
}

.about-map-graphic {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.about-map-graphic.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-map-svg {
  width: 100%;
  height: auto;
  max-width: 30rem;
}

.about-map-region {
  fill: rgba(122, 155, 118, 0.1);
}

.about-map-route {
  fill: none;
  stroke: rgba(240, 237, 229, 0.35);
  stroke-width: 2;
  stroke-dasharray: 2 8;
  stroke-linecap: round;
}

.about-map-region-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  fill: rgba(240, 237, 229, 0.4);
}

.about-map-pin-ring {
  fill: none;
  stroke-width: 1.5;
}

.about-map-pin--hq .about-map-pin-ring {
  stroke: rgba(201, 166, 104, 0.4);
}

.about-map-pin--served .about-map-pin-ring {
  stroke: rgba(122, 155, 118, 0.4);
}

.about-map-pin-dot--hq {
  fill: var(--gold);
}

.about-map-pin-dot--served {
  fill: var(--sage);
}

.about-map-pin-label {
  font-family: var(--font-display);
  font-size: 14px;
  fill: var(--cream);
}

.about-map-pin-sublabel {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  fill: var(--gold);
}

/* ==========================================================================
   Legal content (Privacy / Terms)
   ========================================================================== */

.legal-section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.legal-updated {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-top: -0.5rem;
}

.legal-content {
  max-width: 68ch;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.legal-content > div {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.legal-content h2 {
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.4rem;
}

.legal-content li + li {
  margin-top: 0.6rem;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--charcoal);
}

.legal-content strong {
  color: var(--charcoal);
}

/* ==========================================================================
   Sticky "Book Now" bar
   Fixed to the viewport bottom; shown once the user scrolls past the hero,
   hidden again near the footer so it never sits on top of the final CTA.
   `visibility` is toggled (not just opacity/transform) so the bar's links
   drop out of the tab order while off-screen instead of trapping keyboard
   focus on an invisible element.
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-top: 1px solid var(--hairline-on-dark);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease, visibility 0s linear 0.4s;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease, visibility 0s linear 0s;
}

.sticky-cta-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-cta-text {
  display: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  margin-right: auto;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.sticky-cta-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--hairline-on-dark);
  color: var(--cream);
  flex-shrink: 0;
  transition: background-color 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo);
}

.sticky-cta-call svg {
  width: 16px;
  height: 16px;
}

.sticky-cta-call:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.sticky-cta .btn {
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
}

@media (min-width: 640px) {
  .sticky-cta-call {
    display: inline-flex;
  }
}

@media (min-width: 780px) {
  .sticky-cta-text {
    display: block;
  }
}
