/* ==========================================================================
   Redeem Allied Health — Design Tokens
   ========================================================================== */

/* Fraunces' lowercase f has a pronounced curled descender that gets more
   dramatic at display sizes. It's a deliberate trait of the typeface, but
   not to everyone's taste -- this swaps in a plain, straight f from PT Serif
   (weight- and color-matched) for just that one letter, leaving every other
   glyph as real Fraunces. */
@font-face {
  font-family: 'FrauncesF';
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/ptserif/v19/EJRSQgYoZZY2vCFuvAnt66qSVys.woff2) format('woff2');
  unicode-range: U+0066;
}

:root {
  --cream: #FAF4EA;
  --cream-alt: #F1E8D8;
  --ink: #2B2723;
  --ink-soft: #5B5449;
  --teal-deep: #1F3E3A;
  --teal: #3E7A72;
  --seafoam: #CFE6E0;
  --seafoam-soft: #E4F1EC;
  --terracotta: #A85C3E;
  --terracotta-soft: #C1704F;
  --white: #FFFFFF;

  --font-display: 'FrauncesF', 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --radius-sm: 10px;
  --radius-md: 20px;
  --container-max: 1180px;
  --container-narrow: 780px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 250ms;
}

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

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

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper-grain, echoing the logo's own paper-cut material.
   Fixed + low-opacity so it reads as texture, not decoration. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--teal-deep);
  margin: 0 0 var(--space-sm);
  line-height: 1.15;
  font-weight: 600;
  /* Fraunces auto-scales toward its most eccentric "display" cut at large
     sizes (deep descending f, exaggerated terminals). Pin a calmer optical
     size instead of letting the browser push it to the extreme. */
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 24;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw + 1rem, 2.75rem); }
h3 { font-size: 1.25rem; }

/* Korean glyphs are wider per-character and won't break mid-word gracefully,
   so headings run smaller to avoid overflow/awkward wraps at large sizes. */
:lang(ko) h1 { font-size: clamp(1.9rem, 4.2vw + 0.5rem, 3.1rem); }
:lang(ko) h2 { font-size: clamp(1.6rem, 2.6vw + 0.8rem, 2.3rem); }
p { margin: 0 0 var(--space-sm); }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-deep);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container.narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding: var(--space-2xl) 0;
  background:
    radial-gradient(ellipse 55% 50% at 88% 8%, rgba(63, 122, 114, 0.05), transparent 62%),
    var(--cream);
}
.section.alt {
  background:
    radial-gradient(ellipse 60% 55% at 8% 92%, rgba(168, 92, 62, 0.055), transparent 60%),
    radial-gradient(ellipse 45% 40% at 95% 5%, rgba(63, 122, 114, 0.05), transparent 60%),
    var(--cream-alt);
}
.center { text-align: center; }

/* Quiet oversized wave watermark -- a barely-there echo of the logo's
   own motif, bleeding off-frame. Felt more than seen. */
.section-watermark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.section-watermark svg {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 64%;
  min-width: 560px;
  height: auto;
  color: var(--teal);
  opacity: 0.05;
}
.section > .container { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin: 0 0 var(--space-xs);
}
.eyebrow.center { text-align: center; }

.lede { max-width: 62ch; color: var(--ink-soft); font-size: 1.08rem; }
.container.narrow .lede { margin-left: auto; margin-right: auto; }
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

.signature {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--teal);
  margin-top: var(--space-md);
}
.signature span { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-soft); font-style: normal; display: block; margin-top: 0.25rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform 0.25s var(--ease-out), box-shadow var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translate(var(--mx, 0px), var(--my, 0px)) scale(0.95); transition-duration: 0.1s; }
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(168, 92, 62, 0.55);
}
.btn-primary:hover { background: var(--terracotta-soft); box-shadow: 0 14px 28px -10px rgba(168, 92, 62, 0.6); }
.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-ghost:hover { background: var(--teal-deep); color: var(--white); }
.btn-small { padding: 0.65rem 1.3rem; font-size: 0.85rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 234, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 62, 58, 0.08);
  transition: box-shadow var(--duration) var(--ease-out);
}
.site-header.scrolled { box-shadow: 0 6px 24px -12px rgba(31, 62, 58, 0.25); }

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

.brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand-mark { border-radius: 50%; }
.brand-word { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--teal-deep); }
.brand-word em { font-style: normal; color: var(--terracotta); }

