/* ============================================================
   CLINIC 103 — ICE   /   "Glacier Editorial"
   A cold-clinical, editorial system: serif display + grotesk
   sans, sharp edges, hairline rules instead of card shadows,
   a steel-teal cold accent with a single warm ember accent
   for the body's rebound-warmth after cold exposure.
   Mobile-first: base rules → phone; min-width queries add only.
   ============================================================ */

:root {
  --ink: #10191B;
  --paper: #FFFFFF;
  --frost: #EEF2F1;
  --panel: #E3EAE9;
  --teal: #1B6FC8;
  --teal-dark: #1255A8;
  --teal-wash: rgba(27, 111, 200, 0.09);
  --ember: #38BDF8;
  --ember-dark: #0284C7;
  --ink-soft: rgba(16, 25, 27, 0.64);
  --paper-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(16, 25, 27, 0.16);
  --line-inv: rgba(255, 255, 255, 0.20);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 2px;
  --tap: 44px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--frost);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

::selection {
  background: var(--teal);
  color: var(--paper);
}

/* ===================== ACCESSIBILITY ===================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: var(--paper);
  padding: 12px 16px;
  z-index: 300;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ===================== LAYOUT UTILITIES ===================== */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .wrap {
    padding: 0 32px;
  }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 14px;
  font-style: italic;
}

.section-head {
  max-width: var(--container);
  margin: 0 auto 36px;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .section-head {
    margin-bottom: 48px;
    padding: 0 32px;
  }
}

.section-head h2 {
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 400;
}

.section-lede {
  max-width: 540px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

section {
  padding: 60px 0;
}

@media (min-width: 640px) {
  section {
    padding: 92px 0;
  }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.86rem;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .btn {
    padding: 15px 32px;
    font-size: 0.9rem;
  }
}

.btn-solid {
  background: var(--ember);
  color: var(--paper);
}

.btn-solid:hover {
  background: var(--ember-dark);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-outline-inv {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--paper);
}

.btn-outline-inv:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-sm {
  min-height: 38px;
  padding: 9px 18px;
  font-size: 0.78rem;
}

.btn-lg {
  min-height: 52px;
  padding: 16px 34px;
  font-size: 0.94rem;
}

@media (min-width: 640px) {
  .btn-lg {
    min-height: 56px;
    padding: 18px 40px;
    font-size: 1rem;
  }
}

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 150;
  background: url('IMAGES/header background.png') center center, repeat;
  border-bottom: 1px solid rgba(43, 110, 119, 0.25);
  box-shadow: 0 2px 20px rgba(43, 110, 119, 0.15);
}

/* All nav text dark against the light icy header background */
.nav .nav-tel {
  color: var(--teal-dark);
}

.nav .burger span {
  background: var(--teal-dark);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 640px) {
  .nav-inner {
    padding: 18px 32px;
  }
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 44px;
  width: auto;
}

@media (min-width: 640px) {
  .brand-logo {
    height: 52px;
  }
}

/* Nav links: simple dropdown panel, not a fullscreen dark takeover */
.nav-links {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 140;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 120px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  display: flex;
  flex-direction: column;
}

.nav-links.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}

.nav-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  flex-grow: 1;
  align-content: stretch;
}

@media (min-width: 640px) {
  .nav-links-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

.nav-links-grid a {
  display: flex;
  align-items: center;
  padding: clamp(16px, 3vh, 32px) 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6vw, 1.8rem);
  font-weight: 400;
  color: var(--ink);
  transition: color .2s ease;
}

.nav-num {
  display: none;
}

.nav-links-grid a:hover {
  color: var(--teal);
}

.nav-menu-ctas {
  max-width: var(--container);
  margin: 22px auto 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-cta-book {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 15px;
  background: var(--ember);
  color: var(--paper);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.86rem;
  transition: background .15s ease;
}

.nav-cta-book:hover {
  background: var(--ember-dark);
}

.nav-cta-row {
  display: flex;
  gap: 12px;
}

.nav-cta-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-cta-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-tel {
  display: none;
  font-size: 0.86rem;
  color: var(--teal-dark);
  font-weight: 600;
}

@media (min-width: 1080px) {
  .nav-tel {
    display: block;
  }
}

.nav-actions .btn {
  display: none;
}

@media (min-width: 420px) {
  .nav-actions .btn {
    display: inline-flex;
  }
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: var(--tap);
  min-height: var(--tap);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 145;
}

.burger span {
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===================== HERO ===================== */
.hero {
  padding: 56px 0 0;
  background: var(--frost);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 40px;
}

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

.hero-copy .eyebrow {
  font-size: 0.86rem;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-ctas .btn {
  width: 100%;
}

@media (min-width: 520px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-ctas .btn {
    width: auto;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-stat {
  padding: 18px 22px 0 0;
  margin-right: 22px;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal-dark);
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.hero-media {
  position: relative;
  padding-bottom: 18px;
}

.hero-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08);
}

.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 22px;
  box-shadow: 0 18px 40px -18px rgba(16, 25, 27, 0.5);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badge b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--paper);
  flex-shrink: 0;
}

.hero-badge span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--paper-soft);
}

