/* Cuthouse — bright Swiss-modern barbershop styling */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Default — Studio (bright, slight warm) */
  --bg: #FBF8F0;
  --bg-soft: #F3EDDF;
  --bg-card: #FFFCF5;
  --ink: #1A1611;
  --ink-soft: #322C22;
  --muted: #6E6453;
  --muted-2: #9C9180;
  --line: #E0D8C5;
  --line-soft: #ECE5D2;
  --copper: #B87040;
  --sand: #C8B890;
  --cream: #E8DCC8;
  --rust-deep: #8E3D1C;
  --accent: #C45A2C;
  --accent-soft: rgba(196, 90, 44, 0.08);

  --font-display: 'Unbounded', 'Archivo', 'Helvetica Neue', sans-serif;
  --font-sans: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'Unbounded', 'Archivo', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Archivo', 'Helvetica Neue', sans-serif;

  --container: 1240px;
  --pad-x: 64px;
  --rad: 4px;
}

/* ── Palette modes ──────────────────────────────────────── */
.ch-root[data-palette="studio"] {
  --bg: #FBF8F0;
  --bg-soft: #F3EDDF;
  --bg-card: #FFFCF5;
  --ink: #1A1611;
  --ink-soft: #322C22;
  --muted: #6E6453;
  --muted-2: #9C9180;
  --line: #E0D8C5;
  --line-soft: #ECE5D2;
}
.ch-root[data-palette="workshop"] {
  --bg: #EFE6D2;
  --bg-soft: #E2D6BC;
  --bg-card: #F5EDD9;
  --ink: #221B12;
  --ink-soft: #3A2F1F;
  --muted: #6F5F46;
  --muted-2: #9E8E72;
  --line: #D2C39E;
  --line-soft: #DBCEA9;
}
.ch-root[data-palette="retro"] {
  --bg: #14110C;
  --bg-soft: #1C1813;
  --bg-card: #221C15;
  --ink: #ECE0C7;
  --ink-soft: #D6C8AB;
  --muted: #9A8E72;
  --muted-2: #786C53;
  --line: rgba(196, 90, 44, 0.18);
  --line-soft: rgba(196, 90, 44, 0.1);
  --cream: #ECE0C7;
}
.ch-root[data-palette="retro"] {
  background: var(--bg);
}
.ch-root[data-palette="retro"] .ch-nav {
  background: rgba(20, 17, 12, 0.92);
  border-bottom-color: var(--line);
}
.ch-root[data-palette="retro"] .ch-team-card {
  background: transparent;
}
.ch-root[data-palette="retro"] .ch-google-pill {
  border-color: rgba(255,255,255,0.18);
  color: rgba(236, 224, 199, 0.9);
}
.ch-root[data-palette="retro"] .ch-photo-tag,
.ch-root[data-palette="retro"] .ch-team-years,
.ch-root[data-palette="retro"] .ch-gal-cell figcaption {
  background: rgba(0,0,0,0.7);
}
.ch-root[data-palette="retro"] .ch-team-num {
  background: var(--bg-card);
  color: var(--accent);
}
.ch-root[data-palette="retro"] .ch-cta {
  background: #0E0B07;
}
.ch-root[data-palette="retro"] .ch-reviews {
  background: #0E0B07;
}
.ch-root[data-palette="retro"] .ch-footer {
  background: #1C1813;
}
.ch-root[data-palette="retro"] .ch-btn-ghost {
  color: var(--ink); border-color: var(--ink);
}
.ch-root[data-palette="retro"] .ch-btn-ghost:hover {
  background: var(--ink); color: var(--bg);
}
.ch-root[data-palette="retro"] .ch-map-canvas { background: #1C1813; }
.ch-root[data-palette="retro"] .ch-about-stamp { background: var(--bg-soft); }

/* ── Tile pattern (white tiles, black grout — from studio wall) ── */
.ch-tile-bg {
  background-color: #F8F5EC;
  background-image:
    linear-gradient(to right, rgba(20, 17, 12, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 17, 12, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}
.ch-tile-bg-dense {
  background-size: 38px 38px;
}
.ch-root[data-palette="retro"] .ch-tile-bg {
  background-color: #1A1611;
  background-image:
    linear-gradient(to right, rgba(232, 220, 200, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232, 220, 200, 0.08) 1px, transparent 1px);
}
/* Whole-page tile mode */
.ch-root.has-tiles {
  background-color: var(--bg);
  background-image:
    linear-gradient(to right, rgba(20, 17, 12, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 17, 12, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.ch-root.has-tiles[data-palette="retro"] {
  background-image:
    linear-gradient(to right, rgba(232, 220, 200, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232, 220, 200, 0.04) 1px, transparent 1px);
}

/* Triangle markers in tile corners — like the studio wall stickers */
.ch-tile-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 56px 56px, var(--ink) 2px, transparent 2.5px),
    radial-gradient(circle at 224px 168px, var(--ink) 2px, transparent 2.5px),
    radial-gradient(circle at 392px 280px, var(--ink) 2px, transparent 2.5px),
    radial-gradient(circle at 168px 392px, var(--ink) 2px, transparent 2.5px),
    radial-gradient(circle at 336px 56px, var(--ink) 2px, transparent 2.5px);
  background-size: 448px 448px;
  opacity: 0.4;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  /* Disable rubber-band overscroll on every browser that supports it
     (iOS Safari, Chromium incl. Brave on macOS, Firefox).
     Combined with body's overscroll-behavior, this kills both the
     top white flash and the bottom white flash during fast scroll. */
  overscroll-behavior: none;
  min-height: 100%;
}
body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01';
  overscroll-behavior: none;
  min-height: 100vh;
  /* Pair with viewport-fit=cover so footer content doesn't sit under
     the iOS home indicator. The bg now extends into the safe area. */
  padding-bottom: env(safe-area-inset-bottom);
}
/* Isolate per-section paint so fast scroll on iOS doesn't flash neighboring layers. */
.ch-section, .ch-cta, .ch-hero-screen, .ch-marquee, .ch-footer {
  contain: paint;
}

/* Initial page-load fade — runs once on mount. */
.ch-root { animation: chPageIn 420ms ease-out both; }
@keyframes chPageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Subtle cross-fade when language changes (skips nav). */
.ch-root.is-lang-changing > *:not(.ch-nav) {
  animation: chLangFade 240ms ease;
}
@keyframes chLangFade {
  0%   { opacity: 1; transform: translateY(0); }
  35%  { opacity: 0.35; transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ch-root,
  .ch-root.is-lang-changing > *:not(.ch-nav) { animation: none; }
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.ch-root { position: relative; min-height: 100vh; background: var(--bg); transition: background 0.3s ease; }
.ch-root.has-grain::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.ch-root.has-scanlines::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 3px);
}
.ch-root[data-palette="retro"].has-grain::before { display: none; }
.ch-root[data-palette="retro"].has-scanlines::after {
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.25) 2px, rgba(0,0,0,0.25) 3px);
}
.ch-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ── Typography ─────────────────────────────────────────── */
.ch-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 8.4vw, 128px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
}
.ch-h1 .ch-h1-line { display: block; }
.ch-h1 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.ch-h1-light { color: #fff; }

.ch-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
  max-width: 16ch;
}
.ch-h2 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.ch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.ch-eyebrow-light { color: rgba(255,255,255,0.85); }
.ch-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; box-shadow: 0 0 0 4px rgba(93, 214, 106, 0.18); animation: chPulse 2.4s infinite; }
@keyframes chPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.ch-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ch-section-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.ch-section-head-center .ch-section-eyebrow {
  display: inline-flex;
}

