/* =========================================================
   CLOUDHUT — stylesheet
   Dark cozy workshop x cloud room x urban lounge.
   ========================================================= */

/* ---------- fonts (self-hosted, variable, Latin+Cyrillic) ---------- */
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-var.woff2") format("woff2-variations"), url("../fonts/Unbounded-var.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-var.woff2") format("woff2-variations"), url("../fonts/Manrope-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --bg: #111211;
  --bg-soft: #171918;
  --bg-alt: #1b1d1c;
  --ivory: #f1ece2;
  --ivory-soft: rgba(241, 236, 226, 0.72);
  --muted: rgba(241, 236, 226, 0.52);
  --faint: rgba(241, 236, 226, 0.28);
  --line: rgba(241, 236, 226, 0.12);
  --copper: #b97d42;
  --copper-bright: #dda468;
  --copper-dim: rgba(185, 125, 66, 0.35);
  --teal: #3f8a83;
  --teal-glow: rgba(63, 138, 131, 0.35);

  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);

  --header-h: 76px;
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }
}

/* ---------- reset ---------- */
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: var(--header-h);
}
html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, p, figure {
  margin: 0;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
svg {
  display: block;
}

::selection {
  background: var(--copper);
  color: #1a1410;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 5000;
  background: var(--ivory);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ---------- shared bits ---------- */
.ch-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-bright);
}

.ch-section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.ch-section-head__lede {
  max-width: 46ch;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ivory-soft);
  line-height: 1.5;
}

.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.ch-btn--solid {
  background: var(--copper);
  color: #191410;
}
.ch-btn--solid:hover {
  background: var(--copper-bright);
  transform: translateY(-2px);
}
.ch-btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
.ch-btn--ghost:hover {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
  transform: translateY(-2px);
}

/* reveal primitives — JS toggles .is-visible; CSS-only fallback keeps content shown */
[data-reveal-up],
[data-reveal-lines] span,
[data-split-chars] {
  opacity: 1;
}
.js-ready [data-reveal-up] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js-ready [data-reveal-up].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-ready [data-reveal-lines] span {
  display: block;
  overflow: hidden;
}
.reveal-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
  will-change: transform;
}
.is-visible .reveal-line-inner {
  transform: translateY(0);
}

/* hero wordmark wipe reveal */
.js-ready .ch-hero__title {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s var(--ease);
}
.js-ready .ch-hero__title.is-revealed {
  clip-path: inset(0 0% 0 0);
}


/* ---------- header ---------- */
.ch-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(17, 18, 17, 0.55), transparent);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.ch-header.is-scrolled {
  background: rgba(17, 18, 17, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.ch-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ch-header__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ch-header__nav {
  display: none;
  gap: clamp(20px, 3vw, 40px);
}
.ch-header__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory-soft);
  position: relative;
  padding: 4px 0;
}
.ch-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--copper-bright);
  transition: right 0.35s var(--ease);
}
.ch-header__nav a:hover {
  color: var(--ivory);
}
.ch-header__nav a:hover::after {
  right: 0;
}
.ch-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ch-header__book {
  display: none;
  padding: 11px 22px;
  font-size: 13px;
}

.ch-burger {
  position: relative;
  width: 30px;
  height: 20px;
}
.ch-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.4s var(--ease), top 0.3s var(--ease), opacity 0.3s ease;
}
.ch-burger span:first-child {
  top: 0;
}
.ch-burger span:last-child {
  top: 100%;
}
.ch-burger--close span:first-child {
  top: 50%;
  transform: rotate(45deg);
}
.ch-burger--close span:last-child {
  top: 50%;
  transform: rotate(-45deg);
}

@media (min-width: 900px) {
  .ch-header__nav {
    display: flex;
  }
  .ch-header__book {
    display: inline-flex;
  }
  .ch-burger {
    display: none;
  }
}

