/* ============================================
   K9 Dominion — Kraftwork K9 Pro–style layout
   Layout, font, spacing inspired by kraftworkk9pro.com
   ============================================ */

:root {
  --accent: #1a365d;
  --accent-dark: #0f2744;
  --accent-light: #2c5282;
  --accent-soft: rgba(26, 54, 93, 0.08);
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-alt: #f7f7f7;
  --bg-warm: #fafafa;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --border: #e0e0e0;
  --radius: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;
  --header-h: 132px;
  --top-bar-h: 2rem;
  --transition: 0.2s ease;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --container: 1140px;
  --line-height-body: 1.75;
  --line-height-tight: 1.3;
}

@media (max-width: 900px) {
  :root {
    --header-h: 112px;
  }
}
@media (max-width: 480px) {
  :root {
    --header-h: 92px;
  }
}
/* Legacy alias for components that use --royal */
:root {
  --royal: var(--accent);
  --royal-dark: var(--accent-dark);
  --royal-light: var(--accent-light);
  --royal-soft: var(--accent-soft);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: var(--line-height-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-dark);
}

/* ----- Container (Kraftwork-style max-width) ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Top bar (Kraftwork-style) ----- */
.top-bar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 6px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.top-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.top-bar a:hover {
  color: rgba(255,255,255,0.9);
}

/* ----- Header (sticky with top bar) ----- */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.site-header-wrap.is-hidden {
  transform: translateY(calc(-1 * (var(--top-bar-h) + var(--header-h))));
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-header {
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  justify-content: center;
  margin: var(--space-md) 0 var(--space-sm);
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(26,54,93,0.35);
}
.social-facebook {
  background: #1877F2;
  border-color: #1877F2;
}
.social-facebook:hover {
  background: #0f5fc7;
  border-color: #0f5fc7;
}
.social-icon {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  transform: translateY(-1px);
}

.header-phone {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header-phone a {
  color: var(--accent);
  padding: 6px 0;
}
.header-phone a:hover {
  color: var(--accent-dark);
}
@media (max-width: 900px) {
  .header-phone {
    font-size: 16px;
  }
}
/* Legacy .header-cta for pages that still use it */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  transition: background var(--transition), color var(--transition);
}
.header-cta a:hover {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  color: var(--text);
  font-weight: 600;
}
.logo:hover {
  color: var(--text);
}
.site-logo-img {
  display: block;
  height: 120px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-logo-img {
    height: 96px;
  }
}
@media (max-width: 480px) {
  .site-logo-img {
    height: 76px;
  }
}
.logo-icon {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}
.nav-list a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a.active {
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 600;
}

/* Kraftwork-style dropdowns */
.nav-item-has-children {
  position: relative;
}
.nav-arrow {
  font-size: 0.6em;
  opacity: 0.8;
  margin-left: 2px;
}
.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 50;
}
.nav-item-has-children:hover .nav-dropdown,
.nav-item-has-children.focus .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li {
  margin: 0;
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  border-radius: 0;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 900px) {
  .nav-list {
    position: fixed;
    top: calc(var(--top-bar-h) + var(--header-h));
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - var(--top-bar-h) - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }
  .nav-list.open {
    opacity: 1;
    visibility: visible;
  }
  .nav-list > li {
    border-bottom: 1px solid var(--border);
  }
  .nav-list > li > a {
    font-size: 1.05rem;
    padding: 14px 12px;
    display: block;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 16px;
    background: var(--bg-alt);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-item-has-children.dropdown-open .nav-dropdown {
    max-height: 400px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-dropdown a {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
  .nav-arrow {
    transition: transform 0.2s ease;
  }
  .nav-item-has-children.dropdown-open .nav-arrow {
    transform: rotate(180deg);
  }
  .nav-toggle {
    display: flex;
  }
}

/* Lock body scroll when mobile nav or glossary popup is open */
html.nav-open,
body.nav-open,
body.term-popup-open {
  overflow: hidden;
}

/* Mobile sticky lead actions */
.mobile-quick-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
}
.mobile-quick-btn {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}
.mobile-quick-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.mobile-quick-btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.mobile-quick-btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
/* Sticky quick-actions bars disabled — bars themselves stay defined for legacy markup but never render */
.mobile-quick-actions { display: none !important; }

/* Desktop sticky lead actions */
.desktop-quick-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}
.desktop-quick-actions .container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.desktop-quick-btn {
  flex: 0 0 auto;
  text-align: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  min-width: 92px;
}
.desktop-quick-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.desktop-quick-btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.desktop-quick-btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.desktop-quick-actions { display: none !important; }

/* ----- Video preview + modal (YouTube popup) ----- */
.video-preview {
  width: 100%;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}
.video-preview:hover {
  box-shadow: var(--shadow-md);
}
.video-preview-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-preview-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 38px;
  color: #fff;
  text-shadow: 0 8px 22px rgba(0,0,0,0.85);
}
.video-preview-meta strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.video-preview-meta span {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.video-modal[hidden] {
  display: none;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.video-modal-panel {
  position: relative;
  width: min(960px, calc(100vw - 24px));
  margin: calc(var(--top-bar-h) + var(--header-h) + 12px) auto 12px;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.video-modal-close:hover {
  background: rgba(0,0,0,0.75);
}
.video-modal-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal-fallback {
  padding: 14px 16px 18px;
  background: #0b0b0b;
  color: rgba(255,255,255,0.92);
  text-align: center;
}
.video-modal-fallback p {
  margin: 0.25rem 0;
  color: rgba(255,255,255,0.86);
}

@media (max-width: 640px) {
  .video-preview {
    grid-template-columns: 1fr;
  }
  .video-modal-panel {
    margin: calc(var(--top-bar-h) + var(--header-h) + 8px) auto 8px;
    width: calc(100vw - 16px);
  }
}

/* ----- "Link-like" button (for inline OFA/FCI triggers) ----- */
.linkish {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.linkish:hover {
  color: var(--accent-dark);
}

/* ----- Article preview modal ----- */
.article-modal[hidden] { display: none; }
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
}
.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.article-modal-panel {
  position: relative;
  width: min(980px, calc(100vw - 24px));
  margin: calc(var(--top-bar-h) + var(--header-h) + 12px) auto 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.article-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.article-modal-close:hover {
  background: var(--bg-alt);
}
.article-modal-body {
  padding: clamp(16px, 3vw, 28px);
  max-height: calc(100vh - var(--top-bar-h) - var(--header-h) - 32px);
  overflow: auto;
}
.article-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 0.35rem;
}
.article-modal-sub {
  margin: 0 0 var(--space-lg);
  color: var(--text-muted);
}
.article-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
}
.article-card h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 1.1rem;
}
.article-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.article-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.article-modal-note {
  margin: var(--space-md) 0 0;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .article-modal-grid {
    grid-template-columns: 1fr;
  }
  .article-modal-panel {
    width: calc(100vw - 16px);
    margin: calc(var(--top-bar-h) + var(--header-h) + 8px) auto 8px;
  }
}

/* ----- Thank-you modal (form submissions) ----- */
.thankyou-modal[hidden] { display: none; }
.thankyou-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}
.thankyou-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.thankyou-panel {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  margin: calc(var(--top-bar-h) + var(--header-h) + 18px) auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(16px, 3vw, 26px);
  text-align: center;
}
.thankyou-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.thankyou-close:hover {
  background: var(--bg-alt);
}
.thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin: 0 0 0.5rem;
}
.thankyou-sub {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .thankyou-panel {
    margin: calc(var(--top-bar-h) + var(--header-h) + 10px) auto;
    width: calc(100vw - 16px);
  }
}

/* ----- Hero (Home) — Kraftwork-style ----- */
.hero {
  position: relative;
  min-height: 75vh;
  /* Use modern viewport unit to avoid iOS Safari's address bar height jump */
  min-height: 75svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--top-bar-h) + var(--header-h) + 48px) 24px 64px;
  overflow: hidden;
  background: #0e1118;     /* fallback color so there's NEVER a blank gap */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .hero-video,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep key subject centered; mobile crops tighter on sides */
  object-position: 50% 50%;
  display: block;
}
.hero-bg .hero-video {
  /* Video sits on top of the fallback image. We start at opacity 0 and
     fade in via .video-ready so the poster fills the frame instantly while
     the MP4 buffers — no black flash on slow mobile networks. */
  z-index: 2;
  opacity: 0;
  transition: opacity 600ms ease-out;
}
.hero-bg.video-ready .hero-video { opacity: 1; }
.hero-bg .hero-bg-fallback {
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg .hero-video { display: none; }
}

@media (max-width: 900px) {
  /* On phones the video can be GPU-heavy and rarely autoplays cleanly with
     low battery / data-saver. Show the (already-cropped) poster image only
     and skip the video to keep the page fast and steady. */
  .hero-bg .hero-video { display: none; }
  .hero-bg img {
    object-position: 50% 35%;  /* favor the dog's face rather than the lower body */
  }
}

/* Overlay needs the HIGHEST z-index inside hero-bg or text contrast breaks */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.75) 75%, rgba(0,0,0,0.85) 100%),
    linear-gradient(135deg, rgba(26,54,93,0.25) 0%, rgba(26,54,93,0.45) 50%, rgba(26,54,93,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 62vh;
  padding-top: 0;
}

/* Home hero readability: thick shadow (no box) */
.hero-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin: 0 0 16px;
}

/* Kraftwork-style hero: eyebrow + tagline */
.hero-kraftwork .hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px;
  /* Move to very top of video (without colliding on small screens) */
  margin-top: clamp(-28px, -3vh, -10px);
  text-shadow: 0 4px 14px rgba(0,0,0,0.95);
}