.ch-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 28px;
}
.ch-lead-light { color: rgba(255,255,255,0.78); }
.ch-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: 52ch;
}
.ch-section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 14px;
}

/* ── Buttons ────────────────────────────────────────────── */
.ch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--rad);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.ch-btn-solid { background: var(--accent); color: #fff; }
.ch-btn-solid:hover { transform: translateY(-1px); filter: brightness(1.05); }
.ch-btn-solid span { transition: transform 0.18s ease; }
.ch-btn-solid:hover span { transform: translateX(3px); }
.ch-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.ch-btn-ghost:hover { background: var(--ink); color: #fff; }
.ch-btn-ghost-light {
  color: #fff; border-color: rgba(255,255,255,0.6);
}
.ch-btn-ghost-light:hover { background: #fff; color: var(--ink); }
.ch-btn-lg { padding: 18px 30px; font-size: 16px; }
.ch-btn-nav {
  padding: 9px 14px;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  min-width: 140px;
  justify-content: center;
}
.ch-btn-nav span { font-size: 12px; }

/* ── Nav ────────────────────────────────────────────────── */
.ch-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.ch-nav.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.ch-logo { display: inline-flex; align-items: center; text-decoration: none; }
.ch-logo-cuthouse {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow: none;
}
.ch-logo-cuthouse .ch-logo-cut,
.ch-logo-cuthouse .ch-logo-house {
  display: block;
  font-size: 22px;
}
.ch-logo-cuthouse .ch-logo-cut { letter-spacing: 0.04em; }
.ch-logo-cuthouse .ch-logo-house { letter-spacing: 0.01em; color: var(--accent); }
.ch-nav-links { display: flex; gap: 28px; list-style: none; margin-left: auto; margin-right: auto; }
.ch-nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--rad);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.ch-nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.ch-nav-right { display: flex; align-items: center; gap: 14px; }
.ch-langtoggle {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--muted);
}
.ch-langtoggle button {
  background: none; border: none; cursor: pointer;
  font: inherit; color: var(--muted-2);
  padding: 4px 6px;
}
.ch-langtoggle button.on { color: var(--ink); font-weight: 600; }
.ch-langtoggle .ch-lang-sep { color: var(--muted-2); }

/* Desktop: hide the summary trigger; show all 4 options inline. */
.ch-lang-current { display: none; }
.ch-lang-options { display: inline-flex; align-items: center; gap: 6px; }

.ch-theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; padding: 0;
  background: transparent;
  border: 1px solid var(--muted-2);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.ch-theme-toggle:hover {
  background: var(--ink); color: var(--bg);
  border-color: var(--ink);
}
.ch-theme-toggle:active { transform: scale(0.94); }
.ch-theme-toggle svg { display: block; }

/* ── Hero — full-screen with parallax photo ─────────────── */
.ch-hero-screen {
  position: relative;
  /* Lock to small-viewport height so iOS Safari's URL-bar collapse
     doesn't rescale the hero photo as you start scrolling. With 100vh
     the hero would interpolate larger as the bar slides up — felt laggy. */
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
/* Older browsers without svh support fall back to vh. */
@supports not (height: 100svh) {
  .ch-hero-screen { height: 100vh; }
}
.ch-hero-parallax-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.ch-hero-parallax-bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.18);
  /* Lighter tint — let the photo breathe */
  filter: contrast(0.95) brightness(0.78) saturate(0.85);
}
.ch-hero-parallax-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,12,0.25) 0%, rgba(20,17,12,0.15) 35%, rgba(20,17,12,0.45) 100%);
}
.ch-hero-parallax-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, transparent 35%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.ch-hero-screen-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 96px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}
.ch-hero-screen-h1 {
  color: #fff;
  font-size: clamp(44px, 6.2vw, 96px);
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  margin: 0 auto;
}
.ch-hero-screen-h1 em {
  font-style: normal;
}
.ch-hero-screen-actions {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Integrated, less-buttony links in hero */
.ch-hero-screen-actions .ch-btn {
  background: transparent !important;
  border: none;
  color: #fff;
  padding: 10px 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  position: relative;
  border-radius: 0;
}
.ch-hero-screen-actions .ch-btn::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 4px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  transition: background 0.18s ease, transform 0.18s ease;
  transform-origin: left;
}
.ch-hero-screen-actions .ch-btn:hover::after { background: #fff; }
.ch-hero-screen-actions .ch-btn-solid {
  color: #fff;
}
.ch-hero-screen-actions .ch-btn-solid::after {
  background: var(--accent);
  height: 2px;
}
.ch-hero-screen-actions .ch-btn-solid:hover {
  filter: none;
  transform: none;
  color: var(--accent);
}
.ch-hero-screen-actions .ch-btn-solid span {
  margin-left: 6px;
}

/* Retro palette: lighten the tint on dark mode (already dark) */
.ch-root[data-palette="retro"] .ch-hero-parallax-bg {
  filter: grayscale(0.6) contrast(0.95) brightness(0.45) saturate(0.6) sepia(0.15);
}

@media (max-width: 1100px) {
  .ch-hero-screen-inner { padding: 48px 56px 48px; }
}
@media (max-width: 900px) {
  .ch-hero-screen { height: auto; min-height: 100svh; padding: 0; }
  .ch-hero-screen-inner {
    padding: 48px 24px 36px;
    gap: 28px;
  }
  .ch-hero-screen-h1 { max-width: none; }
}

/* ── Legacy hero (kept for any unused references) ───────── */
.ch-hero { padding: 56px var(--pad-x) 0; position: relative; }
.ch-hero-split {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: end;
  padding-top: 40px;
  padding-bottom: 56px;
  position: relative;
}
.ch-hero-split::before {
  content: '';
  position: absolute;
  left: -8px; top: 24px; bottom: 56px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.ch-hero-text { padding-bottom: 0; position: relative; }
.ch-hero-kicker {
  position: absolute;
  left: -56px;
  top: 12px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ch-hero-kicker strong { color: var(--accent); font-weight: 500; }
.ch-h1-line em { font-style: normal; }
.ch-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.ch-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.ch-meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.ch-meta dd {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.ch-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5DD66A;
  box-shadow: 0 0 0 3px rgba(93, 214, 106, 0.2);
  animation: chPulse 2.4s infinite;
}

.ch-hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 560px;
}
.ch-hero-photo {
  background-size: cover; background-position: center;
  position: relative;
  border-radius: var(--rad);
  overflow: hidden;
}
.ch-hero-photo-main { grid-row: 1 / span 2; }
.ch-hero-photo-sm   { grid-column: 2; grid-row: 1; }
.ch-hero-stripe {
  grid-column: 2; grid-row: 2;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.06em;
  padding: 16px;
  text-align: center;
  border-radius: var(--rad);
  text-transform: uppercase;
}
.ch-hero-stripe span:nth-child(even) { opacity: 0.4; }
.ch-photo-tag {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(14,14,12,0.6);
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Hero full-bleed */
.ch-hero-full {
  position: relative;
  min-height: 88vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ch-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ch-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.ch-hero-full-content {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--pad-x);
}
.ch-hero-full-content .ch-h1 { max-width: 12ch; }

.ch-root[data-palette="retro"] .ch-hero-photo,
.ch-root[data-palette="retro"] .ch-about-photo,
.ch-root[data-palette="retro"] .ch-team-photo,
.ch-root[data-palette="retro"] .ch-gal-img,
.ch-root[data-palette="retro"] .ch-hero-img {
  filter: saturate(0.78) contrast(1.05) sepia(0.08);
}

/* ── Marquee ────────────────────────────────────────────── */
.ch-marquee {
  background: var(--accent);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ch-marquee-track {
  display: flex;
  width: max-content;
  animation: chMarquee 28s linear infinite;
}
.ch-marquee-row {
  display: flex; align-items: center; gap: 32px;
  padding-right: 32px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ch-marquee-row i { font-style: normal; opacity: 0.4; }
@keyframes chMarquee { to { transform: translateX(-50%); } }

/* ── Sections ───────────────────────────────────────────── */
.ch-section { padding: 120px 0; }
/* Pause infinite animations when offscreen or when the tab is hidden — saves CPU. */
.is-paused, .is-tab-hidden { animation-play-state: paused !important; }
.ch-section-head { margin-bottom: 64px; max-width: 720px; position: relative; }
.ch-section-head::after {
  content: none;
}
.ch-section-head > * { position: relative; z-index: 1; }
.ch-section-head-center::after {
  right: auto; left: 50%; transform: translateX(-50%);
  opacity: 0.08;
}
.ch-reviews .ch-section-head::after { color: #fff; opacity: 0.05; }
.ch-section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.ch-section-head-center .ch-h2 { margin-left: auto; margin-right: auto; }

/* ── Services ───────────────────────────────────────────── */
.ch-service-list { list-style: none; border-top: 1px solid var(--line); }
.ch-service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 26px 8px 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.ch-service-row:hover { background: var(--bg-soft); }
.ch-service-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--copper);
}
.ch-service-name h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.ch-service-name p {
  font-size: 14px;
  color: var(--muted);
}
.ch-service-time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.ch-service-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0;
  color: var(--ink);
  min-width: 100px;
  text-align: right;
}
/* Single Reserve button below the pricelist — replaces per-row arrows.
   Cleaner flow: people read the whole list, then tap once to book. */
.ch-service-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 700px) {
  .ch-service-cta-row { margin-top: 32px; }
}

/* ── About ──────────────────────────────────────────────── */
.ch-about { background: var(--bg-soft); position: relative; overflow: hidden; }
.ch-about.has-tile-accent {
  background-color: var(--bg-soft);
  background-image:
    linear-gradient(to right, rgba(20, 17, 12, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 17, 12, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ch-about.has-tile-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 48px 48px, var(--ink) 1px, transparent 1.5px),
    radial-gradient(circle at 240px 144px, var(--ink) 1px, transparent 1.5px),
    radial-gradient(circle at 432px 96px, var(--ink) 1px, transparent 1.5px),
    radial-gradient(circle at 144px 336px, var(--ink) 1px, transparent 1.5px),
    radial-gradient(circle at 384px 288px, var(--ink) 1px, transparent 1.5px),
    radial-gradient(circle at 96px 480px, var(--ink) 1px, transparent 1.5px);
  background-size: 480px 528px;
  opacity: 0.12;
}
.ch-root[data-palette="retro"] .ch-about.has-tile-accent {
  background-image:
    linear-gradient(to right, rgba(232, 220, 200, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232, 220, 200, 0.04) 1px, transparent 1px);
}

.ch-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ch-feature-list { list-style: none; margin-top: 40px; }
.ch-feature-list li {
  display: grid;
  grid-template-columns: 32px 28px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-soft);
}
.ch-feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.ch-feature-text {
  line-height: 1.4;
  text-wrap: pretty;
}
.ch-about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 5 / 5;
  max-height: 560px;
}
.ch-about-photo {
  background-size: cover; background-position: center;
  border-radius: var(--rad);
  overflow: hidden;
}
.ch-about-photo-1 { grid-column: 1; grid-row: 1; }
.ch-about-photo-2 { grid-column: 2; grid-row: 1; }
.ch-about-photo-3 { grid-column: 1; grid-row: 2; }
.ch-about-photo-4 { grid-column: 2; grid-row: 2; }
.ch-about-stamp {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  transform: rotate(-8deg);
}
.ch-about-stamp span { font-size: 11px; letter-spacing: 0.25em; }
.ch-about-stamp strong { font-size: 36px; line-height: 1; margin: 4px 0; letter-spacing: -0.02em; }

/* ── Team ───────────────────────────────────────────────── */
.ch-team {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
/* Slightly off-tone vs Gallery so adjacent sections don't blur together */
.ch-root[data-palette="retro"] .ch-team { background: #1F1A12; border-color: rgba(232, 220, 200, 0.08); }
.ch-root[data-palette="studio"] .ch-team { background: #F6EFDD; }
.ch-root[data-palette="workshop"] .ch-team { background: #E6DAC2; }
.ch-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
}
.ch-team-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.ch-team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  align-items: stretch;
}
.ch-team-card:hover { transform: none; box-shadow: none; }
.ch-team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 22%;
  border-radius: 4px;
  overflow: hidden;
}
.ch-team-years {
  position: absolute; left: 8px; bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #fff;
  background: rgba(14,14,12,0.65);
  padding: 3px 7px;
  border-radius: 2px;
}
.ch-team-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ch-team-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink);
}
.ch-team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.ch-team-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 0;
}
.ch-team-link {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding-bottom: 4px;
}
.ch-team-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
}
.ch-team-card:hover .ch-team-link::after,
.ch-team-link:hover::after,
.ch-team-link:focus-visible::after {
  transform: scaleX(1);
}

