/* =========================================================================
   CoKoro Tour — Design Tokens & Base Styles
   Brand: red #E2001A + ink black + warm cream, built around the existing
   心 (kokoro) brush-mark logo. Mobile-first; breakpoints at 768/1024/1440.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

:root {
  /* --- Color: brand --- */
  --color-red: #e2001a;
  --color-red-dark: #b3000f;
  --color-red-soft: #fbe6e2;
  --color-ink: #1c1a18;
  --color-ink-soft: #4a4541;
  --color-indigo: #24344a;
  --color-indigo-dark: #16212f;
  --color-gold: #c9972b;

  /* --- Color: surfaces ---
     Page background is a deep "kon-iro" (紺色) Japanese indigo navy.
     --color-ink/--color-ink-soft/--color-muted/--color-surface/--color-border
     stay as their original light-mode values below — they're what every
     white "card" (tour cards, review cards, contact cards, etc.) uses
     internally, and those cards stay light regardless of the page theme.
     --color-on-dark / --color-on-dark-muted are the new tokens for text
     that sits directly on the navy page background (headings, ledes). */
  --color-bg: #0c1526;
  --color-bg-alt: #121f38;
  --color-on-dark: #ffffff;
  --color-on-dark-muted: #b9c6e0;
  --color-surface: #ffffff;
  --color-surface-alt: #f4ede0;
  --color-border: #e7dfcf;
  --color-muted: #6b6560;

  /* --- Color: semantic --- */
  --color-on-red: #ffffff;
  --color-on-indigo: #ffffff;
  --color-success: #2e7d4f;
  --color-danger: #c0362c;

  /* --- Typography --- */
  --font-display: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-body: 'Noto Sans JP', 'Hiragino Sans', sans-serif;

  --text-xs: 0.8125rem;   /* 13px */
  --text-sm: 0.9375rem;   /* 15px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.375rem;    /* 22px */
  --text-2xl: 1.75rem;    /* 28px */
  --text-3xl: 2.25rem;    /* 36px */
  --text-4xl: 2.75rem;    /* 44px */
  --text-5xl: 3.375rem;   /* 54px */

  /* --- Spacing (8px rhythm) --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* --- Radius --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* --- Shadow (warm-tinted, not pure black) --- */
  --shadow-sm: 0 1px 2px rgba(28, 26, 24, 0.08), 0 1px 1px rgba(28, 26, 24, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(28, 26, 24, 0.18);
  --shadow-lg: 0 24px 48px -12px rgba(28, 26, 24, 0.28);

  /* --- Motion --- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* --- Layout --- */
  --container-max: 1200px;
  --header-height: 76px;
  --sticky-cta-height: 68px;

  /* --- Z-index scale --- */
  --z-header: 100;
  --z-sticky-cta: 90;
  --z-modal: 200;
  --z-skip-link: 300;
}

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

/* =========================================================================
   Reset
   ========================================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 0 0 var(--space-4);
  font-weight: 700;
  letter-spacing: 0.01em;
}

p { margin: 0 0 var(--space-4); max-width: 65ch; }

a { color: var(--color-indigo); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--color-red); }

ul, ol { padding-left: 1.25em; }

button { font-family: inherit; }

/* Focus visibility everywhere (keyboard nav) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-indigo);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: var(--z-skip-link);
  background: var(--color-ink);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  transition: top var(--duration-base) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

/* No horizontal scroll anywhere */
html, body { overflow-x: hidden; }

/* =========================================================================
   Layout helpers
   ========================================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-7); }
.section--alt { background: var(--color-bg-alt); }

.section-head {
  max-width: 62ch;
  margin-bottom: var(--space-7);
}
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
  background: var(--color-red-soft);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

h2 { font-size: var(--text-3xl); color: var(--color-on-dark); }
h3 { font-size: var(--text-xl); }

.lede { font-size: var(--text-lg); color: var(--color-on-dark-muted); }

.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;
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform var(--duration-fast) var(--ease-standard),
              background var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
  text-decoration: none;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-red);
  color: var(--color-on-red);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-red-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--color-on-dark);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-secondary:hover { background: var(--color-on-dark); color: var(--color-bg); border-color: var(--color-on-dark); }


.btn-light {
  background: #fff;
  color: var(--color-ink);
}
.btn-light:hover { background: var(--color-surface-alt); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.15rem; min-height: 40px; font-size: var(--text-xs); }

.btn-icon {
  width: 1.15em; height: 1.15em;
  flex-shrink: 0;
}

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

.site-header {
  position: fixed;
  top: var(--space-4);
  left: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.site-header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-3) var(--space-2) var(--space-4);
  height: var(--header-height);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  min-height: 44px;
}
.brand img { width: 32px; height: 32px; }
.brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}
.main-nav a:hover { color: var(--color-red); background: var(--color-red-soft); }
.main-nav a.is-active { background: var(--color-red); color: #fff !important; font-weight: 600; }

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

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-ink);
  border-radius: var(--radius-full);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 1023.98px) {
  .main-nav {
    position: fixed;
    inset: calc(var(--header-height) + var(--space-6)) var(--space-4) auto var(--space-4);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-3);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-base) var(--ease-standard),
                transform var(--duration-base) var(--ease-standard);
    overflow-y: auto;
    max-height: 70dvh;
  }
  .main-nav[data-open="true"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a {
    color: var(--color-ink);
    padding: var(--space-4);
    font-size: var(--text-base);
    border-radius: var(--radius-sm);
  }
  .main-nav a.is-active { background: var(--color-red-soft); color: var(--color-red) !important; }
  .header-actions .btn-primary { display: none; }
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

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

.hero {
  padding-block: var(--space-8);
}

.hero-text h1 {
  color: var(--color-on-dark);
  font-size: clamp(2.25rem, 5vw, var(--text-5xl));
  max-width: 18ch;
  margin-bottom: var(--space-4);
}
.hero-text .lede {
  max-width: 46ch;
  margin-bottom: var(--space-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}
/* Indigo focus rings are unreadable on the dark hero background */
.hero-actions .btn:focus-visible {
  outline-color: var(--color-on-dark);
}