@media (max-width: 600px) {
  .hero-kraftwork .hero-eyebrow {
    margin-top: clamp(-18px, -2vh, -8px);
  }
}
.hero-kraftwork .hero-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 14px rgba(0,0,0,0.95);
}
.hero-kraftwork .hero-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin: 0 0 20px;
}
.hero-kraftwork .hero-sub {
  /* Keep this line near the bottom of the hero video */
  margin: auto auto 0;
  max-width: 880px;
  font-size: 16px;
  line-height: 1.55;
  text-shadow: 0 5px 18px rgba(0,0,0,0.95);
}
.hero-kraftwork .hero-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: var(--space-md) auto 0;
  width: 100%;
}
.hero-kraftwork .btn-outline.light-border {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  background: transparent;
}
.hero-kraftwork .btn-outline.light-border:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 22px rgba(0,0,0,0.95);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.65;
  text-shadow: 0 5px 18px rgba(0,0,0,0.95);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Metro K9–style hero: two breed buttons */
.hero-breed-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin: var(--space-lg) 0;
}
.hero-breed-btns a {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow var(--transition);
  text-decoration: none;
}
.hero-breed-btns a {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.hero-breed-btns a:hover {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Breed buttons below hero video */
.hero-breed-cta-strip {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
.hero-cta.hero-cta-below {
  margin: 0 0 var(--space-md);
}
.trust-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.trust-pill {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  text-align: center;
}
.trust-pill strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.35;
}
.trust-pill span {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .trust-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .trust-pill-grid {
    grid-template-columns: 1fr;
  }
}

.hero-reserve {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
  margin: var(--space-md) 0 0;
  line-height: 1.6;
}
.hero-reserve strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: #fff;
}

/* Press / CTA block (Kraftwork "Secure a Top-Trained GSD" style) */
.press-cta-block {
  background: var(--accent);
  color: #fff;
  padding: var(--space-xl) 0;
  text-align: center;
}
.press-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.press-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: #fff;
}
.press-cta-text {
  margin: 0 0 var(--space-lg);
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  font-size: 1.05rem;
}
.press-cta-block .btn-primary {
  background: #fff;
  color: var(--accent);
}
.press-cta-block .btn-primary:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

/* Facility links (Kraftwork "Facility Photos | Meet the Team | In the Press") */
.facility-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

/* Featured grid (Kraftwork product-style cards) */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.featured-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.featured-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.featured-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.featured-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.featured-card:hover .featured-card-cta {
  text-decoration: underline;
}

.home-path-grid-kraftwork {
  max-width: 720px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .home-path-grid-kraftwork {
    grid-template-columns: 1fr;
  }
}

/* ----- Resource hub cards ----- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.resource-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.resource-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.resource-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.resource-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.resource-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}
.resource-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.resource-card:hover .resource-card-cta {
  text-decoration: underline;
}
.resource-card-featured {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
}
.newsletter-form button {
  flex-shrink: 0;
}

.table-wrap { margin-top: var(--space-md); }
.feeding-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.feeding-table th,
.feeding-table td { padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.feeding-table th { background: var(--bg-alt); font-weight: 600; }
.feeding-table tbody tr:nth-child(even) { background: var(--bg-warm); }
.calculator-form .form-group { margin-bottom: 1rem; }
.calculator-form label { display: block; margin-bottom: 0.35rem; font-weight: 600; }
.calculator-form input,
.calculator-form select { width: 100%; max-width: 240px; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; }
.calculator-result { margin-top: var(--space-lg); padding: var(--space-md); background: var(--accent-soft); border-radius: var(--radius); }

/* ----- Long-form article prose ----- */
.long-form-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-sm);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.long-form-content h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.long-form-content p { margin: 0 0 1rem; line-height: var(--line-height-body); }
.long-form-content .intro { font-size: 1.1rem; color: var(--text-muted); }

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ----- Page hero (inner pages) — Kraftwork-style ----- */
.page-hero {
  background: var(--bg-alt);
  padding: calc(var(--top-bar-h) + var(--header-h) + 48px) 0 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero .container {
  max-width: 780px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
}
.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
  line-height: var(--line-height-body);
}
.page-hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-hero .hero-cta-line {
  margin: 20px 0 0;
  font-size: 16px;
  color: var(--text-muted);
}
.page-hero .hero-cta-line a {
  font-weight: 600;
}
.page-hero .page-hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.page-hero .page-hero-cta .btn {
  min-width: 240px;
  justify-content: center;
}
@media (max-width: 640px) {
  .page-hero .page-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero .page-hero-cta .btn {
    width: 100%;
    min-width: 0;
  }
}
.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}
.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb span {
  color: var(--text-muted);
  margin: 0 0.35em;
}

/* ----- Photo gallery / image strips ----- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
.photo-grid.two { grid-template-columns: repeat(2, 1fr); }
.photo-grid.three { grid-template-columns: repeat(3, 1fr); }
.photo-grid.four { grid-template-columns: repeat(4, 1fr); }
.img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  background: var(--bg-alt);
  position: relative;
}
.img-wrap.landscape { aspect-ratio: 4/3; }
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}
.img-wrap:hover img {
  transform: scale(1.05);
}
.img-wrap .puppy-cards-pdf {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border: 0;
  pointer-events: none;
  background: transparent;
}
.photo-grid .img-wrap { margin: 0; }
@media (max-width: 700px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid.four { grid-template-columns: repeat(2, 1fr); }
  .img-wrap .puppy-cards-pdf,
  .breed-card-img .puppy-cards-pdf {
    display: none;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn-outline.dark {
  color: var(--text);
  border-color: var(--border);
}
.btn-outline.dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-block {
  width: 100%;
}

/* ----- Sections — Kraftwork-style spacing ----- */
.section {
  padding: 64px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
}
.section-title.center {
  text-align: center;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 0 28px;
  line-height: var(--line-height-body);
}
.section-sub.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 var(--space-md);
  line-height: 1.65;
}
.about-content {
  max-width: 720px;
  margin: 0 auto;
}
.about-content p {
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
  line-height: 1.7;
}
.about-content p:last-child {
  margin-bottom: 0;
}

/* ----- Testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.testimonial {
  margin: 0;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.testimonial p {
  margin: 0 0 var(--space-sm);
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
}
.testimonial cite {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ----- Intro / Home content ----- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: start;
}
.intro-text p {
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
}
.intro-stats {
  display: flex;
  gap: var(--space-lg);
  flex-shrink: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-stats {
    flex-direction: row;
    justify-content: flex-start;
  }
}

/* ----- Breed cards ----- */
.breed-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.breed-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}
.breed-card:hover {
  box-shadow: var(--shadow-lg);
}
.breed-card:nth-child(even) {
  grid-template-columns: 1fr 380px;
}
.breed-card:nth-child(even) .breed-card-img {
  order: 2;
}
.breed-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.breed-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}
.breed-card-img .puppy-cards-pdf {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border: 0;
  pointer-events: none;
  background: transparent;
}
.breed-card:hover .breed-card-img img {
  transform: scale(1.03);
}
.breed-card-content {
  padding: var(--space-lg);
}
.breed-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}
.breed-card-content p {
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
  font-size: 0.98rem;
}
.breed-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breed-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
}
.breed-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .breed-card,
  .breed-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .breed-card:nth-child(even) .breed-card-img {
    order: 0;
  }
  .breed-card-img {
    aspect-ratio: 16/10;
  }
}

/* ----- Training grid ----- */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}
.training-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.2s ease;
  box-shadow: var(--shadow);
}
.training-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.training-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}
.training-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}
.training-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Protection ----- */
.protection-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}
.protection-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.protection-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.protection-item p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.protection-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.protection-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.protection-content:hover .protection-img img {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .protection-content {
    grid-template-columns: 1fr;
  }
  .protection-img {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ----- Scent ----- */
.scent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.scent-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.scent-block:hover {
  box-shadow: var(--shadow-md);
}
.scent-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}
.scent-block p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .scent-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Obedience ----- */
.obedience-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.obedience-col h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--space-xs);
}
.obedience-col p {
  margin: 0 0 var(--space-md);
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.obedience-col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .obedience-content {
    grid-template-columns: 1fr;
  }
}

/* ----- Behavior ----- */
.behavior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.behavior-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.behavior-item:hover {
  box-shadow: var(--shadow-md);
}
.behavior-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 var(--space-sm);
}
.behavior-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .behavior-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Why ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.why-card {
  text-align: center;
  padding: var(--space-lg);
}
.why-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--space-sm);
}
.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Build a Beast options & add-ons ----- */
.options-heading {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin: var(--space-xl) 0 var(--space-md);
  text-align: center;
}
.beast-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}
.beast-options-grid.beast-addons {
  margin-top: var(--space-sm);
}
.beast-option-card {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.beast-option-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--space-xs);
}
.beast-option-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.beast-options-form {
  max-width: 720px;
  margin: 0 auto;
}
.beast-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--bg-warm);
}
.beast-fieldset legend {
  font-weight: 600;
  color: var(--text);
  padding: 0 0.5rem;
}
.beast-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  margin-top: var(--space-sm);
}
.beast-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
}
.beast-checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  accent-color: var(--accent);
}