/* Ensure name reads on dark/retro palette */
.ch-root[data-palette="retro"] .ch-team-name { color: var(--ink); }

/* Tighter team section so it fits in one viewport */
.ch-team { padding: 80px 0; }
.ch-team .ch-section-head { margin-bottom: 48px; max-width: 720px; }
.ch-team .ch-h2 { font-size: clamp(34px, 4.4vw, 60px); max-width: 14ch; }

/* ── Gallery ────────────────────────────────────────────── */
.ch-gallery { background: var(--bg-soft); position: relative; overflow: hidden; }
.ch-gallery.has-tile-accent {
  background-color: var(--bg-soft);
  background-image:
    linear-gradient(to right, rgba(20, 17, 12, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 17, 12, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ch-root[data-palette="retro"] .ch-gallery.has-tile-accent {
  background-image:
    linear-gradient(to right, rgba(232, 220, 200, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232, 220, 200, 0.04) 1px, transparent 1px);
}
.ch-gallery-rail {
  position: relative;
  margin-top: 32px;
}
.ch-gallery { padding: 64px 0 72px; }
.ch-gallery .ch-section-head { margin-bottom: 32px; }
.ch-gallery .ch-h2 { font-size: clamp(34px, 4.4vw, 60px); }

/* Marquee — slow, infinite, paused on hover */
.ch-gallery-rail-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
/* Native scroll container — JS auto-advances scrollLeft each frame. User can
   swipe (touch) or click the nav buttons (desktop) to take over.
   No scroll-snap: it would silently round programmatic scrollLeft writes to
   cell boundaries, freezing the auto-advance. */
.ch-gallery-marquee {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
}
.ch-gallery-marquee::-webkit-scrollbar { display: none; }

/* Subtle prev/next buttons — hidden until you hover the rail (desktop only). */
.ch-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
}
.ch-gallery-nav-prev { left: 16px; }
.ch-gallery-nav-next { right: 16px; }
.ch-gallery-rail-marquee:hover .ch-gallery-nav,
.ch-gallery-rail-marquee:focus-within .ch-gallery-nav {
  opacity: 0.9;
  pointer-events: auto;
}
.ch-gallery-nav:hover {
  opacity: 1 !important;
  background: var(--bg-card);
  transform: translateY(-50%) scale(1.06);
}
/* Touch devices: drop the buttons entirely — swipe is the natural input. */
@media (hover: none) {
  .ch-gallery-nav { display: none; }
}

.ch-gallery-track {
  display: flex;
  gap: 20px;
  padding: 4px var(--pad-x);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.ch-gallery-track::-webkit-scrollbar { display: none; }
.ch-gallery-track-spacer { flex: 0 0 var(--pad-x); }
.ch-gal-cell {
  position: relative;
  flex: 0 0 240px;
  height: 320px;
  overflow: hidden;
  border-radius: var(--rad);
  background: var(--bg-soft);
  scroll-snap-align: start;
}
.ch-gal-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--rad);
}
.ch-gal-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.3s ease;
}
.ch-gal-cell:hover .ch-gal-img { filter: brightness(1.05); }
.ch-gal-cell figcaption { display: none; }
.ch-gal-num { color: var(--accent); font-weight: 700; }