/* ---------- fullscreen mobile menu ---------- */
.ch-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #0d0e0d;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  padding: max(20px, env(safe-area-inset-top)) var(--pad) max(24px, env(safe-area-inset-bottom));
  clip-path: circle(0% at calc(100% - 40px) 36px);
  transition: clip-path 0.65s var(--ease);
  visibility: hidden;
}
.ch-menu.is-open {
  clip-path: circle(150% at calc(100% - 40px) 36px);
  visibility: visible;
}
.ch-menu__scrim {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.ch-menu__scrim.is-open {
  opacity: 1;
}
.ch-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  flex: none;
}
.ch-menu__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.ch-menu__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 6px;
}
.ch-menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 7.4vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease, padding-left 0.35s var(--ease);
  white-space: nowrap;
}
.ch-menu__nav a:hover,
.ch-menu__nav a:focus-visible {
  color: var(--copper-bright);
  padding-left: 10px;
}
.ch-menu__num {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}
.ch-menu__footer {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.ch-menu__addr {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.ch-menu__phone {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5vw, 1.7rem);
  font-weight: 600;
}
.ch-menu__cta {
  width: 100%;
  padding-block: 17px;
  margin-top: 4px;
}

@media (min-width: 900px) {
  .ch-menu,
  .ch-menu__scrim {
    display: none;
  }
}

/* ================= HERO ================= */
.ch-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 26px);
  padding: calc(var(--header-h) + 24px) var(--pad) 90px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.ch-hero__cloud {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.ch-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.ch-hero__blob--a {
  width: 55vw;
  height: 55vw;
  max-width: 640px;
  max-height: 640px;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--copper-dim), transparent 70%);
  animation: cloud-drift-a 26s ease-in-out infinite;
}
.ch-hero__blob--b {
  width: 38vw;
  height: 38vw;
  max-width: 460px;
  max-height: 460px;
  left: 62%;
  top: 60%;
  background: radial-gradient(circle, var(--teal-glow), transparent 72%);
  animation: cloud-drift-b 32s ease-in-out infinite;
}
@keyframes cloud-drift-a {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-46%, -54%) scale(1.08); }
}
@keyframes cloud-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 3%) scale(1.1); }
}
.ch-hero__grain {
  position: absolute;
  inset: -10%;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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");
}
@media (prefers-reduced-motion: reduce) {
  .ch-hero__blob { animation: none; }
}

.ch-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.ch-hero__title {
  line-height: 0.92;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 11.7vw, 10.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 100%;
}
.ch-hero__title-word {
  display: inline-block;
  background-image: url("../img/12_hookah_hero_wide-1280.webp");
  background-size: cover;
  background-position: center 42%;
  filter: brightness(1.28) saturate(1.15) contrast(1.05);
  color: var(--ivory);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .ch-hero__title-word {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.ch-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  color: var(--ivory-soft);
}

.ch-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.ch-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vw, 40px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ch-hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}
.ch-hero__scroll-line {
  width: 1px;
  height: 38px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.ch-hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto 0;
  height: 100%;
  background: var(--copper-bright);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .ch-hero__scroll-line::after { animation: none; top: 0; }
}

/* ================= INTRO PAUSE ================= */
.ch-intro {
  padding: clamp(90px, 16vh, 180px) var(--pad);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.ch-intro__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 6vw, 3.6rem);
  line-height: 1.12;
  text-transform: uppercase;
}
.ch-intro__title span {
  overflow: hidden;
}
.ch-intro__addr {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ================= ATMOSPHERE ================= */
.ch-atmosphere {
  padding-block: clamp(60px, 10vh, 120px);
}
.ch-atmosphere__row {
  max-width: var(--container);
  margin: 0 auto clamp(50px, 8vw, 96px);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}
.ch-atmosphere__row--small {
  justify-content: flex-start;
}
.ch-atmosphere__row--large {
  justify-content: center;
}
.ch-atmosphere__note {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 20ch;
  color: var(--ivory-soft);
}
.ch-atmosphere__statement {
  max-width: var(--container);
  margin: clamp(20px, 6vw, 60px) auto 0;
  padding: 0 var(--pad);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  color: var(--ivory);
}
.ch-atmosphere__statement span {
  overflow: hidden;
  display: block;
}

.ch-media {
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-alt);
}
.ch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.ch-media--sm {
  width: min(48vw, 300px);
  aspect-ratio: 3 / 4;
  position: relative;
}
.ch-media--sm figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(17, 18, 17, 0.55);
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.ch-media--lg {
  width: min(78vw, 640px);
  aspect-ratio: 3 / 4;
  margin-inline: auto;
}
.ch-media--tall {
  width: min(70vw, 380px);
  aspect-ratio: 16 / 15;
}
.ch-media--hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: clamp(16px, 3vw, 28px);
}
.ch-media--wide {
  aspect-ratio: 1 / 2;
}