@media (max-width: 600px) {
  .beast-options-grid {
    grid-template-columns: 1fr;
  }
  .beast-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Contact ----- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.contact-info-top {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}
.contact-form-block {
  min-width: 0;
}
@media (max-width: 700px) {
  .contact-info-top {
    grid-template-columns: 1fr;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-info {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-info p strong {
  color: var(--text);
}
.contact-note {
  margin-top: var(--space-md) !important;
  font-size: 0.85rem !important;
  opacity: 0.9;
}

@media (max-width: 700px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

/* ----- Skip link (accessibility) ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ----- Footer trust strip ----- */
.footer-trust-strip {
  background: var(--accent);
  color: #fff;
  padding: var(--space-md) 0;
  text-align: center;
}
.footer-trust-line {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-trust-line span:not(:last-child)::after {
  content: " · ";
  margin-left: 0.25rem;
  opacity: 0.9;
}

/* ----- Footer ----- */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: 0;
}
.footer-inner {
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  margin-bottom: var(--space-xs);
}
.footer-brand .logo-icon {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-lg);
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  text-align: left;
  justify-items: center;
}
.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.footer-nav-group a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-nav-group a:hover {
  color: var(--accent);
}
.footer-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-sm);
}
.footer-contact a {
  color: var(--accent);
}
.footer-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.footer-quicklinks a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.footer-quicklinks a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin: 0;
}

/* ----- Related resources block (internal linking + usability) ----- */
.related-resources {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
}
.related-resources h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--space-md);
  text-align: center;
}
.related-resources-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  max-width: 640px;
  margin: 0 auto;
}
.related-resources-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.related-resources-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ----- Start here / Quick actions (home) ----- */
.quick-actions {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}
.quick-actions .container {
  max-width: 900px;
}
.quick-actions h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 var(--space-sm);
  text-align: center;
}
.quick-actions p.sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 var(--space-lg);
}
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-sm);
}
.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.2s ease;
  box-shadow: var(--shadow);
}
.quick-action-btn:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--text);
}
.quick-action-btn .icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
  line-height: 1;
}
.quick-action-btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.quick-action-btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* ----- Home: Metro K9–style path cards (four options) ----- */
.home-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.home-path-card {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.home-path-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
}
.home-path-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 var(--space-sm);
}
.home-path-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.55;
}
.home-path-card a.card-link {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.home-path-card a.card-link::after {
  content: "→";
}

/* ----- Home: Litter info form block ----- */
.litter-form-block {
  background: var(--bg-alt);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
}
.litter-form-intro {
  text-align: center;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.litter-form-block .litter-form,
.litter-form-block .contact-form {
  max-width: 520px;
  margin: 0 auto;
}
.form-required-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.form-required-hint .required-mark {
  color: var(--accent);
  font-weight: 600;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
.form-row-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
.litter-form-block .form-group label,
.litter-form-block .litter-form label,
.litter-form-block .contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.9em;
}
.required-mark {
  color: var(--accent);
}
.litter-form-block .litter-form input,
.litter-form-block .litter-form textarea,
.litter-form-block .contact-form input,
.litter-form-block .contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.litter-form-block .litter-form input:focus,
.litter-form-block .litter-form textarea:focus,
.litter-form-block .contact-form input:focus,
.litter-form-block .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.litter-form-block .litter-form textarea,
.litter-form-block .contact-form textarea {
  min-height: 4rem;
  resize: vertical;
}
.litter-form-block .litter-form .btn-block {
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1.05rem;
}
.home-cta-line {
  text-align: center;
  margin: var(--space-lg) 0;
  font-size: 1.05rem;
  color: var(--text);
}
.home-cta-line a {
  font-weight: 600;
}

/* ----- FAQ (home) ----- */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.faq-q {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.faq-a {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: var(--line-height-body);
}

/* ----- FAQ accordions (inner pages) ----- */
.faq-accordion .faq-details-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
}
.faq-details > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--text);
  position: relative;
}
.faq-details > summary::-webkit-details-marker {
  display: none;
}
.faq-details > summary:after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
}
.faq-details[open] > summary:after {
  content: '-';
}
.faq-details .faq-details-body {
  padding: 0 16px 16px 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ----- Article list (blog) ----- */
.article-list {
  display: grid;
  gap: var(--space-xl);
  max-width: 720px;
  margin: 0 auto;
}
.article-card {
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.article-card-title {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.article-card-title a {
  color: var(--text);
  text-decoration: none;
}
.article-card-title a:hover {
  color: var(--accent);
}
.article-card-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}
.article-card-excerpt {
  margin: 0 0 var(--space-sm);
  color: var(--text-muted);
  line-height: var(--line-height-body);
}
.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
}

/* ----- Proudly Serving (home) ----- */
.proudly-serving {
  text-align: center;
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.proudly-serving h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 var(--space-sm);
}
.proudly-serving p {
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----- Inner page bottom CTA (Metro K9 style) ----- */
.inner-page-bottom-cta {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
.inner-page-bottom-cta p {
  margin: 0 0 var(--space-sm);
  font-size: 1rem;
  color: var(--text);
}
.inner-page-bottom-cta p a {
  font-weight: 600;
}
.inner-page-bottom-cta .related-links {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.inner-page-bottom-cta .related-links a {
  color: var(--accent);
}
.inner-page-bottom-cta .related-links span {
  margin: 0 0.35rem;
  color: var(--border);
}

/* ----- Utility: link to next section ----- */
.page-cta {
  text-align: center;
  padding: var(--space-lg) 0;
}
.page-cta .btn {
  margin: 0 var(--space-xs);
}

/* ----- Glossary terms: click to show definition popup ----- */
.term {
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  color: inherit;
}
.term:hover {
  color: var(--accent);
}
.term:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.term-popup {
  position: fixed;
  z-index: 10000;
  max-width: 320px;
  padding: var(--space-md);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.term-popup[aria-hidden="true"] {
  display: none;
}
.term-popup .term-popup-close {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius);
}
.term-popup .term-popup-close:hover {
  color: var(--text);
  background: var(--bg-alt);
}
.term-popup .term-popup-title {
  margin: 0 24px 0 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
}
.term-popup .term-popup-body {
  margin: var(--space-sm) 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
body.term-popup-open .term-popup {
  display: block;
}
@media (max-width: 480px) {
  .term-popup {
    left: 12px !important;
    right: 12px;
    max-width: none;
    top: 50% !important;
    transform: translateY(-50%);
  }
}

/* ----- Blog hub (Metro K9) ----- */
.blog-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: var(--space-xl);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.blog-hub-main { min-width: 0; }
.blog-sidebar {
  position: sticky;
  top: calc(var(--top-bar-h) + var(--header-h) + 12px);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
}
.blog-sidebar h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 var(--space-sm);
}
.blog-sidebar .blog-search-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.blog-sidebar input[type="search"] {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}
.blog-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-filter-list button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition);
}
.blog-filter-list button:hover,
.blog-filter-list button.is-active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text);
}
.blog-sidebar-popular {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.blog-sidebar-popular ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.6;
}
.blog-sidebar-popular a { color: var(--accent); }
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.blog-post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.blog-post-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-post-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.blog-post-tags span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
}
.blog-post-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--text);
}
.blog-post-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-sm);
  flex: 1;
}
.blog-post-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.blog-post-card-read {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}
.blog-hub-legacy {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}
.blog-hub-legacy h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
}
@media (max-width: 960px) {
  .blog-hub-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}

/* ----- Blog article (single post) ----- */
.blog-article-hero {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(165deg, var(--bg-alt) 0%, var(--bg-warm) 45%, var(--bg-alt) 100%);
}
.blog-article-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}
.blog-article-hero .breadcrumb {
  margin-bottom: var(--space-sm);
  font-size: 0.88rem;
}
.blog-article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
  color: var(--text);
}
.blog-article-hero .blog-article-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 var(--space-md);
}
.blog-article-hero .blog-article-lead a {
  color: var(--accent);
  font-weight: 600;
}
.blog-article-featured {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.blog-article-meta-row {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
}
.blog-article-meta-row::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.15rem;
}
.blog-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.blog-share span {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-right: 0.35rem;
}
.blog-share a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  transition: background var(--transition), border-color var(--transition), transform 0.15s ease;
}
.blog-share a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Article body: readable column + card */
.blog-article-shell {
  padding: var(--space-xl) var(--space-md) var(--space-xxl);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 55%, var(--bg) 100%);
}
.blog-article-body {
  max-width: 40rem;
  margin: 0 auto;
  padding: var(--space-xl) clamp(1rem, 4vw, 2rem);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Prose refinements (blog posts only) */
.long-form-content.blog-article-prose {
  padding-top: 0;
  padding-bottom: 0;
}
.long-form-content.blog-article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem;
  padding: 0 0 0.5rem 0;
  border-top: none;
  border-bottom: 2px solid var(--accent-soft);
  color: var(--text);
  line-height: 1.3;
}
.long-form-content.blog-article-prose h2:first-of-type {
  margin-top: 0;
}
.long-form-content.blog-article-prose h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.35rem 0 0.5rem;
  color: var(--accent-dark);
}
.long-form-content.blog-article-prose p {
  margin: 0 0 1.05rem;
  line-height: 1.72;
  font-size: 1.02rem;
  color: var(--text);
}
.long-form-content.blog-article-prose .intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem 1rem 1.15rem;
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.long-form-content.blog-article-prose ul,
.long-form-content.blog-article-prose ol {
  margin: 0 0 1.1rem 0;
  padding-left: 1.35rem;
  line-height: 1.68;
  font-size: 1.02rem;
}
.long-form-content.blog-article-prose li {
  margin-bottom: 0.45rem;
}
.long-form-content.blog-article-prose li::marker {
  color: var(--accent);
}
.long-form-content.blog-article-prose strong {
  color: var(--text);
  font-weight: 700;
}
.long-form-content.blog-article-prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.long-form-content.blog-article-prose a:hover {
  text-decoration-thickness: 2px;
}
.long-form-content.blog-article-prose .blog-takeaways {
  margin: 0 0 1.75rem;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.long-form-content.blog-article-prose .blog-takeaways h2 {
  margin-top: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none;
  color: var(--accent-dark);
}
.long-form-content.blog-article-prose .blog-takeaways ul {
  margin-bottom: 0;
}
.blog-related {
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}
.blog-related-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.long-form-content.blog-article-prose aside.blog-related h2.blog-related-title {
  border-bottom: none;
  margin-top: 0;
  padding: 0;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
}
.blog-related ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.65;
}
.blog-related a {
  font-weight: 600;
}
.long-form-content.blog-article-prose .btn {
  text-decoration: none;
}
.blog-cta-stack {
  margin: var(--space-xl) 0 var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-warm) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.blog-cta-stack p {
  margin: 0 0 var(--space-md);
  font-weight: 700;
  font-size: 1.08rem;
  font-family: var(--font-display);
}
.blog-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.blog-cta-buttons .btn { margin: 0; }
.blog-post-hidden {
  display: none !important;
}
@media (max-width: 600px) {
  .blog-article-body {
    padding: var(--space-lg) var(--space-md);
  }
  .long-form-content.blog-article-prose h2 {
    font-size: 1.15rem;
  }
}