.ch-gallery-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 24px var(--pad-x) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.ch-gal-arrow {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.ch-gal-arrow:hover:not(:disabled) {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}
.ch-gal-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
@media (max-width: 700px) {
  .ch-gal-cell { flex: 0 0 65vw; height: 300px; }
}

/* ── Reviews ────────────────────────────────────────────── */
.ch-reviews { background: var(--ink); color: #fff; }
.ch-reviews .ch-h2 { color: #fff; }
.ch-reviews .ch-section-eyebrow { color: rgba(255,255,255,0.55); }
.ch-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.ch-review {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--rad);
  padding: 28px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}
.ch-review:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.ch-review-stars { font-size: 16px; letter-spacing: 0.18em; margin-bottom: 16px; }
.ch-review-text {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  flex: 1;
}
.ch-review footer {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ch-review-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.ch-review-when {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
}
.ch-google-row { margin-top: 40px; text-align: center; }
.ch-google-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}
.ch-google-pill:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.36);
}

/* ── Contact ────────────────────────────────────────────── */
.ch-contact { padding: 72px 0 80px; }
.ch-contact .ch-h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  max-width: 14ch;
}
.ch-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.ch-contact-list { list-style: none; margin: 28px 0 24px; border-top: 1px solid var(--line); }
.ch-contact-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.ch-contact-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ch-contact-list dd {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.ch-contact-list a { text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.ch-contact-list a:hover { border-color: var(--accent); color: var(--accent); }
.ch-hours h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--ink);
}
.ch-hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink);
}
.ch-hours-row span:last-child { font-family: var(--font-mono); font-size: 13px; }
.ch-hours-closed span:last-child { color: var(--muted-2); }