.site-nav {
  display: flex;
  gap: var(--space-md);
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: auto;
  margin-right: var(--space-md);
}
.site-nav a { position: relative; padding: 0.25rem 0; color: var(--teal-deep); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--terracotta);
  transition: right var(--duration) var(--ease-out);
}
.site-nav a:hover::after,
.site-nav a.active::after { right: 0; }
.site-nav a.active { color: var(--terracotta); }

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

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--teal-deep);
  background: transparent;
  color: var(--teal-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.lang-toggle:hover { background: var(--teal-deep); color: var(--white); transform: translateY(-2px); }
.nav-lang { align-self: flex-start; margin-top: 0.25rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--teal-deep); margin: 0 auto; transition: transform var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero { position: relative; overflow: hidden; padding-top: var(--space-xl); }
.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-2xl);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 40ch; }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-md); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 320px; }
.hero-arch {
  position: relative;
  width: min(340px, 80vw);
  height: min(340px, 80vw);
  background: linear-gradient(160deg, var(--seafoam) 0%, var(--cream-alt) 100%);
  border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-logo {
  width: 58%;
  height: auto;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  filter: drop-shadow(0 20px 40px rgba(31, 62, 58, 0.25));
}
.hero-visual.in-view .hero-logo { opacity: 1; transform: scale(1); animation: breathe 7s ease-in-out 1.1s infinite; }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }

.blob { position: absolute; border-radius: 50%; filter: blur(2px); z-index: 1; opacity: 0.7; }
.blob-a { width: 90px; height: 90px; background: var(--terracotta-soft); opacity: 0.25; top: 8%; right: 8%; animation: float-a 9s ease-in-out infinite; }
.blob-b { width: 130px; height: 130px; background: var(--teal); opacity: 0.15; bottom: 4%; left: 2%; animation: float-b 11s ease-in-out infinite; }
.blob-c { width: 110px; height: 110px; background: var(--terracotta-soft); opacity: 0.2; bottom: -6%; right: -6%; animation: float-a 10s ease-in-out infinite; }

@keyframes float-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-10px, 14px); } }
@keyframes float-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(12px, -10px); } }

.hero-divider,
.divider { display: block; width: 100%; height: 56px; color: var(--cream-alt); position: relative; z-index: 1; margin-bottom: -1px; }
.hero-divider path,
.divider path { fill: currentColor; }
.divider.to-cream { color: var(--cream); }
.divider.to-alt { color: var(--cream-alt); }
.divider.to-deep { color: var(--teal-deep); height: 80px; }

/* ==========================================================================
   Why grid
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: var(--container-narrow);
  margin: var(--space-lg) auto;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--cream);
  border: 1px solid rgba(31, 62, 58, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.why-card:nth-child(odd) { --tilt: -1.1deg; }
.why-card:nth-child(even) { --tilt: 1.1deg; }
.why-card:hover {
  transform: translateY(-4px) rotate(var(--tilt));
  box-shadow: 0 16px 32px -18px rgba(31, 62, 58, 0.3);
  border-color: rgba(63, 122, 114, 0.3);
}
.why-card svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--teal); margin-top: 0.15rem; transition: transform 0.4s var(--ease-out), color 0.3s; }
.why-card:hover svg { transform: scale(1.15) rotate(-10deg); color: var(--terracotta); }
.why-card p { margin: 0; font-weight: 500; color: var(--teal-deep); }

/* ==========================================================================
   Conditions grid
   ========================================================================== */