/* ============================================
   LUXURY POLISH LAYER  —  premium upgrades
   Adds: gold accents, refined typography,
   premium cards, pricing tiles, boarding hero
   ============================================ */

:root {
  --gold: #c9a96e;
  --gold-light: #e0c896;
  --gold-dark: #a08549;
  --gold-soft: rgba(201, 169, 110, 0.12);
  --ink: #0b1a2c;
  --ink-soft: rgba(11, 26, 44, 0.04);
  --shadow-premium: 0 20px 60px rgba(11, 26, 44, 0.12);
  --shadow-deep:   0 30px 90px rgba(11, 26, 44, 0.22);
}

/* Refined accent color (slightly deeper, more premium navy) */
.lux-accent { color: var(--gold) !important; }

/* Section title — add gold underline rule for elevated hierarchy */
.section-title.center::after,
.lux-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}
.lux-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.35rem;
}
.lux-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}
.lux-eyebrow.on-dark { color: var(--gold-light); }
.lux-sub {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-lg);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Premium Buttons — subtle gold sheen on primary ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(26, 54, 93, 0.25);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 130%; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1207;
  background: linear-gradient(135deg, #e6cf95 0%, #c9a96e 55%, #a08549 100%);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(160, 133, 73, 0.35), inset 0 1px 0 rgba(255,255,255,0.5);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease;
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(160, 133, 73, 0.45), inset 0 1px 0 rgba(255,255,255,0.55);
  filter: brightness(1.05);
  color: #1a1207;
}
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease;
  text-decoration: none;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #1a1207;
  transform: translateY(-2px);
}

/* ===== Premium top bar — promotional ticker w/ gold underline ===== */
.top-bar {
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  border-bottom: 1px solid var(--gold-dark);
  position: relative;
}
.top-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== Nav — gold underline on hover for premium feel ===== */
.nav-list > li > a {
  position: relative;
}
.nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  transform: scaleX(1);
}
@media (max-width: 900px) {
  .nav-list > li > a::after { display: none; }
}

/* Boarding nav item — make it stand out */
.nav-list .nav-boarding > a {
  color: var(--accent);
  font-weight: 700;
}
.nav-list .nav-boarding > a .nav-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  border-radius: 3px;
  vertical-align: middle;
}

/* ============================================
   BOARDING FEATURE BLOCK (home page hero)
   ============================================ */
.boarding-feature {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 110, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(26, 54, 93, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0b1a2c 0%, #122842 60%, #0b1a2c 100%);
  color: #fff;
  overflow: hidden;
}
.boarding-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}
.boarding-feature .container { position: relative; z-index: 2; }
.boarding-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .boarding-feature-grid { grid-template-columns: 1fr; }
}
.boarding-feature .lux-eyebrow {
  color: var(--gold-light);
}
.boarding-feature h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.015em;
}
.boarding-feature h2 .gold-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.boarding-feature p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0 0 1.6rem;
  max-width: 560px;
}
.boarding-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.6rem;
}
.boarding-feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.55;
}
.boarding-feature-bullets li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.9em;
  margin-top: 2px;
}
.boarding-feature-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.boarding-feature-card {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-deep);
}
.boarding-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}
.boarding-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.25rem;
  color: #fff;
}
.boarding-feature-card .from-line {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.85rem;
}
.boarding-feature-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.boarding-feature-card .price-row .num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.boarding-feature-card .price-row .unit {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}
.boarding-feature-card .quick-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}
.boarding-feature-card .quick-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 0.45rem;
}
.boarding-feature-card .quick-list li:last-child { border-bottom: none; padding-bottom: 0; }
.boarding-feature-card .quick-list span:last-child {
  color: var(--gold-light);
  font-weight: 700;
}

/* ============================================
   BOARDING PAGE — full layout
   ============================================ */
.boarding-hero {
  position: relative;
  padding: calc(var(--top-bar-h) + var(--header-h) + 64px) 0 80px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(26, 54, 93, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #0b1a2c 0%, #14304f 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.boarding-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(11,26,44,0.6) 100%);
  pointer-events: none;
}
.boarding-hero .container { position: relative; z-index: 2; max-width: 880px; }
.boarding-hero .lux-eyebrow { color: var(--gold-light); }
.boarding-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  margin: 0 0 1.2rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.boarding-hero h1 .gold-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.boarding-hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.boarding-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 2.5rem auto 0;
  max-width: 800px;
}
@media (max-width: 720px) {
  .boarding-hero-stats { grid-template-columns: repeat(2, 1fr); }
}
.boarding-hero-stat {
  padding: 1rem 0.6rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.boarding-hero-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
}
.boarding-hero-stat .lbl {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== Pricing grid (luxury tiers) ===== */
.pricing-section {
  padding: clamp(60px, 9vw, 100px) 0;
  background: var(--bg-warm);
  position: relative;
}
.pricing-section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-xl);
  align-items: stretch;
}
@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(11, 26, 44, 0.06);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(201, 169, 110, 0.5);
}
.price-card-featured {
  background: linear-gradient(180deg, #0f2744 0%, #1a365d 100%);
  border-color: var(--gold);
  color: #fff;
  transform: scale(1.04);
  box-shadow: var(--shadow-premium);
}
.price-card-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(160, 133, 73, 0.35);
}
.price-card-featured:hover { transform: scale(1.04) translateY(-4px); }
.price-card-tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.price-card-featured .price-card-tier { color: #fff; }
.price-card-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1.2rem;
}
.price-card-featured .price-card-meta { color: var(--gold-light); }
.price-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0 0 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.price-card-featured .price-card-price { border-bottom-color: rgba(201,169,110,0.3); }
.price-card-price .currency {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
}
.price-card-featured .price-card-price .currency { color: rgba(255,255,255,0.7); }
.price-card-price .num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
}
.price-card-featured .price-card-price .num { color: #fff; }
.price-card-price .unit {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.price-card-featured .price-card-price .unit { color: rgba(255,255,255,0.75); }
.price-card-features {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  flex-grow: 1;
}
.price-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}
.price-card-featured .price-card-features li { color: rgba(255,255,255,0.88); }
.price-card-features li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}
.price-card-featured .price-card-features li::before { color: var(--gold-light); }
.price-card .btn {
  width: 100%;
}
.price-card-featured .btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-color: var(--gold-dark);
  color: #1a1207;
}
.price-card-featured .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1207;
}

/* ===== Add-ons grid ===== */
.addons-section {
  padding: clamp(60px, 9vw, 100px) 0;
  background: #fff;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: var(--space-xl);
}
.addon-card {
  position: relative;
  padding: 22px 20px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11, 26, 44, 0.04);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.addon-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(11, 26, 44, 0.08);
}
.addon-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
  filter: grayscale(1) brightness(0.6);
}
.addon-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
  color: var(--ink);
}
.addon-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.addon-card .addon-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.01em;
}
.addon-card .addon-price .small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== "What's Included" feature row ===== */
.included-section {
  padding: clamp(60px, 9vw, 100px) 0;
  background: var(--bg-warm);
  position: relative;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: var(--space-xl);
}
.included-tile {
  text-align: center;
  padding: 24px 18px;
}
.included-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(160, 133, 73, 0.3);
}
.included-tile h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.included-tile p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== Premium CTA ribbon (used on boarding & home) ===== */
.lux-cta-ribbon {
  padding: clamp(50px, 7vw, 80px) 24px;
  background:
    radial-gradient(ellipse at top left, rgba(201,169,110,0.15), transparent 60%),
    linear-gradient(135deg, #0b1a2c 0%, #1a365d 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lux-cta-ribbon::before,
.lux-cta-ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 240px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.lux-cta-ribbon::before { top: 18px; }
.lux-cta-ribbon::after { bottom: 18px; }
.lux-cta-ribbon h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.8rem;
  color: #fff;
}
.lux-cta-ribbon h2 .gold-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.lux-cta-ribbon p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  line-height: 1.65;
}
.lux-cta-ribbon .lux-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== Comparison table for boarding ===== */
.compare-section {
  padding: clamp(60px, 9vw, 100px) 0;
  background: #fff;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-xl);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(11, 26, 44, 0.06);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: middle;
}
.compare-table th {
  background: linear-gradient(180deg, #0f2744, #1a365d);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.compare-table th.feature-col,
.compare-table td.feature-col {
  text-align: left;
  background: var(--bg-warm);
  font-weight: 600;
  color: var(--ink);
  min-width: 220px;
}
.compare-table td.feature-col { background: var(--bg-warm); }
.compare-table tbody tr:hover td:not(.feature-col) { background: var(--gold-soft); }
.compare-yes { color: var(--gold-dark); font-weight: 800; font-size: 1.15rem; }
.compare-no { color: #c5c5c5; font-weight: 600; }
.compare-table .featured-col {
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-weight: 700;
}

/* ===== Boarding gallery ===== */
.boarding-gallery {
  padding: clamp(60px, 9vw, 100px) 0;
  background: var(--bg-warm);
}
.boarding-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-xl);
}
@media (max-width: 760px) {
  .boarding-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .boarding-gallery-grid { grid-template-columns: 1fr; }
}
.boarding-gallery-tile {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a365d, #0b1a2c);
  box-shadow: 0 8px 22px rgba(11, 26, 44, 0.1);
  border: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 16px;
}
.boarding-gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.78;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.boarding-gallery-tile:hover img { transform: scale(1.06); opacity: 0.95; }
.boarding-gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,26,44,0.85) 100%);
  z-index: 1;
}
.boarding-gallery-tile .caption {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ===== FAQ luxury redesign — applies anywhere on site ===== */
.faq-list .faq-item {
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--bg-warm);
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  border-radius: 0 6px 6px 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.faq-list .faq-item:hover {
  box-shadow: 0 8px 22px rgba(11, 26, 44, 0.06);
  transform: translateX(2px);
}
.faq-list .faq-q {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
}

/* ===== Footer premium polish ===== */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-trust-strip {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--gold-soft);
}
.footer-trust-line span {
  position: relative;
  padding: 0 1.2em;
}
.footer-trust-line span::after {
  content: "✦";
  position: absolute;
  right: -0.4em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.7em;
  opacity: 0.7;
}
.footer-trust-line span:last-child::after { display: none; }