/* Benefit strip — static, no scroll animation */
.marquee {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--paper);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.marquee::-webkit-scrollbar {
  display: none;
}

@media (max-width: 899px) {
  .marquee {
    mask-image: linear-gradient(to right, black calc(100% - 28px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 28px), transparent 100%);
  }
}

.marquee-track {
  display: inline-flex;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.marquee-track span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 16px 22px;
  border-right: 1px solid var(--line);
}

.marquee-track span:last-child {
  border-right: none;
}

/* ===================== WHY ===================== */
.why-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

@media (min-width: 640px) {
  .why-grid {
    padding: 0 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.why-card {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 640px) {
  .why-card {
    border-right: 1px solid var(--line);
    padding: 30px 24px;
  }
}

.why-card:nth-child(2n) {
  border-right: none;
}

@media (min-width: 980px) {
  .why-card:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .why-card:nth-child(4n) {
    border-right: none;
  }
}

.why-icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ===================== FEATURED ===================== */
.featured {
  background: var(--ink);
}

.featured .eyebrow {
  color: var(--ember);
}

.featured .section-head h2 {
  color: var(--paper);
}

.featured .section-lede {
  color: rgba(255, 255, 255, 0.62);
}

.featured-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.featured-link {
  flex-shrink: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}

.featured-link:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.featured-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .featured-grid {
    padding: 0 32px;
  }
}

@media (min-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.f-card {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-inv);
}

.f-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.f-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: transform .4s ease;
}

.f-card:hover .f-photo img {
  transform: scale(1.03);
}

.f-badge {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--ember);
  padding: 6px 14px;
  font-weight: 600;
}

.f-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.f-cat {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.f-body h3 {
  font-size: 1.32rem;
  color: var(--paper);
  font-weight: 400;
}

.f-body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  flex-grow: 1;
}

.f-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.f-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--paper);
  font-weight: 400;
}

.featured .btn-solid {
  background: var(--paper);
  color: var(--ink);
}

.featured .btn-solid:hover {
  background: var(--ember);
  color: var(--paper);
}

/* ===================== PROCESS ===================== */
.process-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 640px) {
  .process-list {
    padding: 0 32px;
  }
}

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

.process-item {
  position: relative;
  padding: 32px 26px 32px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

@media (min-width: 800px) {
  .process-item {
    border-right: 1px solid var(--line);
    padding: 36px 30px;
  }

  .process-item:last-child {
    border-right: none;
  }
}

.process-num {
  position: absolute;
  top: -6px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  color: var(--teal);
  opacity: 0.16;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.process-item h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.process-item p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  position: relative;
  z-index: 1;
}

/* ===================== SERVICES ===================== */
.services {
  background: var(--paper);
}

.filters {
  max-width: var(--container);
  margin: 0 auto 38px;
  padding: 0 20px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 640px) {
  .filters {
    padding: 0 32px 0;
  }
}

.filter {
  color: var(--ink-soft);
  min-height: var(--tap);
  padding: 12px 2px;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}

.filter:hover {
  color: var(--ink);
}

.filter.is-active {
  color: var(--ink);
  border-color: var(--teal);
}

.service-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .service-grid {
    padding: 0 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.s-card {
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.s-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--panel);
}

.s-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.1);
  transition: transform .4s ease;
}

.s-card:hover .s-photo img {
  transform: scale(1.04);
}

.s-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.s-cat {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--teal);
  font-weight: 600;
}

.s-body h3 {
  font-size: 1.22rem;
  font-weight: 400;
}

.s-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex-grow: 1;
}

.s-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.s-tag {
  font-size: 0.76rem;
  padding: 5px 12px;
  border: 1px solid var(--line);
}

.s-tag.price {
  color: var(--teal-dark);
  font-weight: 600;
  border-color: var(--teal);
  background: var(--teal-wash);
}

.s-tag.time {
  color: var(--ink-soft);
}