.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.cond-card {
  background: var(--cream-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.cond-card:nth-child(odd) { --tilt: -0.9deg; }
.cond-card:nth-child(even) { --tilt: 0.9deg; }
.cond-card:hover {
  transform: translateY(-6px) rotate(var(--tilt));
  background: var(--white);
  box-shadow: 0 20px 36px -20px rgba(31, 62, 58, 0.35);
}
.cond-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--seafoam);
  color: var(--teal-deep);
  margin-bottom: var(--space-sm);
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.cond-icon svg { width: 22px; height: 22px; }
.cond-card:hover .cond-icon { transform: scale(1.12) rotate(10deg); background: var(--terracotta); color: var(--white); }
.cond-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.cond-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   About / Meet Alex
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-visual { position: relative; perspective: 900px; }
.about-arch {
  position: relative;
  z-index: 2;
  border-radius: 50% 50% 4% 4% / 60% 60% 4% 4%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -30px rgba(31, 62, 58, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  transform: rotateY(var(--tilt-x, 0deg)) rotateX(var(--tilt-y, 0deg));
}
.about-arch:hover { box-shadow: 0 36px 70px -28px rgba(31, 62, 58, 0.5); }
.about-arch img { width: 100%; height: 100%; object-fit: cover; }

.tagline { font-family: var(--font-script); font-size: 1.6rem; color: var(--terracotta); margin: 0 0 var(--space-md); }

.quals { margin: var(--space-sm) 0 var(--space-md); }
.quals li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
}
.quals li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.why-story {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(31, 62, 58, 0.15);
}
.why-story h3 { color: var(--teal-deep); }
.why-story p { color: var(--ink-soft); }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-details {
  margin: var(--space-lg) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.contact-details dt { font-weight: 700; color: var(--teal-deep); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem; }
.contact-details dd { margin: 0; color: var(--ink-soft); }
.contact-details a:hover { color: var(--terracotta); }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 30px 60px -30px rgba(31, 62, 58, 0.35);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

.directions-link {
  display: inline-flex;
  margin-top: 0.4rem;
  font-weight: 600;
  color: var(--teal);
}
.directions-link:hover { color: var(--terracotta); }

/* ==========================================================================
   Mobile sticky CTA bar -- hidden by default, shown only on small screens
   ========================================================================== */

.mobile-cta-bar { display: none; }

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

.site-footer { background: var(--teal-deep); color: var(--cream); padding: var(--space-lg) 0 var(--space-md); }
.site-footer .brand-word { color: var(--cream); }
.site-footer .brand-word em { color: var(--terracotta-soft); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-md); }
.footer-nav { display: flex; gap: var(--space-md); flex-wrap: wrap; font-size: 0.9rem; }
.footer-nav a { opacity: 0.85; }
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.footer-meta { width: 100%; margin: var(--space-md) 0 0; font-size: 0.82rem; opacity: 0.7; text-align: center; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.why-grid .why-card:nth-child(1) { transition-delay: 0ms; }
.why-grid .why-card:nth-child(2) { transition-delay: 80ms; }
.why-grid .why-card:nth-child(3) { transition-delay: 160ms; }
.why-grid .why-card:nth-child(4) { transition-delay: 240ms; }
.cond-grid .cond-card:nth-child(1) { transition-delay: 0ms; }
.cond-grid .cond-card:nth-child(2) { transition-delay: 60ms; }
.cond-grid .cond-card:nth-child(3) { transition-delay: 120ms; }
.cond-grid .cond-card:nth-child(4) { transition-delay: 180ms; }
.cond-grid .cond-card:nth-child(5) { transition-delay: 240ms; }
.cond-grid .cond-card:nth-child(6) { transition-delay: 300ms; }
.cond-grid .cond-card:nth-child(7) { transition-delay: 360ms; }
.cond-grid .cond-card:nth-child(8) { transition-delay: 420ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-logo { opacity: 1; transform: none; animation: none; }
  .blob { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 340px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid rgba(31,62,58,0.1);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), visibility var(--duration);
  }
  .site-nav.open { opacity: 1; transform: translateY(0); visibility: visible; }
  .nav-toggle { display: flex; }
  .nav-book { display: inline-flex; align-self: flex-start; margin-top: var(--space-xs); }
  .nav-lang { display: inline-flex; }
  .header-actions .btn-small { display: none; }
  .header-actions .lang-toggle { display: none; }
}

@media (min-width: 1025px) {
  .nav-book { display: none; }
  .nav-lang { display: none; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .contact-details { grid-template-columns: 1fr; }
  .section { padding: var(--space-xl) 0; }
  .section-watermark svg { width: 90%; opacity: 0.04; }

  /* Hero: lead with the message, not the decoration -- a large repeat of the
     logo above the fold is wasted space on a small screen. */
  .hero { padding-top: var(--space-lg); }
  .hero-inner { padding: var(--space-md) var(--space-md) var(--space-xl); gap: var(--space-md); }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 0; margin-top: var(--space-sm); }
  .hero-arch { width: min(200px, 50vw); height: min(200px, 50vw); }
  .blob-a, .blob-b { display: none; }

  /* Who We Help: a swipeable, peeking-card row beats eight stacked
     full-width cards -- the point isn't to shrink the grid, it's to
     browse it differently on a touch screen. */
  .cond-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-sm);
    margin: var(--space-lg) calc(-1 * var(--space-md)) 0;
    padding: 0.25rem var(--space-md) 0.75rem;
  }
  .cond-grid::-webkit-scrollbar { display: none; }
  .cond-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }
  .cond-card:hover { transform: none; } /* touch has no hover -- avoid a stuck tilt after tap */

  /* Contact: a real tap target for the number people actually want to press */
  .phone-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--teal-deep);
  }

  /* Footer: the nav is redundant with the hamburger menu already used to get
     here -- drop it and let the essentials (contact, hours, copyright) breathe */
  .footer-nav { display: none; }
  .site-footer { padding-bottom: calc(var(--space-md) + 84px); }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 150;
    gap: 0.65rem;
    align-items: center;
    padding: 0.6rem var(--space-md) calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(250, 244, 234, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(31, 62, 58, 0.12);
    box-shadow: 0 -8px 24px -14px rgba(31, 62, 58, 0.25);
  }
  .mobile-cta-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--seafoam);
    color: var(--teal-deep);
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  }
  .mobile-cta-call:hover { background: var(--teal-deep); color: var(--white); }
  .mobile-cta-call svg { width: 20px; height: 20px; }
  .mobile-cta-book { flex: 1; }
}

@media (max-width: 420px) {
  h1 { font-size: 2.1rem; }
  .hero-arch { width: min(170px, 46vw); height: min(170px, 46vw); }
  .cond-card { flex-basis: 84%; }
}