/* ===== Home-page boarding mini-cards (alternative compact display) ===== */
.boarding-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: var(--space-lg);
}
@media (max-width: 820px) { .boarding-quick-grid { grid-template-columns: 1fr; } }
.boarding-quick-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 4px 14px rgba(11,26,44,0.05);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.boarding-quick-tile:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(11,26,44,0.08);
  color: inherit;
}
.boarding-quick-tile .tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.boarding-quick-tile h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  color: var(--ink);
}
.boarding-quick-tile .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0;
}
.boarding-quick-tile .price .small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.boarding-quick-tile p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.boarding-quick-tile .arrow {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Home-path-card subtle luxury upgrade */
.home-path-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.home-path-card:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 12px 30px rgba(11, 26, 44, 0.08) !important;
  transform: translateY(-3px);
}

/* Featured-card luxury */
.featured-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.featured-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold) !important;
  box-shadow: 0 14px 36px rgba(11,26,44,0.1) !important;
}
.featured-card-cta {
  position: relative;
  padding-right: 18px;
}
.featured-card-cta::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s ease;
  color: var(--gold);
}
.featured-card:hover .featured-card-cta::after { transform: translateX(4px); }

/* Press-cta lux polish */
.press-cta-block {
  background:
    radial-gradient(ellipse at top, rgba(201,169,110,0.12), transparent 60%),
    linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  position: relative;
}
.press-cta-block::before,
.press-cta-block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 240px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.press-cta-block::before { top: 18px; }
.press-cta-block::after  { bottom: 18px; }

/* Testimonials lux quote mark */
.testimonial {
  position: relative;
  padding-top: 36px;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 8px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}

/* Mobile-friendly tweaks */
@media (max-width: 760px) {
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
  .boarding-feature-grid { gap: 36px; }
}

/* ============================================
   BOOKING PAGE — interactive reservation builder
   ============================================ */
.booking-shell {
  padding: clamp(40px, 6vw, 72px) 0 80px;
  background: var(--bg-warm);
}
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
@media (max-width: 1000px) {
  .booking-grid { grid-template-columns: 1fr; }
}

.booking-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 6px 22px rgba(11, 26, 44, 0.06);
  margin-bottom: 22px;
}
.booking-card-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.booking-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(160, 133, 73, 0.3);
}
.booking-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin: 0;
  color: var(--ink);
}
.booking-card .booking-sub {
  margin: 4px 0 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Form row + groups inside booking card */
.booking-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .booking-card .form-row { grid-template-columns: 1fr; }
}
.booking-card .form-group { margin-bottom: 14px; }
.booking-card label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 6px;
}
.booking-card input[type="text"],
.booking-card input[type="email"],
.booking-card input[type="tel"],
.booking-card input[type="number"],
.booking-card input[type="date"],
.booking-card select,
.booking-card textarea {
  width: 100%;
  padding: 11px 13px;
  font: inherit;
  font-size: 0.98rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}
.booking-card textarea { resize: vertical; min-height: 90px; }