@media (max-width: 720px) {
  .ch-atmosphere__row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .ch-atmosphere__row--large {
    align-items: center;
  }
  .ch-atmosphere__row--large .ch-media--lg {
    width: 100%;
  }
  .ch-atmosphere__statement {
    text-align: left;
  }
}

/* ================= FULLSCREEN SCENE ================= */
.ch-fullscreen {
  position: relative;
  height: 82svh;
  min-height: 460px;
  overflow: hidden;
}
.ch-fullscreen picture,
.ch-fullscreen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-fullscreen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 9, 0.75), transparent 40%);
}
.ch-fullscreen__label {
  position: absolute;
  left: var(--pad);
  bottom: clamp(20px, 4vw, 36px);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ivory);
}

/* ================= BRAND MOMENT ================= */
.ch-brand {
  position: relative;
  padding: clamp(70px, 12vh, 140px) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
  justify-items: center;
  text-align: center;
}
.ch-brand__media {
  width: min(72vw, 420px);
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-alt);
}
.ch-brand__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-brand__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--ivory);
}
.ch-brand__title span {
  display: block;
  overflow: hidden;
}
.ch-brand__title span:last-child {
  color: var(--copper-bright);
}

@media (min-width: 900px) {
  .ch-brand {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    justify-items: start;
  }
}

/* ================= SPACE ================= */
.ch-space {
  padding-block: clamp(70px, 12vh, 140px);
}
.ch-space__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}
.ch-space__title span {
  display: block;
  overflow: hidden;
}
.ch-space__body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(32px, 6vw, 60px);
  align-items: center;
}
.ch-space__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.ch-space__list li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 4.6vw, 2.6rem);
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory-soft);
  transition: color 0.3s ease, padding-left 0.35s var(--ease);
}
.ch-space__list li:hover {
  color: var(--copper-bright);
  padding-left: 12px;
}
.ch-space__accent {
  max-width: var(--container);
  margin: clamp(40px, 8vw, 80px) auto 0;
  padding: 0 var(--pad);
  aspect-ratio: 16 / 8;
  border-radius: 3px;
  overflow: hidden;
}
.ch-space__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

@media (min-width: 900px) {
  .ch-space__body {
    flex-direction: row;
    align-items: flex-start;
  }
  .ch-space__list {
    flex: 1.1;
  }
  .ch-media--tall {
    flex: 0.9;
  }
}

/* ================= DETAILS ================= */
.ch-details {
  padding-block: clamp(70px, 12vh, 140px);
}
.ch-details__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 20px);
}
.ch-details .ch-media--hero {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--pad);
  box-sizing: content-box;
}

@media (min-width: 760px) {
  .ch-details__grid {
    grid-template-columns: 1.3fr 1fr 0.9fr;
    align-items: stretch;
  }
  .ch-details__grid .ch-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 360px;
  }
}

/* ================= INFO (rating + hours) ================= */
.ch-info {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 10vh, 110px) var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(50px, 8vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ch-info__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ch-info__figure {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 0.9;
  color: var(--ivory);
}
.ch-info__col--hours .ch-info__figure {
  color: var(--copper-bright);
}
.ch-info__meta {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.ch-info__hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ivory-soft);
}
.ch-info__hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 320px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 760px) {
  .ch-info {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================= FINAL CONTACT SCENE ================= */
.ch-contact {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.ch-contact__bg,
.ch-contact__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.ch-contact__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.55) 0%, rgba(10, 10, 9, 0.78) 55%, rgba(10, 10, 9, 0.92) 100%);
}
.ch-contact__body {
  text-align: center;
  padding: 120px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ch-contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 13vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.ch-contact__title span {
  display: block;
  overflow: hidden;
}
.ch-contact__addr {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--ivory-soft);
  line-height: 1.5;
}
.ch-contact__phone {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  color: var(--copper-bright);
}
.ch-contact__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

/* ================= FOOTER ================= */
.ch-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) var(--pad) calc(clamp(28px, 5vw, 44px) + env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ch-footer__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.ch-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.ch-footer__meta a:hover {
  color: var(--copper-bright);
}
.ch-footer__top {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.ch-footer__top:hover {
  color: var(--ivory);
}

/* ================= STICKY MOBILE CTA ================= */
.ch-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(17, 18, 17, 0.96), rgba(17, 18, 17, 0.7));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.ch-sticky-cta.is-visible {
  transform: translateY(0);
}
.ch-sticky-cta__btn {
  width: 100%;
  padding-block: 14px;
}

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

/* ================= responsive type tune-ups ================= */