.ch-map { display: flex; flex-direction: column; gap: 12px; }
.ch-map-canvas {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  background: #1C1813;
  z-index: 0;
}
.ch-map-canvas .leaflet-container {
  width: 100%; height: 100%;
  background: #1C1813;
  font-family: var(--font-body);
}
/* ESRI Dark Gray Canvas is already dark with light streets — no filter needed. */
.ch-map-canvas .leaflet-control-attribution {
  background: rgba(20, 18, 14, 0.7);
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  padding: 2px 6px;
}
.ch-map-canvas .leaflet-control-attribution a { color: rgba(255,255,255,0.75); }
.ch-map-canvas .leaflet-control-zoom a {
  background: rgba(20, 18, 14, 0.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  margin-bottom: 4px;
  width: 30px; height: 30px; line-height: 28px;
}
.ch-map-canvas .leaflet-control-zoom a:hover { background: var(--accent); border-color: var(--accent); }

/* Cut House location pin — small teardrop shape pointing down. */
.ch-leaflet-pin { background: transparent !important; border: 0 !important; }
.ch-leaflet-pin-inner {
  position: relative;
  width: 32px; height: 42px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.55));
}
.ch-leaflet-pin-inner svg { display: block; }
.ch-leaflet-pin-pulse {
  position: absolute; left: 50%; bottom: -6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.55;
  animation: chRipple 2.4s infinite;
  pointer-events: none;
}
@keyframes chRipple {
  0%   { transform: translate(-50%, 0) scale(0.4); opacity: 0.7; }
  100% { transform: translate(-50%, 0) scale(2.6); opacity: 0; }
}