/* Full-bleed ambient video band — its own moment, no text/buttons on top */
.video-showcase {
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  /* Clears the floating header so it never covers the video itself */
  padding-top: calc(var(--header-height) + var(--space-6));
  background: var(--color-bg);
  overflow: hidden;
}
.video-showcase video {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
}

/* On phones, keep it compact and show the whole frame (letterboxed)
   rather than cropping it, but still clear the header first */
@media (max-width: 639.98px) {
  .video-showcase {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    padding-top: calc(var(--header-height) + var(--space-4));
    background: var(--color-ink);
  }
  .video-showcase video {
    object-fit: contain;
  }
}

/* =========================================================================
   Cards: Tours
   ========================================================================= */

.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .tour-grid { grid-template-columns: repeat(4, 1fr); }
}

.tour-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tour-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-alt);
}
.tour-card-media img { width: 100%; height: 100%; object-fit: cover; }

.tour-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.tour-card-body h3 { margin-bottom: 0; font-size: var(--text-lg); }
.tour-card-body p { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: 0; }

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-muted);
}
.tour-meta span { display: inline-flex; align-items: center; gap: 4px; }
.tour-meta svg { width: 14px; height: 14px; flex-shrink: 0; }

.tour-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.tour-price { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; }
.tour-price small { font-family: var(--font-body); font-weight: 400; font-size: var(--text-xs); color: var(--color-muted); }

.tour-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-red);
  text-decoration: none;
  min-height: 44px;
  padding-inline: var(--space-2);
}
.tour-card-cta svg { width: 16px; height: 16px; transition: transform var(--duration-fast) var(--ease-standard); }
.tour-card-cta:hover svg { transform: translateX(3px); }

/* =========================================================================
   Tours by area (tours.html)
   ========================================================================= */

.tour-region-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.region-tab {
  font: inherit;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-on-dark);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  min-height: 44px;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}
.region-tab small { font-weight: 400; opacity: 0.75; }
.region-tab:hover { border-color: var(--color-on-dark); }
.region-tab.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

.tours-coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-on-dark-muted);
  font-size: var(--text-base);
  max-width: 40rem;
  margin-inline: auto;
  padding: var(--space-8) var(--space-4);
}
.tours-coming-soon a { color: var(--color-on-dark); text-decoration: underline; }

.page-hero {
  padding-top: calc(var(--header-height) + var(--space-9));
  padding-bottom: var(--space-8);
  text-align: center;
}
.page-hero h1 {
  color: var(--color-on-dark);
  font-size: clamp(2.25rem, 5vw, var(--text-5xl));
}

/* =========================================================================
   About / Concept
   ========================================================================= */

.about-grid {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-grid.reverse .about-media { order: 2; }
}

.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.2;
  object-fit: cover;
  width: 100%;
}
.about-media-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 80%;
}
.about-media-badge svg {
  width: 44px; height: 44px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--color-red-soft);
  color: var(--color-red);
  flex-shrink: 0;
}
.about-media-badge strong { display: block; font-size: var(--text-sm); }
.about-media-badge span { font-size: var(--text-xs); color: var(--color-muted); }

.value-list { display: grid; gap: var(--space-4); margin-top: var(--space-5); }
.value-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.value-item svg {
  width: 40px; height: 40px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--color-red-soft);
  flex-shrink: 0;
  color: var(--color-red);
}
.value-item h3 { font-size: var(--text-base); margin-bottom: var(--space-1); font-family: var(--font-body); font-weight: 700; color: var(--color-on-dark); }
.value-item p { font-size: var(--text-sm); color: var(--color-on-dark-muted); margin: 0; }