/* Tier radio cards */
.tier-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 760px) {
  .tier-radio-grid { grid-template-columns: 1fr; }
}
.tier-radio {
  position: relative;
}
.tier-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tier-radio label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px 16px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  position: relative;
}
.tier-radio label:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.tier-radio input[type="radio"]:checked + label {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, rgba(201,169,110,0.06) 100%);
  box-shadow: 0 10px 28px rgba(160, 133, 73, 0.18);
}
.tier-radio input[type="radio"]:checked + label::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  font-weight: 800;
  font-size: 0.95rem;
}
.tier-radio .tier-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.tier-radio .tier-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.tier-radio .tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 6px 0 4px;
}
.tier-radio .tier-price .num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.tier-radio .tier-price .unit {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.tier-radio .tier-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Add-on selection cards */
.addon-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.addon-pick {
  position: relative;
}
.addon-pick input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.addon-pick label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 14px 12px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  height: 100%;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.2s ease;
  position: relative;
}
.addon-pick label:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,26,44,0.06);
}
.addon-pick input[type="checkbox"]:checked + label {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, rgba(201,169,110,0.06) 100%);
  box-shadow: 0 8px 22px rgba(160, 133, 73, 0.15);
}
.addon-pick input[type="checkbox"]:checked + label::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  font-weight: 800;
  font-size: 0.85rem;
}
.addon-pick .addon-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  padding-right: 28px;
}
.addon-pick .addon-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  flex-grow: 1;
}
.addon-pick .addon-cost {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.addon-pick .addon-cost .small {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 4px;
}
.addon-qty {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.addon-pick input[type="checkbox"]:checked + label .addon-qty { display: flex; }
.addon-qty label {
  all: unset;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.addon-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.addon-qty button:hover { background: var(--gold-soft); border-color: var(--gold); }
.addon-qty input[type="number"] {
  width: 50px !important;
  text-align: center;
  padding: 4px 0 !important;
  font-weight: 700;
}
.addon-qty input[type="number"]::-webkit-inner-spin-button,
.addon-qty input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Category headings inside add-on section */
.addon-cat {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.addon-cat::before, .addon-cat::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* Sticky summary panel */
.booking-summary {
  position: sticky;
  top: calc(var(--top-bar-h) + var(--header-h) + 16px);
  background: linear-gradient(180deg, #0f2744 0%, #1a365d 100%);
  border: 1px solid var(--gold);
  border-radius: 12px;
  color: #fff;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-deep);
  align-self: start;
}
.booking-summary h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-summary h3::before {
  content: "✦";
  color: var(--gold-light);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  gap: 8px;
}
.summary-row .label { flex-grow: 1; }
.summary-row .qty {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-right: 8px;
  font-weight: 600;
}
.summary-row .amt {
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}
.summary-row.subtotal {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 110, 0.35);
  border-bottom: none;
  font-size: 1.02rem;
  color: #fff;
}
.summary-row.discount {
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.summary-row.discount .amt { color: #87d287; }
.summary-row.total {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--gold);
  border-bottom: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}
.summary-row.total .amt {
  color: var(--gold-light);
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}
.summary-empty {
  margin: 14px 0;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.18);
}
.summary-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.booking-summary .btn-gold {
  display: flex;
  width: 100%;
  margin-top: 16px;
}
.booking-summary .reset-link {
  margin-top: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 6px;
}
.booking-summary .reset-link:hover { color: var(--gold-light); }

/* Tiny chip line for active selection labels */
.summary-savings {
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(135, 210, 135, 0.9);
  text-align: right;
}

/* Booking success message */
.booking-success {
  display: none;
  background: linear-gradient(135deg, rgba(135,210,135,0.15), rgba(135,210,135,0.05));
  border: 1px solid #87d287;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 18px;
  color: #1f5a1f;
}

/* Floating "go to summary" button for mobile */
.mobile-summary-bar {
  display: none;
}
@media (max-width: 1000px) {
  .booking-summary {
    position: static;
  }
  .mobile-summary-bar {
    display: flex;
    position: fixed;
    bottom: 88px;
    left: 16px;
    right: 16px;
    z-index: 900;
    padding: 12px 16px;
    background: linear-gradient(180deg, #0f2744, #1a365d);
    border: 1px solid var(--gold);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(11, 26, 44, 0.35);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    font-weight: 700;
  }
  .mobile-summary-bar .amt { color: var(--gold-light); font-size: 1.1rem; }
}

/* Footer for booking summary on small screens */
.booking-page-title {
  text-align: center;
  margin: 0 auto var(--space-md);
  max-width: 720px;
}
.booking-page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.booking-page-title h1 .gold-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.booking-page-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

/* Booking progress strip — natural flow position, scrolls away with the rest
   of the page-top content so the form gets full mobile real estate. */
.booking-progress-strip {
  position: relative;
  z-index: 60;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
}
.booking-progress-strip-placeholder { display: none; }

/* On the booking page, also make the site header scroll away naturally
   instead of sticking — gives the form more vertical space on phones. */
body.booking-scroll-away .site-header-wrap {
  position: relative !important;
}
.booking-progress-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: var(--container);
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.booking-progress-inner::-webkit-scrollbar { display: none; }
.booking-progress-step {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.booking-progress-step:hover {
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}
.booking-progress-step.is-complete {
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-color: var(--gold);
  color: var(--gold-dark);
}
.booking-progress-step.is-complete::before {
  content: "✓";
  font-weight: 800;
  color: var(--gold-dark);
}
.booking-progress-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.booking-progress-step.is-complete .step-num { display: none; }
@media (max-width: 760px) {
  .booking-progress-strip { padding: 8px 10px; top: calc(var(--top-bar-h) + var(--header-h)); }
  .booking-progress-step {
    flex: 0 0 auto;
    font-size: 0.74rem;
    padding: 6px 10px;
  }
  .booking-progress-step .step-label-full { display: none; }
}
@media (min-width: 761px) {
  .booking-progress-step .step-label-short { display: none; }
}

/* Booking mobile sticky submit / total (replaces simple total bar) */
@media (max-width: 1000px) {
  .mobile-summary-bar {
    background: linear-gradient(135deg, #0b1a2c, #1a365d);
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
  }
  .mobile-summary-bar .mobile-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .mobile-summary-bar .mobile-submit-btn {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #1a1207;
    border: 1px solid var(--gold-dark);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
  }
  .mobile-summary-bar .mobile-submit-btn:hover { filter: brightness(1.05); }
  .mobile-summary-bar .view-summary-link {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    font-size: 0.75rem;
    font-weight: 500;
  }
}

/* Smooth scroll for hash navigation within booking page */
.booking-shell { scroll-behavior: smooth; }

/* Field error states + inline messages (booking wizard) */
.booking-card input.field-error,
.booking-card select.field-error,
.booking-card textarea.field-error,
.wizard-panel input.field-error,
.wizard-panel select.field-error,
.wizard-panel textarea.field-error {
  border-color: #dc3545 !important;
  background: rgba(220, 53, 69, 0.05);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.field-error-msg {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c5392f;
  margin-top: 6px;
  line-height: 1.3;
}
.field-error-msg::before {
  content: "⚠ ";
  margin-right: 4px;
}
.vacc-block.field-error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.04);
}
.vacc-block.field-error .vacc-block-title {
  color: #c5392f;
}

/* Scroll prompt toast inside wizard body */
.wizard-scroll-prompt {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: -20px -24px 16px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #ffd700, var(--gold-light));
  color: #1a1207;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--gold-dark);
  animation: scrollPromptFade 0.25s ease;
}
@keyframes scrollPromptFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 720px) {
  .wizard-scroll-prompt { margin: -18px -16px 14px; }
}
.wizard-scroll-prompt::before { content: "↓ "; margin-right: 2px; }

/* Visual cue when Next is gated (waiting for scroll) */
.wizard-btn-primary.is-gated {
  background: linear-gradient(135deg, #c5c5c5, #999) !important;
  border-color: #888 !important;
  color: #4a4a4a !important;
  cursor: help;
}
.wizard-btn-primary.is-gated::after {
  content: " · scroll ↓";
  font-weight: 500;
}

/* Scroll-down hint at bottom of long panels */
.wizard-scroll-hint {
  display: none;
  position: sticky;
  bottom: 0;
  margin: 12px -24px -20px;
  padding: 8px 18px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.95) 40%, #fff);
  pointer-events: none;
  animation: scrollHintBounce 1.6s ease-in-out infinite;
}
.wizard-body.has-overflow .wizard-scroll-hint {
  display: block;
}
.wizard-body.is-at-bottom .wizard-scroll-hint {
  display: none;
}
@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* Booking card subtle "complete" state */
.booking-card.is-complete {
  border-color: rgba(201,169,110,0.4);
}
.booking-card.is-complete .booking-step-num {
  background: linear-gradient(135deg, #87d287, #4a9d4a);
  color: #fff;
}
.booking-card.is-complete .booking-step-num::before {
  content: "✓";
  font-size: 1rem;
}
.booking-card.is-complete .booking-step-num > * { display: none; }

/* Vaccination sections in the booking page */
.vacc-block {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 14px 10px;
  margin-bottom: 12px;
}
.vacc-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.vacc-block-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.vacc-status-radios {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.vacc-status-radios label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  margin: 0;
  border-radius: 0;
}
.vacc-status-radios input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.vacc-status-radios input[type="radio"]:checked + label {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
}
.vacc-block .vacc-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .vacc-block .vacc-dates { grid-template-columns: 1fr; }
}
.vacc-block .vacc-dates .form-group { margin-bottom: 0; }
.vacc-block .vacc-dates label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* File drop zone (drag, click, or take a photo) */
.file-drop {
  position: relative;
  display: block;
  padding: 18px 14px;
  background: #fff;
  border: 2px dashed var(--border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.file-drop:hover,
.file-drop.is-dragover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.07);
}
.file-drop.has-file {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
}
.file-drop-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.file-drop-text {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}
.file-drop-hint {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.file-drop.has-file .file-drop-text { color: var(--gold-dark); }
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.file-drop-actions span {
  padding: 3px 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.file-drop.has-file .file-drop-actions span:last-child {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1207;
  font-weight: 700;
}

/* ============================================
   CHECKOUT WIZARD — tile-based step-by-step
   Each step opens as a popup (modal) instead
   of all stacking on one long scroll page.
   ============================================ */
.wizard-landing {
  padding: clamp(24px, 5vw, 48px) 0 28px;
}
.wizard-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 12px;
}
@media (max-width: 600px) { .wizard-tiles { grid-template-columns: 1fr; gap: 10px; } }

.wizard-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.2s ease, transform 0.15s ease;
  position: relative;
}
.wizard-tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 26, 44, 0.08);
}
.wizard-tile-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.wizard-tile.is-done .wizard-tile-num {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  border-color: var(--gold-dark);
}
.wizard-tile.is-done .wizard-tile-num::before {
  content: "✓";
}
.wizard-tile.is-done .wizard-tile-num > .num-label { display: none; }
.wizard-tile-body { flex: 1 1 auto; min-width: 0; }
.wizard-tile h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1.2;
}
.wizard-tile-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 6px;
  word-break: break-word;
}
.wizard-tile.is-done .wizard-tile-summary {
  color: var(--ink);
  font-weight: 500;
}
.wizard-tile-cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.wizard-tile.is-done .wizard-tile-cta::before { content: "Edit "; }
.wizard-tile.is-required:not(.is-done) {
  border-left: 3px solid var(--gold);
}

/* Sticky bottom summary on landing (mobile + desktop) */
.checkout-summary-card {
  background: linear-gradient(135deg, #0b1a2c 0%, #1a365d 100%);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 22px 22px 24px;
  color: #fff;
  box-shadow: var(--shadow-deep);
  margin-top: 22px;
}
.checkout-summary-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.checkout-summary-card h3::before { content: "✦"; color: var(--gold-light); }
.checkout-summary-card .summary-row { color: rgba(255,255,255,0.92); }
.checkout-summary-card .summary-row .amt { color: var(--gold-light); }
.checkout-summary-card .checkout-submit {
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.checkout-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.checkout-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.checkout-submit-note {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.45;
}

/* Wizard modal — single modal that swaps between step panels */
.wizard-modal[hidden] { display: none; }
.wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
.wizard-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 44, 0.78);
  backdrop-filter: blur(4px);
  animation: infoFadeIn 0.18s ease forwards;
}
.wizard-modal-panel {
  position: relative;
  width: min(640px, 100vw);
  margin: auto;
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(11, 26, 44, 0.5);
  display: flex;
  flex-direction: column;
  max-height: min(94vh, 880px);
  overflow: hidden;
  animation: infoSlideUp 0.22s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}
@media (max-width: 720px) {
  .wizard-modal { padding: 0; }
  .wizard-modal-panel {
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

.wizard-header {
  padding: 22px 24px 16px;
  background: linear-gradient(135deg, #0b1a2c 0%, #1a365d 100%);
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
.wizard-header::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.wizard-header .wizard-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 4px;
}
.wizard-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  margin: 0;
  color: #fff;
  line-height: 1.15;
}
.wizard-header .wizard-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
}
.wizard-close:hover { background: rgba(255,255,255,0.22); }

.wizard-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 0;
}
.wizard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.wizard-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}
.wizard-dot.is-done { background: var(--gold-light); }

.wizard-body {
  padding: 20px 24px 24px;
  overflow-y: auto;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 720px) {
  .wizard-body { padding: 18px 16px 24px; }
}
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; }
.wizard-panel .booking-card {
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  background: transparent;
}
.wizard-panel .booking-card-header { display: none; } /* using wizard header instead */