/* Křižíkova metro marker — yellow circle with M and label below. */
.ch-metro-pin { background: transparent !important; border: 0 !important; pointer-events: none; }
.ch-metro-badge {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #FFC107;
  color: #1A1611;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  box-shadow: 0 0 0 2px rgba(20, 17, 12, 0.85), 0 4px 8px rgba(0,0,0,0.5);
}
.ch-metro-label {
  position: absolute; left: 50%; top: 26px;
  transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 600;
  font-size: 10px; letter-spacing: 0.04em;
  color: #FFC107;
  background: rgba(20, 17, 12, 0.85);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}
.ch-map-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  align-self: flex-end;
}
.ch-map-link:hover { color: var(--accent); }

/* ── CTA ────────────────────────────────────────────────── */
.ch-cta {
  position: relative;
  min-height: 70vh;
  padding: 90px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ch-cta-parallax-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.ch-cta-parallax-bg {
  position: absolute;
  inset: -6% 0 -6% 0;
  background-size: cover;
  background-position: center 75%;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.10);
  filter: contrast(0.95) brightness(0.6) saturate(0.85);
}
.ch-cta-parallax-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,12,0.55) 0%, rgba(20,17,12,0.4) 40%, rgba(20,17,12,0.65) 100%);
}
.ch-cta-parallax-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, transparent 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.ch-root[data-palette="retro"] .ch-cta-parallax-bg {
  filter: grayscale(0.55) contrast(0.95) brightness(0.4) saturate(0.6) sepia(0.12);
}
.ch-cta .ch-container { position: relative; z-index: 2; }
.ch-cta-inner { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 var(--pad-x); }
.ch-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.7vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 22px;
  max-width: 14ch;
}
.ch-cta-lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.ch-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.ch-cta-aux {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  display: inline-flex; gap: 10px; align-items: center;
}
.ch-cta-aux a { color: rgba(255,255,255,0.92); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }

/* ── Footer ─────────────────────────────────────────────── */
.ch-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
}
.ch-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.ch-footer-brand .ch-logo-cuthouse .ch-logo-cut,
.ch-footer-brand .ch-logo-cuthouse .ch-logo-house {
  font-size: 32px;
}
.ch-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.ch-footer-col ul { list-style: none; }
.ch-footer-col li { font-size: 15px; padding: 4px 0; color: var(--ink-soft); }
.ch-footer-col a { color: inherit; text-decoration: none; }
.ch-footer-col a:hover { color: var(--accent); }
.ch-footer-base {
  border-top: 1px solid var(--line);
  padding: 22px var(--pad-x);
  display: flex; justify-content: space-between; gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ch-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --pad-x: 22px; }
  .ch-nav-links { display: none; }
  .ch-hero-split { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 60px; }
  .ch-hero-kicker { display: none; }
  .ch-hero-media { height: 420px; }
  .ch-meta { grid-template-columns: 1fr 1fr; gap: 22px; }
  .ch-about-grid, .ch-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ch-about-media { height: 380px; }
  .ch-reviews-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .ch-review { padding: 22px; }
  .ch-section { padding: 80px 0; }
  /* Team cards stack their photo above the bio so 36px names don't get squeezed
     by the 200px photo column on tablet/mobile widths. */
  /* Team — horizontal snap scroller; cards take ~60vw so the next one peeks. */
  .ch-team-grid,
  .ch-team-grid-2 {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    padding: 4px 16px 18px;
    margin: 0 -16px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ch-team-grid::-webkit-scrollbar,
  .ch-team-grid-2::-webkit-scrollbar { display: none; }
  .ch-team-card {
    flex: 0 0 60vw;
    grid-template-columns: 1fr;
    gap: 14px;
    scroll-snap-align: start;
  }
  .ch-team-photo { width: 100%; max-width: 100%; aspect-ratio: 4 / 5; }
  .ch-team-name { font-size: 26px; }
  .ch-team-bio { font-size: 13px; line-height: 1.5; }

  /* Services — compact mobile layout: name on top, price + time below.
     Per-row arrow CTA removed; one Reserve button sits below the whole list. */
  .ch-service-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'code code'
      'name name'
      'time price';
    gap: 4px 12px;
    padding: 18px 0;
    align-items: center;
  }
  .ch-service-code { grid-area: code; }
  .ch-service-name { grid-area: name; min-width: 0; }
  .ch-service-name h3 { font-size: 20px; line-height: 1.15; }
  .ch-service-name p { display: none; }
  .ch-service-time { grid-area: time; justify-self: start; font-size: 11px; }
  .ch-service-price { grid-area: price; justify-self: end; min-width: 0; font-size: 22px; }
  .ch-footer-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery: tighter side padding so cells feel closer to the screen edge. */
  .ch-gallery-rail-marquee { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }

  /* Kill ALL parallax visuals on phones — the static scale + negative inset
     was still reading as subtle depth when scrolling fast. Make the bgs flat. */
  .ch-hero-parallax-bg,
  .ch-cta-parallax-bg {
    inset: 0 !important;
    transform: none !important;
    will-change: auto;
  }
}
@media (max-width: 560px) {
  :root { --pad-x: 16px; }

  .ch-footer-grid { grid-template-columns: 1fr; }
  .ch-hero-media { grid-template-columns: 1fr; grid-template-rows: 240px 140px 80px; height: auto; }
  .ch-hero-photo-main { grid-row: 1; }
  .ch-hero-photo-sm { grid-column: 1; grid-row: 2; }
  .ch-hero-stripe { grid-column: 1; grid-row: 3; flex-direction: row; flex-wrap: wrap; }
  .ch-meta { grid-template-columns: 1fr; gap: 18px; }

  /* Nav: keep logo + lang + theme + book button in one row on phones.
     Force fully opaque bg so iOS URL-bar transitions can't bleed hero text through. */
  .ch-nav { gap: 8px; padding: 10px var(--pad-x); background: var(--bg); }
  .ch-root[data-palette="retro"] .ch-nav { background: #14110C; }
  .ch-logo-cuthouse .ch-logo-cut,
  .ch-logo-cuthouse .ch-logo-house { font-size: 17px; }
  .ch-nav-right { gap: 8px; }
  /* Mobile: collapse the lang group into a single button + popover.
     Frees nav width and feels purpose-built rather than crammed. */
  .ch-langtoggle { font-size: 11px; gap: 0; }
  .ch-lang-current {
    display: inline-flex; align-items: center; gap: 4px;
    background: transparent; border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 9px 5px 10px;
    color: var(--ink); font: inherit; letter-spacing: 0.14em;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
  }
  .ch-lang-current:hover,
  .ch-langtoggle.is-open .ch-lang-current { border-color: var(--ink); }
  .ch-lang-caret {
    display: inline-block; font-size: 9px; line-height: 1;
    transition: transform 0.18s ease;
    opacity: 0.6;
  }
  .ch-langtoggle.is-open .ch-lang-caret { transform: rotate(180deg); }
  .ch-lang-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    min-width: 88px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 50;
    visibility: hidden; opacity: 0; transform: translateY(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
  }
  .ch-langtoggle.is-open .ch-lang-options {
    visibility: visible; opacity: 1; transform: translateY(0);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }
  .ch-lang-options button {
    width: 100%;
    text-align: left;
    padding: 8px 10px;
    border-radius: 4px;
  }
  .ch-lang-options button.on { background: var(--bg-soft); color: var(--ink); }
  .ch-lang-options .ch-lang-sep { display: none; }
  .ch-theme-toggle { width: 30px; height: 30px; }
  .ch-btn-nav { min-width: 0; padding: 8px 12px; font-size: 10px; gap: 4px; }
  .ch-btn-nav span { font-size: 11px; }

  /* Hero: keep the title within the viewport on small screens. Single size
     across all 4 languages so the hero feels consistent regardless of locale. */
  .ch-h1 { font-size: clamp(40px, 12.5vw, 56px); }
  .ch-hero-screen-h1 { font-size: clamp(34px, 10.5vw, 48px); max-width: none; }
  .ch-hero-screen-inner { padding: 88px 18px 40px; gap: 24px; }
  .ch-hero-screen-actions { gap: 18px; }

  /* Headings: keep H2 in one line where possible. */
  .ch-h2 { font-size: clamp(28px, 8.5vw, 40px); max-width: 14ch; }

  /* Services + team sizes already set by the 700px breakpoint above. */
  .ch-service-name h3 { font-size: 18px; }
  .ch-service-price { font-size: 19px; }
  .ch-team-card { flex: 0 0 64vw; }

  /* Reviews: tighter padding so 3-line quotes don't push cards super tall. */
  .ch-review { padding: 20px; }
  .ch-review-text { font-size: 15px; margin-bottom: 18px; }

  /* Contact: stack address rows fully (the 110px label column squeezes values). */
  .ch-contact-list > div { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .ch-contact-list dd { font-size: 15px; }
  .ch-hours-row { font-size: 13px; }

  /* Section padding: tighten so the page isn't endless on phones. */
  .ch-section { padding: 56px 0; }
  .ch-section-head { margin-bottom: 36px; }
  .ch-team { padding: 56px 0; }
  .ch-team .ch-section-head { margin-bottom: 32px; }
  .ch-contact { padding: 56px 0 64px; }

  /* Marquee text smaller so it doesn't dominate. */
  .ch-marquee-row { font-size: 18px; gap: 22px; padding-right: 22px; }
}

/* ── Perks (under Services) ─────────────────────────────── */
.ch-perks-block {
  margin-top: 0;
}
.ch-perks-rule {
  display: none;
}
.ch-perks-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 16px;
  padding-left: 16px;
}
.ch-perks-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ch-perk {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 28px;
  background: transparent;
  border-right: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  animation: chPerkIn 0.55s cubic-bezier(.2,.7,.2,1) forwards;
  transition: background 0.3s ease;
  text-align: left;
}
.ch-perk::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2px; height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 0.35s cubic-bezier(.2,.7,.2,1);
}
.ch-perk:hover::before { height: 70%; }
.ch-perk:last-child { border-right: none; }
.ch-perk:hover { background: rgba(196, 90, 44, 0.05); }
.ch-root[data-palette="retro"] .ch-perk:hover { background: rgba(196, 90, 44, 0.09); }
.ch-perk-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-width 0.3s ease, box-shadow 0.3s ease;
}
.ch-perk-icon svg { width: 16px; height: 16px; }
.ch-perk:hover .ch-perk-icon {
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 0 0 4px rgba(196, 90, 44, 0.14);
}
.ch-perk-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
@keyframes chPerkIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1100px) {
  .ch-perks-list { grid-template-columns: 1fr; }
  .ch-perk { border-right: none; border-bottom: 1px solid var(--line); }
  .ch-perk:last-child { border-bottom: none; }
}