/* =========================================================================
   Guide Profile
   ========================================================================= */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 52rem;
  margin-inline: auto;
}
@media (min-width: 700px) {
  .guide-grid { grid-template-columns: repeat(4, 1fr); }
}

.guide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}
.guide-item .guide-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
}
.guide-item .guide-photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
}
.guide-photo-placeholder svg { width: 40%; height: 40%; }
.guide-item strong { font-size: var(--text-base); color: var(--color-on-dark); }

/* =========================================================================
   Social proof / Reviews
   ========================================================================= */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
}
.trust-badge svg {
  width: 32px; height: 32px;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--color-red-soft);
  color: var(--color-red);
}

/* Scattered "polaroid" photo + review cards, à la scrapbook social proof */
.polaroid-strip {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  padding: var(--space-5) var(--space-3) var(--space-7);
  margin: 0 calc(var(--space-3) * -1);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.polaroid-strip::-webkit-scrollbar { height: 8px; }
.polaroid-strip::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: var(--radius-full); }
.reviews-empty {
  width: 100%;
  text-align: center;
  color: var(--color-on-dark-muted);
  font-size: var(--text-base);
  padding: var(--space-6) 0;
}

.polaroid-card {
  scroll-snap-align: start;
  flex: 0 0 15.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-base) var(--ease-out);
}
.polaroid-card:hover { transform: translateY(-6px) rotate(0deg) !important; }
.polaroid-card:nth-child(5n+1) { transform: rotate(-3deg); }
.polaroid-card:nth-child(5n+2) { transform: rotate(2deg); }
.polaroid-card:nth-child(5n+3) { transform: rotate(-1.5deg); }
.polaroid-card:nth-child(5n+4) { transform: rotate(3deg); }
.polaroid-card:nth-child(5n+5) { transform: rotate(-2deg); }

.polaroid-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}
.review-stars { display: flex; gap: 2px; color: var(--color-gold); margin-bottom: var(--space-2); }
.review-stars svg { width: 14px; height: 14px; }
.review-quote { font-size: var(--text-sm); color: var(--color-ink-soft); margin: 0 0 var(--space-3); }
.review-author strong { display: block; font-size: var(--text-sm); }

@media (min-width: 1024px) {
  .polaroid-strip {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }
}

/* =========================================================================
   Contact
   ========================================================================= */

.contact-channels--centered {
  display: grid;
  gap: var(--space-4);
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 700px) {
  .contact-channels--centered { grid-template-columns: repeat(3, 1fr); }
  .contact-channels--centered.contact-channels--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 40rem;
  }
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-decoration: none;
  color: var(--color-ink);
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
}
.contact-channel:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--color-ink); }
.contact-channel-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-red-soft);
  color: var(--color-red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon svg { width: 24px; height: 24px; }
.contact-channel strong { display: block; font-size: var(--text-base); }
.contact-channel span:not(.contact-channel-icon) { display: block; font-size: var(--text-sm); color: var(--color-muted); }

/* Toast for dev-time "booking link not connected" notices */
.dev-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--sticky-cta-height) + var(--space-4));
  transform: translate(-50%, 8px);
  background: var(--color-ink);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-modal);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
  max-width: min(90vw, 420px);
  text-align: center;
}
.dev-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 1024px) {
  .dev-toast { bottom: var(--space-5); }
}

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

.site-footer {
  background: var(--color-ink);
  color: #d8d3cc;
  padding-block: var(--space-8) var(--space-9);
}
.footer-grid {
  display: grid;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand span { font-family: var(--font-display); font-size: var(--text-lg); color: #fff; }
.site-footer h3 { color: #fff; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.site-footer a { color: #d8d3cc; text-decoration: none; font-size: var(--text-sm); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: #9d968c;
}
.footer-bottom-links { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.footer-bottom-links a { color: #9d968c; font-size: var(--text-xs); }

/* =========================================================================
   Sticky mobile "Book Now" bar
   ========================================================================= */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-sticky-cta);
  background: rgba(251, 246, 238, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transform: translateY(0);
  transition: transform var(--duration-base) var(--ease-standard);
}
.sticky-cta[data-hidden="true"] { transform: translateY(110%); }
.sticky-cta-text { flex: 1; min-width: 0; }
.sticky-cta-text strong { display: block; font-size: var(--text-sm); }
.sticky-cta-text span { display: block; font-size: var(--text-xs); color: var(--color-muted); }
.sticky-cta .btn { flex-shrink: 0; }

@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

/* Reserve space so sticky bar never covers content/footer on mobile */
@media (max-width: 1023.98px) {
  body { padding-bottom: var(--sticky-cta-height); }
}

/* =========================================================================
   Scroll reveal (progressive enhancement; safe no-op without JS)
   ========================================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}
.no-js [data-reveal] { opacity: 1; transform: none; }