.wizard-footer {
  padding: 14px 24px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
@media (max-width: 720px) {
  .wizard-footer { padding: 14px 16px 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
}
.wizard-footer .wiz-running-total {
  margin-right: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.2;
}
.wizard-footer .wiz-running-total strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}
.wizard-btn {
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  min-height: 44px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.wizard-btn:hover { border-color: var(--gold); }
.wizard-btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-color: var(--gold-dark);
  color: #1a1207;
}
.wizard-btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.wizard-btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* Coupon code row */
.coupon-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.coupon-row input[type="text"] {
  flex: 1 1 auto;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.coupon-row button {
  flex-shrink: 0;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1207;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.coupon-row button:hover { filter: brightness(1.05); }
.coupon-msg {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.coupon-msg.is-valid { color: #1f5a1f; }
.coupon-msg.is-invalid { color: #c5392f; }

/* Quick numeric input for dogs */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.qty-stepper button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.qty-stepper button:hover { background: var(--gold-soft); border-color: var(--gold); }
.qty-stepper input {
  width: 64px;
  text-align: center;
  padding: 7px !important;
  font-weight: 700;
}

/* ============================================
   MOBILE POLISH — phone-first refinements
   Most clients book from phones, so these tune
   spacing, sizing, touch targets, and density.
   ============================================ */

@media (max-width: 760px) {
  /* Tighter section padding so users see more per screen */
  .section { padding: 36px 0 !important; }
  .pricing-section,
  .addons-section,
  .compare-section,
  .boarding-gallery,
  .included-section,
  .booking-shell { padding: 40px 0 48px !important; }

  /* Hero headlines size down a touch on phones */
  .hero-kraftwork .hero-title { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  .hero-kraftwork .hero-sub { font-size: 14px; }
  .hero-kraftwork .hero-inline-cta .btn { width: 100%; }
  .hero-kraftwork .hero-inline-cta { flex-direction: column; }

  /* Container side padding tighter on phones */
  .container { padding: 0 16px; }

  /* Boarding feature on home — stack tighter and resize price card */
  .boarding-feature { padding: 48px 0 56px; }
  .boarding-feature h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .boarding-feature p.lead { font-size: 1rem; }
  .boarding-feature-bullets li { font-size: 0.95rem; }
  .boarding-feature-card { padding: 22px 18px; }
  .boarding-feature-card .price-row .num { font-size: 2.4rem; }
  .boarding-feature-cta { gap: 10px; }
  .boarding-feature-cta .btn-gold,
  .boarding-feature-cta .btn-gold-outline,
  .boarding-feature-cta .btn,
  .boarding-feature-cta a { width: 100%; }
  .boarding-quick-grid { gap: 12px; margin-top: 24px; }
  .boarding-quick-tile { padding: 18px 16px; }
  .boarding-quick-tile h3 { font-size: 1.15rem; }
  .boarding-quick-tile .price { font-size: 1.4rem; }

  /* Boarding page hero — fits a phone */
  .boarding-hero { padding: calc(var(--top-bar-h) + var(--header-h) + 36px) 0 56px; }
  .boarding-hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); line-height: 1.05; margin-bottom: 0.8rem; }
  .boarding-hero p.lead { font-size: 1rem; }
  .boarding-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .boarding-hero-stat { padding: 12px 8px; }
  .boarding-hero-stat .num { font-size: 1.3rem; }
  .boarding-hero-stat .lbl { font-size: 0.7rem; }

  /* CTA pairs full-width buttons on phone */
  .boarding-hero .boarding-feature-cta .btn-gold,
  .boarding-hero .boarding-feature-cta .btn-gold-outline { width: 100%; }
  .lux-cta-buttons .btn-gold,
  .lux-cta-buttons .btn-gold-outline { width: 100%; min-width: 0; }
  .lux-cta-ribbon p { font-size: 1rem; }

  /* Pricing cards stack — featured no longer scales above width */
  .pricing-grid { gap: 16px; }
  .price-card { padding: 28px 20px 24px; }
  .price-card-featured { transform: none !important; }
  .price-card-featured:hover { transform: translateY(-2px) !important; }
  .price-card-price .num { font-size: 2.6rem; }

  /* Add-ons grid — 2 per row on phones for density */
  .addons-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .addon-card { padding: 16px 14px 14px; }
  .addon-card h3 { font-size: 1rem; }
  .addon-card p { font-size: 0.85rem; }
  .addon-card .addon-price { font-size: 1.1rem; }
  @media (max-width: 380px) {
    .addons-grid { grid-template-columns: 1fr; }
  }

  /* Comparison table — let it scroll horizontally cleanly */
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.88rem; }
  .compare-table th.feature-col, .compare-table td.feature-col { min-width: 160px; }

  /* Boarding gallery — 2 per row, taller tiles for readability */
  .boarding-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .boarding-gallery-tile { padding: 12px; }
  .boarding-gallery-tile .caption { font-size: 0.92rem; }

  /* Booking page — single column, summary slides up below form */
  .booking-grid { gap: 18px; }
  .booking-card { padding: 22px 18px; margin-bottom: 16px; border-radius: 8px; }
  .booking-card h2 { font-size: 1.18rem; }
  .booking-card .booking-sub { font-size: 0.88rem; margin-bottom: 14px; }
  .booking-step-num { width: 30px; height: 30px; font-size: 0.95rem; }
  .booking-card label { font-size: 0.88rem; }
  .booking-card input, .booking-card select, .booking-card textarea { font-size: 16px; padding: 12px 12px; } /* 16px prevents iOS zoom */

  .tier-radio-grid { grid-template-columns: 1fr; gap: 10px; }
  .tier-radio label { padding: 16px 14px; }
  .tier-radio .tier-name { font-size: 1.1rem; }
  .tier-radio .tier-price .num { font-size: 1.6rem; }

  .addon-pick-grid { grid-template-columns: 1fr; gap: 10px; }
  .addon-pick label { padding: 14px 14px 12px; min-height: 0; }
  .addon-pick .addon-name { font-size: 0.98rem; padding-right: 32px; }
  .addon-pick .addon-desc { font-size: 0.86rem; }
  .addon-pick .addon-cost { font-size: 1rem; }
  .addon-qty button { width: 36px; height: 36px; font-size: 1.1rem; }
  .addon-qty input[type="number"] { width: 56px !important; font-size: 16px; }

  .booking-summary { padding: 18px 16px 20px; border-radius: 10px; }
  .booking-summary h3 { font-size: 1.18rem; }
  .summary-row { font-size: 0.92rem; padding: 8px 0; }
  .summary-row.total { font-size: 1.25rem; }
  .summary-row.total .amt { font-size: 1.4rem; }

  /* Mobile floating total bar — stick to bottom right above safe area */
  .mobile-summary-bar {
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    left: 12px !important;
    right: 12px !important;
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  body { padding-bottom: 80px; } /* room for the floating mobile-summary-bar on booking page */

  /* On all other pages remove the extra padding (the bar won't render) */
  body:not(:has(.mobile-summary-bar)) { padding-bottom: 0; }

  /* Touch-friendly buttons everywhere */
  .btn, .btn-gold, .btn-gold-outline {
    min-height: 48px;
    padding: 12px 20px;
  }

  /* Featured grid: 1 column for clearer reading on phone */
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .featured-card { padding: 18px 14px; }
  .featured-card-title { font-size: 1rem; }
  @media (max-width: 420px) {
    .featured-grid { grid-template-columns: 1fr; }
  }

  /* Home-path cards: 1 column */
  .home-path-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .home-path-card { padding: 18px 16px; }

  /* Trust pills: stack single column for clarity */
  .trust-pill-grid { gap: 8px; }
  .trust-pill { padding: 10px; }
  .trust-pill strong { font-size: 0.95rem; }
  .trust-pill span { font-size: 0.78rem; }

  /* Footer trust strip — wrap nicely on small screens */
  .footer-trust-line { display: flex; flex-direction: column; gap: 6px; text-align: center; font-size: 0.9rem; }
  .footer-trust-line span { padding: 0; }
  .footer-trust-line span::after { display: none; }

  /* Nav badge "New" — smaller, doesn't break header line */
  .nav-list .nav-boarding > a .nav-badge { font-size: 8px; padding: 1px 5px; }

  /* Press CTA tightens up */
  .press-cta-text { font-size: 1rem; }

  /* Form input row gap tighter */
  .booking-card .form-row { gap: 10px; }
  .booking-card .form-group { margin-bottom: 12px; }

  /* Section titles a bit smaller */
  .lux-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-title.center { font-size: 1.4rem; }
  .lux-sub { font-size: 0.95rem; }

  /* FAQ items tighter */
  .faq-list .faq-item { padding: 14px 14px 14px 18px; margin-bottom: 12px; }
  .faq-list .faq-q { font-size: 1rem; }
  .faq-list .faq-a { font-size: 0.92rem; }

  /* Page hero on inner pages — less top padding */
  .page-hero { padding: calc(var(--top-bar-h) + var(--header-h) + 28px) 0 36px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* Very small phones */
@media (max-width: 380px) {
  .boarding-hero h1 { font-size: 1.85rem; }
  .boarding-feature h2 { font-size: 1.6rem; }
  .booking-card h2 { font-size: 1.05rem; }
  .nav-list .nav-boarding > a .nav-badge { display: none; }
}

/* Touch-device hover removal so cards don't stick in hover state */
@media (hover: none) {
  .price-card:hover,
  .home-path-card:hover,
  .featured-card:hover,
  .addon-card:hover,
  .boarding-quick-tile:hover,
  .tier-radio label:hover,
  .addon-pick label:hover {
    transform: none;
  }
}

/* ============================================
   INFO POPUP MODAL — clickable card details
   ============================================ */
.info-modal[hidden] { display: none; }
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 44, 0.78);
  backdrop-filter: blur(4px);
  animation: infoFadeIn 0.18s ease forwards;
}
@keyframes infoFadeIn { from { opacity: 0; } to { opacity: 1; } }
.info-modal-panel {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(11,26,44,0.4);
  padding: 28px 24px 24px;
  animation: infoSlideUp 0.22s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}
@keyframes infoSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.info-modal-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark), var(--gold-light));
  border-radius: 0 0 3px 3px;
}
.info-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.info-modal-close:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.info-modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.info-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.95rem);
  margin: 0 0 0.5rem;
  color: var(--ink);
  padding-right: 40px;
}
.info-modal-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.info-modal-price .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.info-modal-price .unit {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.info-modal-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.info-modal-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.info-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.info-modal-list li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  margin-top: 1px;
  flex-shrink: 0;
}
.info-modal-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.info-modal-cta .btn,
.info-modal-cta .btn-gold,
.info-modal-cta .btn-gold-outline {
  flex: 1 1 200px;
  text-align: center;
  justify-content: center;
}