/* ── Legal pages ────────────────────────────────────────────
   Standalone pages (privacy, cookies, imprint). Minimal styles
   that inherit the site palette via :root/.ch-root vars. */
.ch-legal-body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  padding: 24px 16px 80px;
}
.ch-legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 8px;
}
.ch-legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 36px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.ch-legal-back:hover { color: var(--ink); }
.ch-legal-body h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.ch-legal-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin: 32px 0 10px;
  color: var(--ink);
}
.ch-legal-body p,
.ch-legal-body li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft, var(--ink));
  margin-bottom: 10px;
}
.ch-legal-body ul { padding-left: 22px; margin-bottom: 12px; }
.ch-legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.ch-legal-body a:hover { text-decoration: none; }
.ch-legal-meta {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.ch-legal-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 22px;
  margin: 16px 0 8px;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.7;
}
.ch-legal-block strong { font-weight: 700; }

/* ── Cookie consent banner ──────────────────────────────────
   One-button "OK" banner. Shows on first visit, hides forever
   after click (stored in localStorage). No granular consent
   needed since the site has no analytics / advertising / tracking. */
.ch-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  animation: chCookieIn 320ms ease-out both;
}
.ch-cookie-banner p { margin: 0; flex: 1 1 280px; }
.ch-cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ch-cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease;
}
.ch-cookie-banner button:hover { filter: brightness(1.06); transform: translateY(-1px); }
@keyframes chCookieIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .ch-cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 12px 14px; font-size: 13px; }
  .ch-cookie-banner button { width: 100%; padding: 11px 16px; }
}

/* Footer legal links */
.ch-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.ch-footer-legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.ch-footer-legal a:hover { color: var(--ink); }
.ch-footer-ico {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted-2, var(--muted));
  letter-spacing: 0.04em;
}

/* Cookie-consent manage button on legal pages */
.ch-legal-btn {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 9px;
  padding: 10px 20px;
  background: #C45A2C;
  color: #fff;
  border: 1px solid #C45A2C;
  transition: opacity 0.15s ease;
}
.ch-legal-btn:hover { opacity: 0.85; }