.s-foot {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.s-book {
  flex: 1;
  text-align: center;
  background: var(--ember);
  color: var(--paper);
  padding: 11px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background .15s ease;
}

.s-book:hover {
  background: var(--ember-dark);
}

.s-detail {
  flex: 1;
  text-align: center;
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color .15s ease, color .15s ease;
}

.s-detail:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ===================== GALLERY ===================== */
.gallery {
  background: var(--ink);
}

.gallery .section-head h2 {
  color: var(--paper);
}

.gallery .eyebrow {
  color: var(--ember);
}

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .gallery-grid {
    padding: 0 32px;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
  }
}

.g-item-wide {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

@media (min-width: 900px) {
  .g-item-wide {
    grid-column: 1 / 2;
    grid-row: 1;
    min-height: unset;
  }
}

.g-item {
  position: relative;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.g-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15);
}

.g-item-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15);
  position: absolute;
  top: 0;
  left: 0;
}

.g-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(16, 25, 27, 0.85), transparent);
  color: var(--paper);
  font-size: 0.8rem;
}

/* Gallery side panel — benefits list */
.g-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.03);
  min-height: 300px;
}

@media (min-width: 900px) {
  .g-side {
    grid-column: 2 / 3;
    grid-row: 1;
    min-height: unset;
  }
}

.g-side h3 {
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 20px;
  font-weight: 400;
}

.g-side ul {
  display: flex;
  flex-direction: column;
}

.g-side ul li {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.g-side ul li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===================== REVIEWS ===================== */
.reviews-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 1px;
  padding-bottom: 1px;
}

@media (min-width: 640px) {
  .reviews-grid {
    padding: 0 32px;
  }
}

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

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

.r-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.r-stars {
  color: var(--ember);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.r-quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}

.r-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.r-avatar {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
}

.r-author {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.r-treat {
  font-size: 0.76rem;
  color: var(--teal);
  margin: 2px 0 0;
}

/* ===================== FAQ ===================== */
.faq-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .faq-list {
    padding: 0 32px;
  }
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  min-height: var(--tap);
}

.faq__q .plus {
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform .25s ease;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.faq-item.is-open .faq__q .plus {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq__a-inner {
  padding: 0 4px 26px;
  color: var(--ink-soft);
  max-width: 66ch;
  line-height: 1.7;
}

/* ===================== CTA BAND ===================== */
.cta {
  background: var(--ink);
}

.cta .wrap {
  padding-top: 68px;
  padding-bottom: 68px;
}

.cta-inner {
  max-width: 620px;
  text-align: center;
  margin: 0 auto;
}

.cta .eyebrow {
  color: var(--ember);
}

.cta-inner h2 {
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--paper);
  margin-bottom: 18px;
  font-weight: 400;
}

.cta-inner>p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 26px;
}

.cta-ctas .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .cta-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-ctas .btn {
    width: auto;
  }
}

.cta-ctas .btn-solid {
  background: var(--paper);
  color: var(--ink);
}

.cta-ctas .btn-solid:hover {
  background: var(--ember);
  color: var(--paper);
}

.cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.64);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 68px 20px 38px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 820px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 76px 32px 40px;
  }
}

.footer-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-inv);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  transition: all .2s ease;
}

.footer-socials a:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--paper);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

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

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-hours {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-map {
  max-width: var(--container);
  margin: 0 auto;
  height: 300px;
  filter: grayscale(1) invert(0.92) contrast(0.9);
  opacity: 0.8;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .footer-map {
    padding: 0 32px;
  }
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 20px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px 32px 24px;
  }
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

/* ===================== BACK TO TOP ===================== */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 76px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 90;
}

@media (min-width: 820px) {
  .to-top {
    right: 24px;
    bottom: 24px;
  }
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--teal-dark);
}

/* ===================== STICKY BOTTOM BAR ===================== */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  background: var(--paper);
  border-top: 1px solid var(--line);
  transition: transform .3s ease;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 6px;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid var(--line);
  color: var(--ink);
}

.sticky-btn:last-child {
  border-right: none;
}

.sticky-book {
  background: var(--ember);
  color: var(--paper);
}

.sticky-wa:hover,
.sticky-call:hover {
  background: var(--panel);
}

.sticky-book:hover {
  background: var(--ember-dark);
}

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

/* ===================== ICE SHOWER EFFECT ===================== */
#ice-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  /* Let clicks pass through */
  z-index: 9999;
  overflow: hidden;
}

.ice-particle {
  position: absolute;
  top: -10%;
  font-size: 1.2rem;
  user-select: none;
  animation: fall linear infinite;
  opacity: 0.4;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

@keyframes fall {
  0% {
    transform: translateY(0vh) rotate(0deg) scale(0.8);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(110vh) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}