/* Make boarding tier cards & add-on cards visibly clickable */
.price-card,
.addon-card {
  cursor: pointer;
}
.price-card:focus-visible,
.addon-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.addon-card::after {
  content: "ⓘ Click for details";
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0.75;
  transition: opacity 0.15s ease;
}
.addon-card:hover::after { opacity: 1; }
.price-card .price-card-clickhint {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: center;
}
.price-card-featured .price-card-clickhint {
  border-top-color: rgba(201,169,110,0.3);
  color: var(--gold-light);
}

/* ============================================
   INQUIRY MODAL — full reservation form popup
   ============================================ */
.inquiry-modal[hidden] { display: none; }
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px;
  overflow-y: auto;
}
.inquiry-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 44, 0.82);
  backdrop-filter: blur(4px);
}
.inquiry-modal-panel {
  position: relative;
  width: min(720px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(11,26,44,0.5);
  margin: 0 auto;
  overflow: hidden;
  animation: infoSlideUp 0.25s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}
.inquiry-modal-header {
  position: relative;
  padding: 26px 28px 18px;
  background: linear-gradient(135deg, #0b1a2c 0%, #1a365d 100%);
  color: #fff;
}
.inquiry-modal-header::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.inquiry-modal-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 6px;
}
.inquiry-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.95rem);
  margin: 0 0 0.4rem;
  color: #fff;
}
.inquiry-modal-sub {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.inquiry-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s ease;
}
.inquiry-modal-close:hover { background: rgba(255,255,255,0.22); }
.inquiry-modal-body {
  padding: 22px 28px 28px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
@media (max-width: 600px) {
  .inquiry-modal-body { padding: 18px 18px 22px; max-height: calc(100vh - 220px); }
  .inquiry-modal-header { padding: 22px 20px 16px; }
}

/* Form sections inside inquiry modal */
.inq-section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.inq-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.inq-section h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.inq-section h3::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.85em;
}
.inquiry-modal-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) {
  .inquiry-modal-body .form-row { grid-template-columns: 1fr; }
}
.inquiry-modal-body .form-group { margin-bottom: 12px; }
.inquiry-modal-body label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 5px;
}
.inquiry-modal-body label .form-optional {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.82rem;
}
.inquiry-modal-body input[type="text"],
.inquiry-modal-body input[type="email"],
.inquiry-modal-body input[type="tel"],
.inquiry-modal-body input[type="number"],
.inquiry-modal-body input[type="date"],
.inquiry-modal-body select,
.inquiry-modal-body textarea {
  width: 100%;
  padding: 11px 12px;
  font: inherit;
  font-size: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.inquiry-modal-body input:focus,
.inquiry-modal-body select:focus,
.inquiry-modal-body textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}
.inquiry-modal-body textarea { resize: vertical; min-height: 80px; }

/* Vaccination file uploads */
.vacc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}
@media (max-width: 540px) {
  .vacc-grid { grid-template-columns: 1fr; }
}
.vacc-upload {
  position: relative;
  padding: 14px 12px;
  background: var(--bg-warm);
  border: 2px dashed var(--border);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.vacc-upload:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}
.vacc-upload.has-file {
  border-color: var(--gold);
  border-style: solid;
  background: rgba(201, 169, 110, 0.1);
}
.vacc-upload .vacc-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.vacc-upload .vacc-icon {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 4px;
  color: var(--gold-dark);
}
.vacc-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.vacc-upload .vacc-status {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  word-break: break-word;
  margin-top: 4px;
  min-height: 1em;
}
.vacc-upload.has-file .vacc-status {
  color: var(--gold-dark);
  font-weight: 700;
}
.vacc-upload .vacc-actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  justify-content: center;
  font-size: 0.78rem;
}
.vacc-upload .vacc-actions span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  color: var(--text-muted);
}

/* Add-on checkbox tiles inside the inquiry modal */
.inq-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
@media (max-width: 540px) {
  .inq-addon-grid { grid-template-columns: 1fr; }
}
.inq-addon {
  position: relative;
}
.inq-addon input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.inq-addon label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  margin: 0;
  font-weight: 500;
  font-size: 0.92rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.inq-addon input:checked + label {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  font-weight: 700;
}
.inq-addon input:checked + label::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  margin-right: 4px;
}
.inq-addon .price {
  color: var(--gold-dark);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.85rem;
}

/* Inquiry submit area */
.inquiry-modal-actions {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, transparent, #fff 30%, #fff 100%);
  padding: 14px 0 0;
  margin-top: 16px;
}
.inquiry-modal-actions .btn-gold {
  width: 100%;
  font-size: 1rem;
  padding: 14px 20px;
}
.inquiry-modal-actions .small-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.5;
}

/* Open-inquiry CTA (sticky/inline) */
.inquiry-trigger-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  color: #fff;
  padding: 32px 16px;
  text-align: center;
  margin: 36px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.inquiry-trigger-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(201,169,110,0.15), transparent 65%);
  pointer-events: none;
}
.inquiry-trigger-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 0.6rem;
  color: #fff;
  position: relative;
}
.inquiry-trigger-band p {
  max-width: 540px;
  margin: 0 auto 1.1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  position: relative;
}
.inquiry-trigger-band .btn-gold { position: relative; }

/* Success / error messages inside modal */
.inquiry-result {
  display: none;
  padding: 18px;
  border-radius: 8px;
  margin: 0 0 14px;
  font-weight: 600;
}
.inquiry-result.success {
  display: block;
  background: rgba(135, 210, 135, 0.15);
  border: 1px solid #87d287;
  color: #1f5a1f;
}
.inquiry-result.error {
  display: block;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #842029;
}

/* Body scroll lock when modal is open */
html.modal-open,
body.modal-open {
  overflow: hidden;
}

/* Mobile fine-tune */
@media (max-width: 540px) {
  .info-modal-panel { padding: 24px 18px 18px; }
  .info-modal-title { font-size: 1.4rem; }
  .info-modal-price .num { font-size: 2rem; }
  .info-modal-cta .btn,
  .info-modal-cta .btn-gold,
  .info-modal-cta .btn-gold-outline { flex: 1 1 100%; }
  .inquiry-trigger-band { margin: 24px 0; padding: 24px 16px; }
}


/* ===========================================================================
   Final mobile safety net — appended last so it overrides earlier rules.
   Goal: zero horizontal scroll on any phone, hero looks great, no element
   ever pokes out of the viewport.
   =========================================================================== */

/* Universal box-sizing already set above. Belt-and-suspenders no-scroll guard. */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* No image / video / iframe / object ever overflows its parent */
img, video, iframe, object, svg, canvas {
  max-width: 100%;
  height: auto;
}
/* Override: the hero video DOES need height:100% to cover the frame */
.hero-bg .hero-video, .hero-bg img { height: 100%; }

/* Long unbreakable strings (URLs, emails) wrap instead of overflowing */
p, li, td, dd, dt {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Wide tables get a horizontal scroll inside their container rather than
   pushing the whole page wider. */
@media (max-width: 760px) {
  .table-wrap, .scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ----- Hero polish on phones ----- */
@media (max-width: 760px) {
  .hero {
    min-height: 60vh;
    min-height: 60svh;
    padding: calc(var(--top-bar-h) + var(--header-h) + 24px) 16px 36px;
  }
  .hero-content {
    min-height: 0;
    max-width: 100%;
  }
  .hero-kraftwork .hero-title,
  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.4rem);
    line-height: 1.15;
  }
  .hero-kraftwork .hero-sub,
  .hero-sub {
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
    line-height: 1.5;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 1px;
  }
  /* Stack the hero CTA buttons + make them full-width-ish */
  .hero-inline-cta,
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-inline-cta .btn,
  .hero-cta .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
  }
  /* Hide the "Scroll" indicator on phones — there isn't much vertical space */
  .hero-scroll { display: none; }
}

/* ----- Header on phones ----- */
@media (max-width: 760px) {
  .site-header { padding: 8px 12px; }
  .header-inner { gap: 6px; }
  .site-logo-img { width: 56px; height: auto; }
  .header-phone { display: none; }   /* phone number lives in nav drawer */
  .header-social { display: none; }
  .nav-list { padding: 4px 0; }
  /* Top promo bar — let the text wrap, don't overflow */
  .top-bar a {
    font-size: 11px;
    padding: 6px 12px;
    white-space: normal;
    line-height: 1.35;
  }
}

/* ----- Forms full-width on phones ----- */
@media (max-width: 640px) {
  input, select, textarea {
    max-width: 100%;
    font-size: 16px;  /* ≥16px so iOS doesn't zoom on focus */
  }
  .contact-form, .beast-options-form,
  #inquiry-form, #booking-form, #beast-options-form {
    padding: 16px;
  }
  /* Multi-column form rows collapse */
  .row, .row.two, .row.three { grid-template-columns: 1fr !important; }
}

/* ----- Cards / sections respect viewport ----- */
@media (max-width: 760px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section, .section-alt { padding: 36px 0; }
  .section-title { font-size: 1.4rem; }
  .section-sub { font-size: 0.95rem; }
  /* Card grids collapse to one column */
  .breed-cards, .why-grid, .scent-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .breed-card-img img { width: 100%; }
  .photo-grid.four,
  .photo-grid.three,
  .photo-grid.two {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
}

/* ----- Buttons that floated side-by-side now stack ----- */
@media (max-width: 540px) {
  .page-hero-cta,
  .page-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .page-hero-cta .btn,
  .page-cta .btn {
    width: 100%;
    text-align: center;
  }
  .photo-grid.four,
  .photo-grid.three {
    grid-template-columns: 1fr !important;
  }
}

/* ----- Tiny phones (≤380px) — last-resort shrinkdown ----- */
@media (max-width: 380px) {
  .site-logo-img { width: 44px; }
  .hero-kraftwork .hero-title, .hero-title { font-size: 1.45rem; }
  .container, .section { padding-left: 12px; padding-right: 12px; }
}
