/* ══════════════════════════════════════════════════════════════
   SWISS SUPPORT — Maison Rouge Design System
   Editorial White · Swiss Red · Deep Black · Warm Gold
   ══════════════════════════════════════════════════════════════ */

/* Country flag emoji font — Windows fallback (Segoe UI Emoji has
   no flag glyphs). unicode-range limits this font to the regional
   indicator codepoints, so other text remains in Inter. */
@font-face {
  font-family: "Twemoji Country Flags";
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067,
    U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
  src: url("https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2") format("woff2");
  font-display: swap;
}

/* ── iOS NATIVE APP SAFE AREAS ─────────────────────────────────
   Applied ONLY when the page runs inside the Capacitor iOS shell
   (capacitor-runtime.js adds .is-native-ios on <body>). The
   desktop website never receives these classes, so the desktop
   layout is untouched. */
body.is-native-ios .site-header {
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--bg);
}
body.is-native-ios .site-footer {
  padding-bottom: calc(clamp(28px, 4vw, 56px) + env(safe-area-inset-bottom, 0px));
}
body.is-native-ios .floating-mobile-cta {
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: calc(16px + env(safe-area-inset-left, 0px));
  right: calc(16px + env(safe-area-inset-right, 0px));
}
body.is-native-ios .mobile-menu {
  padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
}
body.is-native-ios .container {
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  padding-right: max(22px, env(safe-area-inset-right, 0px));
}


/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Canvas */
  --bg:           #ffffff;
  --bg-alt:       #f7f6f2;
  --bg-soft:      #f0ede7;

  /* Surfaces */
  --surface:      #ffffff;
  --surface-ink:  #000000;
  --surface-dark: #0a0a0a;
  --surface-dim:  #111111;

  /* Text */
  --text:         #080808;
  --text-soft:    #1a1a1a;
  --muted:        #6a6565;
  --muted-strong: #3d3d3d;

  /* Red — Swiss power accent */
  --red:          #c0111e;
  --red-bright:   #e01020;
  --red-soft:     rgba(192, 17, 30, 0.08);
  --red-line:     rgba(192, 17, 30, 0.28);

  /* Gold — luxury touch */
  --gold:         #b8922a;
  --gold-bright:  #d4a840;
  --gold-soft:    rgba(184, 146, 42, 0.10);
  --gold-dim:     rgba(184, 146, 42, 0.06);
  --gold-line:    rgba(184, 146, 42, 0.28);

  /* Borders */
  --line:         rgba(8, 8, 8, 0.08);
  --line-strong:  rgba(8, 8, 8, 0.14);
  --line-red:     rgba(192, 17, 30, 0.25);
  --line-gold:    rgba(184, 146, 42, 0.28);

  /* Shadows */
  --shadow-xs:    0 2px 8px rgba(8, 8, 8, 0.06);
  --shadow-sm:    0 6px 24px rgba(8, 8, 8, 0.09);
  --shadow:       0 16px 56px rgba(8, 8, 8, 0.11);
  --shadow-lg:    0 32px 88px rgba(8, 8, 8, 0.14);
  --shadow-ink:   0 8px 40px rgba(8, 8, 8, 0.30);

  /* Layout */
  --max:          1280px;

  /* Radii — organic, not boxy */
  --radius-pill:  999px;
  --radius-2xl:   48px;
  --radius-xl:    40px;
  --radius-lg:    32px;
  --radius-md:    20px;
  --radius-sm:    12px;
  --radius-xs:    8px;

  /* Motion */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:     180ms;
  --dur:          300ms;
  --dur-slow:     520ms;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html { overflow-x: clip; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
iframe { display: block; width: 100%; border: 0; }

::selection { color: #ffffff; background: var(--red); }

/* ── SITE SHELL ────────────────────────────────────────────── */
.site-shell { position: relative; isolation: isolate; min-height: 100vh; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section { padding: clamp(52px, 6vw, 96px) 0; position: relative; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--red);
  pointer-events: none;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ── BRAND ─────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  padding: 5px;
  border-radius: 14px;
  background: #000000;
  overflow: hidden;
}

.brand-mark-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #000000;
  border-radius: 10px;
}

.brand-mark-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}

.brand-copy { display: grid; gap: 2px; }

.brand-copy strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

/* ── NAV ───────────────────────────────────────────────────── */
.main-nav {
  display: none;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
  justify-content: center;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  background: transparent;
  transition: color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
  border-radius: 999px;
}@media (hover: hover) and (pointer: fine) {

.main-nav a:hover {
  color: var(--text);
}}
.main-nav a.is-current::after {
  transform: scaleX(1);
}@media (hover: hover) and (pointer: fine) {

.main-nav a:hover::after{
  transform: scaleX(1);
}}

.main-nav a.is-current { color: var(--red); font-weight: 700; }

/* ── HEADER ACTIONS ────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

/* Book-Now header CTA · sits between brand area and language selector */
.header-book-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #b81e22 0%, #d4262b 50%, #b81e22 100%);
  color: #fff;
  font: 800 13.5px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 10px 26px -8px rgba(184,30,34,0.6);
  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease,
    filter .35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.header-book-cta::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -75%;
  width: 50%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255,255,255,0.45) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.45) 55%,
    transparent 100%);
  transform: skewX(-18deg);
  transition: left .8s cubic-bezier(.4,0,.2,1);
  mix-blend-mode: overlay;
  pointer-events: none;
}@media (hover: hover) and (pointer: fine) {
.header-book-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.24) inset,
    0 16px 36px -10px rgba(184,30,34,0.75);
}}@media (hover: hover) and (pointer: fine) {
.header-book-cta:hover::before { left: 130%; }}
.header-book-cta:active { transform: translateY(0); }
.header-book-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}@media (hover: hover) and (pointer: fine) {
.header-book-cta:hover svg { transform: translateX(2px); }}

/* ── HEADER · MOBILE LAYOUT FIX ────────────────────────────────
   Below 900 px the main nav hides and the header has to fit:
     [logo] [brand text]     [Book Now] [GR ▾] [☰]
   Below 720 px we drop the brand text so the Book Now button can
   breathe; below 480 px the lang label shrinks to a flag-only pill. */

@media (max-width: 899px) {
  .header-inner { gap: 8px; }
  .header-actions { gap: 6px; }
  .header-book-cta {
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }
}
@media (max-width: 720px) {
  /* Header — Book Now is removed on mobile (it lives in the floating
     sticky CTA + the mobile drawer instead). With it gone, the brand
     wordmark can sit beside the logo cleanly. */
  .site-header .header-book-cta { display: none; }

  .site-header .brand .brand-copy { display: grid; }
  .site-header .brand .brand-copy strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.05;
    color: var(--text);
  }

  /* Footer brand stays visible with larger premium typography */
  .footer-brand .brand .brand-copy { display: grid; }
  .footer-brand .brand-copy strong {
    font-size: 22px;
    letter-spacing: -0.012em;
    line-height: 1.15;
  }

  .brand-mark { width: 42px; height: 42px; }

  .header-inner { gap: 8px; padding-left: 14px; padding-right: 14px; }
  .header-actions { gap: 6px; }

  .lang-current {
    min-height: 42px;
    padding: 0 11px;
    gap: 5px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-width: 1.5px;
  }
}
@media (max-width: 480px) {
  .header-inner { padding-left: 12px; padding-right: 12px; gap: 6px; }
  .header-actions { gap: 5px; }
  .brand-mark { width: 40px; height: 40px; padding: 4px; }

  /* Brand wordmark scales down a touch on smaller phones */
  .site-header .brand .brand-copy strong { font-size: 14px; }

  .lang-current {
    min-height: 40px;
    padding: 0 9px;
    gap: 4px;
    font-size: 11.5px;
  }

  .menu-toggle { width: 40px; height: 40px; }
  .menu-toggle span { width: 15px; }
}
@media (max-width: 380px) {
  /* Brand wordmark again on iPhone-mini-class screens */
  .site-header .brand .brand-copy strong { font-size: 13px; }

  .lang-current {
    min-height: 38px;
    padding: 0 8px;
    font-size: 11px;
  }
  .menu-toggle { width: 38px; height: 38px; }
}

/* Mobile-menu Book Now — full-width primary action at the top of the drawer */
.mobile-menu .mobile-book-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 14px;
  height: 50px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #b81e22 0%, #d4262b 50%, #b81e22 100%);
  color: #fff !important;
  font: 800 14px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 14px 32px -12px rgba(184,30,34,0.6);
}
.mobile-menu .mobile-book-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

/* Smooth-scroll for Book-Appointment anchor on this site */
html { scroll-behavior: smooth; }
[data-appointment-flow],
.appointment-booking-section,
#book-appointment { scroll-margin-top: 90px; }
@media (max-width: 720px) {
  [data-appointment-flow],
  .appointment-booking-section,
  #book-appointment { scroll-margin-top: 78px; }
}

/* ── BUTTONS — pill-shaped, dramatic ──────────────────────── */
.primary-btn,
.ghost-btn {
  position: relative;
  min-height: 46px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateY(0) translateZ(0);
  transition:
    background var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.primary-btn {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}@media (hover: hover) and (pointer: fine) {

.primary-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 28px rgba(192, 17, 30, 0.28);
}}

.ghost-btn {
  background: transparent;
  color: var(--text);
  border-color: rgba(8, 8, 8, 0.22);
}@media (hover: hover) and (pointer: fine) {

.ghost-btn:hover {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
  transform: translateY(-2px) translateZ(0);
}}

/* Inverted buttons for dark sections */
.dark-section .primary-btn,
.site-footer .primary-btn {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}@media (hover: hover) and (pointer: fine) {

.dark-section .primary-btn:hover,
.site-footer .primary-btn:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}}

.dark-section .ghost-btn,
.site-footer .ghost-btn {
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.24);
}@media (hover: hover) and (pointer: fine) {

.dark-section .ghost-btn:hover,
.site-footer .ghost-btn:hover {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border-color: rgba(255,255,255,0.50);
}}

.primary-btn:active,
.ghost-btn:active { transform: translateY(0); }

/* ── MENU TOGGLE ───────────────────────────────────────────── */
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.menu-toggle:hover {
  background: var(--bg-alt);
  border-color: var(--text);
}}

.menu-toggle span {
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text);
}

/* ── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  padding: 0 20px 24px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.mobile-menu.is-open { display: grid; gap: 0; }

.mobile-menu a {
  min-height: 50px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  transition: color var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.mobile-menu a:hover { color: var(--red); }}
.mobile-menu a.is-current { color: var(--red); font-weight: 700; }

.mobile-menu-language {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px 0;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.mobile-menu-language > span {
  font: 700 10px/1 'Inter', sans-serif;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.mobile-lang-btns { display: flex; gap: 4px; flex-wrap: wrap; }

/* ── LANGUAGE SELECTOR ─────────────────────────────────────── */
.lang-selector { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-pill);
  color: var(--muted-strong);
  font: 700 11px/1 'Twemoji Country Flags', 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  cursor: pointer;
  min-height: 36px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.lang-current:hover { color: var(--red); border-color: var(--red-line); }}
.lang-current svg { flex-shrink: 0; transition: transform 0.2s; }
.lang-current[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 148px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s, transform 0.16s;
  z-index: 300;
  box-shadow: var(--shadow);
}

.lang-dropdown.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }

.lang-opt {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--muted-strong);
  font: 400 13px/1 'Twemoji Country Flags', 'Inter', sans-serif;
  padding: 9px 12px;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: color var(--dur-fast), background var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.lang-opt:hover { color: var(--red); background: var(--red-soft); }}
.lang-opt.active { color: var(--red); font-weight: 700; }

/* Desktop default: dropdown shows full language names */
.lang-flag-code { display: none; }
.lang-fullname { display: inline; }

.mobile-lang-btns .lang-opt {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-pill);
  width: auto;
  color: var(--muted-strong);
}
.mobile-lang-btns .lang-opt.active {
  color: var(--red);
  border-color: var(--red-line);
  background: var(--red-soft);
}@media (hover: hover) and (pointer: fine) {

.mobile-lang-btns .lang-opt:hover{
  color: var(--red);
  border-color: var(--red-line);
  background: var(--red-soft);
}}

/* ── MOBILE LANG SELECTOR — compact pill in header next to hamburger ── */
@media (max-width: 899px) {
  .header-inner { gap: 8px; flex-wrap: nowrap; }
  .brand { gap: 6px; min-width: 0; }
  .brand-copy { min-width: 0; }
  .lang-current {
    padding: 5px 9px;
    min-height: 34px;
    gap: 3px;
    font-size: 11px;
    flex-shrink: 0;
  }
  /* Mobile uses a clean display toggle (no opacity/transform transition).
     Avoids transition-stuck states on iOS Safari and ensures the dropdown
     is fully visible the moment it opens. */
  .lang-dropdown {
    min-width: 132px;
    padding: 6px;
    background: #ffffff;
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
    display: none;
    z-index: 400;
  }
  .lang-dropdown.is-open { display: block; }
  .lang-opt {
    font-size: 13px;
    padding: 11px 12px;
    text-align: center;
    border-radius: var(--radius-xs);
    color: var(--muted-strong);
  }
  .lang-flag-code { display: inline-flex; align-items: center; gap: 6px; justify-content: center; }
  .lang-fullname { display: none; }
}

/* ── MOBILE MENU — refined spacing (mobile-only, desktop untouched) ── */
@media (max-width: 899px) {
  .mobile-menu {
    padding: 10px 24px 30px;
  }
  .mobile-menu.is-open {
    gap: 0;
    row-gap: 2px;
  }
  .mobile-menu a {
    min-height: 60px;
    padding: 16px 10px;
    font-size: 15.5px;
    line-height: 1.3;
    letter-spacing: -0.005em;
    border-bottom: 1px solid rgba(8, 8, 8, 0.06);
  }
  .mobile-menu a:last-of-type {
    border-bottom: none;
  }
  .mobile-menu-language {
    gap: 14px;
    padding: 24px 10px 4px;
    margin-top: 14px;
    border-top: 1px solid rgba(8, 8, 8, 0.08);
    flex-wrap: wrap;
  }
  .mobile-menu-language > span {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted);
  }
  .mobile-lang-btns {
    gap: 6px;
  }
  .mobile-lang-btns .lang-opt {
    padding: 8px 10px;
    font-size: 11.5px;
    min-height: 38px;
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
  }
}

/* ── KICKER LABELS ─────────────────────────────────────────── */
.kicker, .section-kicker, .premium-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.kicker::before,
.section-kicker::before,
.premium-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── SECTION HEAD ──────────────────────────────────────────── */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

.section-head h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 600;
  line-height: 1.00;
  letter-spacing: -0.025em;
  color: var(--text);
}

.section-head p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.88;
  max-width: 60ch;
}

.section-head--compact {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-head--compact .section-kicker { justify-content: center; }

/* ── SECTION CTA ───────────────────────────────────────────── */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding: clamp(52px, 6vw, 88px) 0 clamp(36px, 4.5vw, 60px);
  overflow: hidden;
  background: var(--bg);
}

.hero-backdrop { display: none; }

/* ── HERO HUB SHELL ────────────────────────────────────────── */
.hero-hub-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-hub-shell::before { display: none; }
.hero-hub-shell > * { position: relative; z-index: 1; }

.hero-hub-shell h1 {
  margin: 0;
  max-width: 26ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
}

.hero-hub-shell h1 em {
  font-style: italic;
  color: var(--red);
}

.hero-hub-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
  max-width: 58ch;
}

/* ── HERO PILLS ────────────────────────────────────────────── */
.hero-hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-hub-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ── HERO COMMAND GRID ─────────────────────────────────────── */
.hero-hub-grid { display: grid; gap: 16px; }

.hero-command-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(28px, 2.8vw, 36px);
  min-height: 200px;
  border-radius: var(--radius-xl);
  border: none;
  background: var(--surface-ink);
  box-shadow: var(--shadow-ink);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out);
}

.hero-command-card::before { display: none; }@media (hover: hover) and (pointer: fine) {

.hero-command-card:hover {
  transform: translateY(-6px) scale(1.01);
  background: var(--surface-dim);
  box-shadow: 0 24px 72px rgba(8, 8, 8, 0.38);
}}

/* FEATURED — Business Promotion premium variant */
.hero-command-card--featured {
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(184,146,42,0.18) 0%, transparent 55%),
    linear-gradient(155deg, #15110a 0%, #0a0a0a 60%);
  border: 1px solid rgba(184,146,42,0.45);
  box-shadow:
    0 0 0 1px rgba(184,146,42,0.15),
    0 24px 64px rgba(8,8,8,0.38),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.hero-command-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  z-index: 2;
}@media (hover: hover) and (pointer: fine) {
.hero-command-card--featured:hover {
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(184,146,42,0.26) 0%, transparent 55%),
    linear-gradient(155deg, #1a140b 0%, #0e0e0e 60%);
  border-color: rgba(184,146,42,0.65);
  box-shadow:
    0 0 0 1px rgba(184,146,42,0.25),
    0 30px 80px rgba(8,8,8,0.50),
    0 0 40px rgba(184,146,42,0.12);
}}
.hero-command-card--featured .hero-command-index { color: var(--gold); }
.hero-command-card--featured .hero-command-link { color: var(--gold); }

.hero-command-featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(184,146,42,0.16);
  border: 1px solid rgba(184,146,42,0.45);
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-command-featured-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(184,146,42,0.7);
}

.hero-command-index {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-command-index.has-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--red);
}

.hero-command-index.has-svg-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-command-card strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.10;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-command-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  line-height: 1.72;
}

.hero-command-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: auto;
  transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast);
}

.hero-command-link::after { content: "→"; transition: transform var(--dur-fast) var(--ease-out); }@media (hover: hover) and (pointer: fine) {
.hero-command-card:hover .hero-command-link { color: #ffffff; }}@media (hover: hover) and (pointer: fine) {
.hero-command-card:hover .hero-command-link::after { transform: translateX(5px); }}

.hero-command-card-accent { background: #0f0a04; }

/* ── TRUST BAND ────────────────────────────────────────────── */
.trust-band {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.trust-grid { display: grid; gap: 0; }

.trust-item {
  position: relative;
  padding: 28px 28px;
  border-right: 1px solid var(--line);
  border-radius: 0;
  border-top: 3px solid transparent;
  transition:
    border-top-color var(--dur),
    background var(--dur) var(--ease-out);
}

.trust-item::before { display: none; }
.trust-item:last-child { border-right: none; }@media (hover: hover) and (pointer: fine) {
.trust-item:hover { border-top-color: var(--red); background: var(--bg-alt); }}

.trust-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.trust-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

/* ── ABOUT SECTION ─────────────────────────────────────────── */
.about-support-section { padding: clamp(52px, 6vw, 96px) 0; }
.about-support-grid { display: grid; gap: clamp(20px, 2.8vw, 32px); }

.about-support-copy,
.about-support-visual {
  position: relative;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.about-support-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.88;
}

.about-support-copy p + p { margin-top: 14px; }

.about-support-points {
  display: grid;
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: baseline;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.70;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 0;
  background: transparent;
}

.about-point:last-child { border-bottom: none; }

.about-point::before {
  content: "—";
  color: var(--red);
  flex-shrink: 0;
  font-weight: 700;
}

.about-support-image-frame {
  flex: 1 1 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
  background: var(--bg-soft);
}

.about-support-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.about-support-badge {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
}

.about-support-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.about-support-badge span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.service-grid { display: grid; gap: clamp(16px, 2.2vw, 24px); }

/* ── ADVISORY LINES (homepage 4-card grid) ───────────────── */
.advisory-lines-section { padding: clamp(48px, 6vw, 80px) 0; }
.advisory-lines-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.advisory-lines-grid .service-card { height: 100%; }
@media (max-width: 1080px) {
  .advisory-lines-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .advisory-lines-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  padding: clamp(24px, 2.8vw, 32px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out);
}

.service-card::before { display: none; }@media (hover: hover) and (pointer: fine) {

.service-card:hover {
  transform: translateY(-6px);
  background: var(--surface-ink);
  border-color: var(--surface-ink);
  box-shadow: var(--shadow-ink);
}}@media (hover: hover) and (pointer: fine) {

.service-card:hover h3,
.service-card:hover p,
.service-card:hover strong { color: #ffffff; }}@media (hover: hover) and (pointer: fine) {
.service-card:hover .service-icon { background: var(--red); border-color: var(--red); }}@media (hover: hover) and (pointer: fine) {
.service-card:hover .service-icon svg { stroke: #ffffff; }}

.service-card.premium { background: var(--bg-alt); border-color: var(--gold-line); }@media (hover: hover) and (pointer: fine) {
.service-card.premium:hover { background: var(--surface-ink) !important; border-color: var(--surface-ink) !important; }}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--dur), border-color var(--dur);
}

.service-icon.has-svg-icon { font-size: 0; }

.service-icon.has-svg-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--dur);
}

.service-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -0.025em;
  color: var(--text);
  transition: color var(--dur);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.76;
  transition: color var(--dur);
}

.featured-service-band { display: grid; margin-top: 0; margin-bottom: clamp(48px, 5vw, 72px); }
.featured-service-band .featured-service-card { width: 100%; max-width: 1120px; justify-self: center; }

.service-tier-section { padding-top: 34px; }
.service-tier-section .container { padding-top: 22px; border-top: 1px solid var(--line); }

.featured-service-head { display: flex; align-items: center; gap: 10px; }

.featured-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-note { margin-top: 10px !important; }

/* ── JOB CARDS ─────────────────────────────────────────────── */
.jobs-grid { display: grid; gap: clamp(16px, 2.2vw, 24px); }

.job-card {
  position: relative;
  padding: clamp(24px, 2.8vw, 32px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}@media (hover: hover) and (pointer: fine) {

.job-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}}

.job-meta, .job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.job-meta { margin-bottom: 8px; }

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.job-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -0.025em;
  color: var(--text);
}

.job-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

.job-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.job-footer span { color: var(--muted); font-size: 13px; font-weight: 600; }

.job-footer a {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--line-strong);
  background: transparent;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.job-footer a:hover {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-section { padding: clamp(52px, 6vw, 96px) 0; }

.reviews-summary { display: grid; gap: 14px; margin-bottom: 28px; }

.reviews-summary-card {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid transparent;
  transition:
    transform var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    border-left-color var(--dur) var(--ease-out);
}@media (hover: hover) and (pointer: fine) {

.reviews-summary-card:hover { transform: translateY(-3px); border-color: var(--line-strong); border-left-color: var(--gold); }}

.reviews-summary-card strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--text); }
.reviews-summary-card span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.62; }

.reviews-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollReviews 26s linear infinite;
}

.review-card {
  position: relative;
  min-width: 360px;
  max-width: 420px;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out);
  border-top: 3px solid var(--gold);
}

.review-card::before { display: none; }@media (hover: hover) and (pointer: fine) {
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-line);
}}

.review-stars { margin-bottom: 16px; color: var(--gold); font-size: 14px; letter-spacing: 0.10em; }

.review-card p { margin: 0; color: var(--muted-strong); font-size: 14.5px; line-height: 1.82; }

.review-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.review-card-meta { min-width: 0; }
.review-card strong { display: block; margin-top: 0; font-size: 14px; font-weight: 700; color: var(--text); }
.review-source { display: block; margin-top: 3px; color: var(--muted); font-size: 11.5px; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-teaser-grid { display: grid; gap: 16px; }
.contact-detail-list { display: grid; gap: 16px; }

.detail-card {
  position: relative;
  padding: 22px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.detail-card:hover { transform: translateX(4px); }}

.detail-card strong {
  display: block;
  color: var(--red);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-card span,
.detail-card a {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
  word-break: break-word;
  font-weight: 500;
}@media (hover: hover) and (pointer: fine) {

.detail-card a:hover { color: var(--red); }}

/* ── PROOF CARDS ───────────────────────────────────────────── */
.proof-card {
  position: relative;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: none;
  background: var(--bg-alt);
  border-left: 3px solid var(--red);
  overflow: hidden;
}

.proof-card::before { display: none; }
.proof-card strong { display: block; font-size: 16px; font-weight: 800; color: var(--text); }
.proof-card span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.62; }

/* ── CONTACT COPY + FORM CARD ──────────────────────────────── */
.contact-copy {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

/* ── FORMS ─────────────────────────────────────────────────── */
.contact-form { display: grid; gap: 20px; }
.field-grid   { display: grid; gap: 16px; }
.field        { display: grid; gap: 8px; }

.field span {
  color: var(--muted-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.field textarea {
  border-radius: var(--radius-lg);
  min-height: 148px;
  padding: 18px 20px;
  resize: vertical;
  line-height: 1.72;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.form-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }
.field-full { grid-column: 1 / -1; }

/* ── SOCIAL ROW ────────────────────────────────────────────── */
.social-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.social-row a {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.social-row a:hover {
  transform: translateY(-2px);
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  padding: 0;
  background: #050505;
  background-image:
    radial-gradient(1100px 480px at 18% 0%, rgba(192,17,30,0.06), transparent 70%),
    radial-gradient(900px 420px at 82% 0%, rgba(184,146,42,0.05), transparent 70%);
  border-top: none;
  position: relative;
  color: rgba(255,255,255,0.65);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 20%, var(--gold) 50%, var(--red) 80%, transparent 100%);
  opacity: 0.55;
}

.footer-grid {
  display: grid;
  gap: 48px;
  padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand block — premium feel */
.footer-brand .brand { gap: 14px; }
.footer-brand .brand-copy strong {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer-brand .brand-copy small {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-brand p {
  margin: 22px 0 24px;
  color: rgba(255,255,255,0.52);
  font-size: 13.5px;
  line-height: 1.78;
  max-width: 340px;
  font-weight: 400;
}
.footer-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, gap 0.22s ease;
}@media (hover: hover) and (pointer: fine) {
.footer-brand-cta:hover {
  background: var(--red);
  border-color: var(--red);
  gap: 14px;
}}
.footer-brand-cta svg { transition: transform 0.22s ease; }@media (hover: hover) and (pointer: fine) {
.footer-brand-cta:hover svg { transform: translateX(3px); }}

/* Footer columns */
.footer-links { display: grid; gap: 14px; align-content: start; }

.footer-links strong {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 14px;
  display: inline-block;
}
.footer-links strong::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: rgba(184,146,42,0.40);
}

.footer-links a, .footer-links span {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.55;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}@media (hover: hover) and (pointer: fine) {

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}}

/* Subtle dot for nav links on hover */
.footer-links a {
  position: relative;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-right: 0;
  transition: width var(--dur-fast), margin-right var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {
.footer-links a:hover::before {
  width: 12px;
  margin-right: 8px;
}}

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 26px 0 32px;
  color: rgba(255,255,255,0.32);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.footer-bottom span:first-child {
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}
.footer-bottom-divider {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(184,146,42,0.40);
  margin: 0 4px;
  vertical-align: middle;
}

/* ── FLOATING MOBILE CTA ───────────────────────────────────── */
.floating-mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: grid;
  /* The left "Swiss Support Official App" label is much longer than
     "Contact Us" — give it more room so neither button clips. min-width:0
     on each cell lets the inner button shrink instead of overflowing. */
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  max-width: calc(100vw - 32px);
}
.floating-mobile-cta > .primary-btn,
.floating-mobile-cta > .ghost-btn {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  min-height: 48px;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
@media (max-width: 380px) {
  .floating-mobile-cta {
    gap: 6px;
    padding: 7px;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  }
  .floating-mobile-cta > .primary-btn,
  .floating-mobile-cta > .ghost-btn {
    padding: 0 10px;
    min-height: 46px;
    font-size: 13px;
    letter-spacing: 0.01em;
  }
}

/* ── INNER PAGE — PAGE HERO ────────────────────────────────── */
.page-hero { padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4.2vw, 52px); }
.page-hero-grid { display: grid; gap: 28px; align-items: start; }

.page-hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero-copy::before { display: none; }

.page-hero-copy h1 {
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 600;
  line-height: 0.90;
  letter-spacing: -0.035em;
  color: var(--text);
}

.page-hero-copy p { margin: 0; color: var(--muted); font-size: 16.5px; line-height: 1.84; max-width: 58ch; }

.page-inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.page-stat-grid, .process-grid { display: grid; gap: 0; }
.page-stat-grid { margin-top: 32px; border-top: 1px solid var(--line); }

.page-stat-card,
.process-step {
  padding: 22px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  position: relative;
}

.page-stat-card::before,
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height var(--dur) var(--ease-out);
}@media (hover: hover) and (pointer: fine) {

.page-stat-card:hover::before,
.process-step:hover::before { height: 100%; }}

.page-stat-card { padding-left: 20px; }
.process-step { padding-left: 20px; }

.page-stat-card strong, .process-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.page-stat-card span, .process-step span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.70;
}

.page-hero-panel { align-self: start; padding: 0; background: none; border: 0; box-shadow: none; overflow: visible; }

.page-image-frame {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: none;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.page-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── CATEGORY INTRO ────────────────────────────────────────── */
.category-intro { padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4.2vw, 52px); }

.category-intro-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.category-intro-shell::before { display: none; }

.category-intro-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.category-intro-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.00;
  letter-spacing: -0.03em;
  color: var(--text);
}

.category-intro-copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.88;
  max-width: 62ch;
}

.category-overview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  margin-bottom: 0;
}

.category-visual-card,
.category-insight-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out);
}@media (hover: hover) and (pointer: fine) {

.category-visual-card:hover,
.category-insight-card:hover {
  transform: translateY(-6px);
  background: var(--surface-ink);
  border-color: var(--surface-ink);
  box-shadow: var(--shadow-ink);
}}@media (hover: hover) and (pointer: fine) {

.category-insight-card:hover h3,
.category-insight-card:hover .category-list li { color: rgba(255,255,255,0.85); }}@media (hover: hover) and (pointer: fine) {
.category-insight-card:hover .premium-kicker { color: var(--gold); }}@media (hover: hover) and (pointer: fine) {
.category-insight-card:hover .category-list li::before { background: var(--gold); }}@media (hover: hover) and (pointer: fine) {
.category-insight-card:hover .category-list li { border-bottom-color: rgba(255,255,255,0.10); }}

.category-visual-card { min-height: 280px; }
.category-visual-card img { width: 100%; height: 100%; object-fit: cover; }

.category-visual-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 6px;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.category-visual-overlay strong { font-size: 20px; font-weight: 700; color: #ffffff; }
.category-visual-overlay span { color: rgba(255, 255, 255, 0.75); font-size: 13.5px; line-height: 1.62; }

.category-insight-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
}

.category-insight-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -0.025em;
  color: var(--text);
}

.category-insight-copy {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0;
}@media (hover: hover) and (pointer: fine) {

.category-insight-card:hover .category-insight-copy { color: rgba(255,255,255,0.60); }}

.category-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }

.category-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
  border-bottom: 1px solid var(--line);
}

.category-list li:last-child { border-bottom: none; }

.category-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.category-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

/* ── PREMIUM PANELS ────────────────────────────────────────── */
.premium-panel,
.faq-card,
.route-card,
.offer-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 36px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto !important;
  min-height: 0 !important;
  align-self: start !important;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    border-left-color var(--dur) var(--ease-out);
  border-left: 3px solid transparent;
}

.premium-panel::before,
.faq-card::before,
.route-card::before,
.offer-card::before { display: none; }@media (hover: hover) and (pointer: fine) {

.premium-panel:hover,
.faq-card:hover,
.route-card:hover,
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
  border-left-color: var(--red);
}}

.premium-panel h3,
.faq-card strong,
.route-card strong,
.offer-card strong {
  display: block;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.premium-panel p,
.faq-card p,
.route-card p,
.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.78;
}

.faq-card strong { font-size: 18px; }

.route-card .ghost-btn,
.route-card .primary-btn,
.offer-card .ghost-btn,
.offer-card .primary-btn,
.cta-banner .ghost-btn,
.cta-banner .primary-btn { margin-top: auto; }

.premium-section-grid,
.benefit-grid,
.faq-grid,
.route-grid,
.offer-grid { display: grid; gap: clamp(16px, 2.2vw, 24px); }

.route-card,
.offer-card {
  transition:
    transform var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

/* ── BULLET LISTS ──────────────────────────────────────────── */
.premium-bullet-list, .benefit-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.premium-bullet-list li, .benefit-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
  border-bottom: 1px solid var(--line);
}

.premium-bullet-list li:last-child,
.benefit-list li:last-child { border-bottom: none; }

.premium-bullet-list li::before, .benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* ── BENEFIT CARDS ─────────────────────────────────────────── */
.benefit-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  height: 100%;
  border-top: 3px solid var(--red);
  transition:
    transform var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}@media (hover: hover) and (pointer: fine) {

.benefit-card:hover {
  transform: translateY(-6px);
  background: var(--surface-ink);
  border-color: var(--surface-ink);
  border-top-color: var(--red);
  box-shadow: var(--shadow-ink);
}}

.benefit-card strong { display: block; margin-bottom: 10px; color: var(--text); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; transition: color var(--dur); }
.benefit-card span { display: block; color: var(--muted); font-size: 14px; line-height: 1.76; transition: color var(--dur); }@media (hover: hover) and (pointer: fine) {
.benefit-card:hover strong { color: #ffffff; }}@media (hover: hover) and (pointer: fine) {
.benefit-card:hover span { color: rgba(255,255,255,0.60); }}

/* ── FEATURE MATRIX ────────────────────────────────────────── */
.feature-matrix { display: grid; gap: 0; margin-top: 24px; }

.feature-row {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child { border-bottom: 0; padding-bottom: 0; }
.feature-row strong { color: var(--text); font-size: 15px; font-weight: 700; }
.feature-row span   { color: var(--muted); font-size: 13.5px; line-height: 1.68; }

/* ── DETAIL ANCHOR CARDS ───────────────────────────────────── */
.detail-section-grid { display: grid; gap: 0; border-top: 1px solid var(--line); }

.detail-anchor-card {
  scroll-margin-top: 110px;
  padding: 28px 24px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-left: 3px solid transparent;
  transition: border-left-color var(--dur), background var(--dur);
}@media (hover: hover) and (pointer: fine) {

.detail-anchor-card:hover {
  border-left-color: var(--red);
  background: var(--bg-alt);
  padding-left: 32px;
}}

.detail-anchor-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.detail-anchor-card p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; line-height: 1.84; }

.detail-anchor-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.74;
}

/* ── SERVICE LINK CARD ─────────────────────────────────────── */
.service-link-card {
  display: block;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}@media (hover: hover) and (pointer: fine) {

.service-link-card:hover { border-color: var(--line-strong); }}

.anchor-note { margin-top: 16px; color: var(--muted); font-size: 13px; font-weight: 600; }

/* ── CTA BANNER — full black section ──────────────────────── */
.cta-banner {
  display: grid;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: none;
  padding: clamp(36px, 4.5vw, 56px);
  background: var(--surface-ink);
  box-shadow: var(--shadow-ink);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.cta-banner strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.cta-banner span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.72;
}

/* ── MAP ───────────────────────────────────────────────────── */
.map-strip {
  width: min(calc(100% - 40px), calc(var(--max) + 80px));
  margin: 0 auto 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow);
}

.map-strip iframe { min-height: 340px; filter: grayscale(0.15) contrast(1.02); }

/* ── BOOKING ───────────────────────────────────────────────── */
.booking-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--red-line);
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 24px;
}

.booking-form-shell { display: grid; gap: 24px; }
.booking-form-head  { display: grid; gap: 12px; }

.booking-form-head h2 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.booking-form-head p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.84; max-width: 60ch; }

.booking-service-card {
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.booking-service-card:hover { border-color: var(--red); transform: translateY(-2px); }}
.booking-service-card strong { display: block; margin-bottom: 8px; font-size: 17px; font-weight: 700; color: var(--text); }
.booking-service-card span { color: var(--muted); font-size: 13.5px; line-height: 1.72; }

.booking-form-success {
  display: grid;
  gap: 8px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: none;
  background: var(--surface-ink);
  color: #ffffff;
}

.booking-form-success strong { color: #ffffff; font-size: 14.5px; line-height: 1.74; }

/* ── HERO (legacy) ─────────────────────────────────────────── */
.hero-copy {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-copy::after { display: none; }

.hero-copy h1 {
  margin: 18px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 500;
  line-height: 0.90;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-copy h1 span { display: block; color: var(--red); }

.hero-lead,
.section-head p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.86;
  max-width: 60ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-proof { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }

.hero-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: none;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}

.hero-image-frame {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}

.hero-image-frame img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.hero-grid { position: relative; z-index: 1; display: grid; gap: 28px; }

.hero-home-intro {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-home-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-command-section { padding: 48px 0 24px; }

.hero-command-grid-home {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

/* ── CONTACT GRID ──────────────────────────────────────────── */
.contact-grid { display: grid; gap: clamp(24px, 3vw, 40px); }

/* ── BUSINESS SECTION TINT ─────────────────────────────────── */
.business-section { background: var(--bg-alt); }
.jobs-section     { background: var(--bg); }
.growth-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── FOCUS RINGS ───────────────────────────────────────────── */
.primary-btn:focus-visible,
.ghost-btn:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.social-row a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(192, 17, 30, 0.22);
}

/* ── WHY SECTION ───────────────────────────────────────────── */
.why-section { padding: clamp(52px, 6vw, 96px) 0; }
.why-grid { border-top: 1px solid var(--line); }

.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left var(--dur) var(--ease-out), border-left-color var(--dur);
  border-left: 3px solid transparent;
}@media (hover: hover) and (pointer: fine) {

.why-item:hover { border-left-color: var(--red); padding-left: 20px; }}

.why-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.02em;
  padding-top: 0;
  flex-shrink: 0;
  line-height: 1;
}

.why-content strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.10;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 14px;
}

.why-content p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.84; max-width: 62ch; }

/* ── CONTACT CTA BLOCK ─────────────────────────────────────── */
.contact-cta-block {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(40px, 6vw, 64px);
  border-radius: var(--radius-2xl);
  border: none;
  background: var(--surface-ink);
  box-shadow: var(--shadow-ink);
  position: relative;
  overflow: hidden;
}

.contact-cta-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.contact-cta-copy { display: grid; gap: 18px; position: relative; z-index: 1; }

.contact-cta-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.00;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.contact-cta-copy > p { margin: 0; color: rgba(255,255,255,0.50); font-size: 15.5px; line-height: 1.84; max-width: 56ch; }

.contact-cta-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.contact-cta-item {
  padding: 14px 0;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.10);
  margin-right: 24px;
  padding-right: 24px;
}

.contact-cta-item:last-child { border-right: 0; margin-right: 0; }

.contact-cta-item span {
  display: block;
  color: rgba(255,255,255,0.40);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}

.contact-cta-item strong, .contact-cta-item a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  font-weight: 600;
  transition: color var(--dur-fast);
}@media (hover: hover) and (pointer: fine) {

.contact-cta-item a:hover { color: #ffffff; }}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  align-self: end;
  position: relative;
  z-index: 1;
}

/* ── APPOINTMENT BOOKING ───────────────────────────────────── */
.appointment-booking-section {
  padding-top: clamp(36px, 4.6vw, 60px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.appointment-booking-shell { display: grid; gap: 24px; align-items: start; }

.appointment-sidebar,
.appointment-panel,
.appointment-summary-card,
.appointment-payment-card,
.appointment-complete {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.appointment-sidebar { padding: 32px 28px; display: grid; gap: 24px; }

.appointment-sidebar h1 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.appointment-sidebar p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.82; }

.appointment-step-list { display: grid; gap: 12px; }

.appointment-step {
  width: 100%;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong);
  background: var(--bg-alt);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}@media (hover: hover) and (pointer: fine) {

.appointment-step:hover { transform: translateY(-2px); border-color: var(--text); background: var(--bg-soft); }}
.appointment-step.is-active, .appointment-step.is-complete { border-color: var(--red); background: var(--red-soft); }

.appointment-step-index {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.appointment-step.is-active .appointment-step-index,
.appointment-step.is-complete .appointment-step-index {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.appointment-step strong, .appointment-step small { display: block; }
.appointment-step strong { color: var(--text); font-size: 14px; font-weight: 700; }
.appointment-step small { margin-top: 3px; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

.appointment-sidebar-note { padding: 18px 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--bg-alt); }
.appointment-sidebar-note strong { display: block; margin-bottom: 8px; color: var(--text); font-size: 15px; font-weight: 700; }
.appointment-sidebar-note p { font-size: 13.5px; line-height: 1.78; }

.appointment-main { display: grid; gap: 18px; }
.appointment-panel { padding: 32px; }

.appointment-panel-head { display: grid; gap: 10px; margin-bottom: 24px; }

.appointment-panel-head h2 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.appointment-panel-head p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.78; max-width: 62ch; }

.appointment-service-list { display: grid; gap: 14px; }

.service-option-card {
  width: 100%;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s;
} .service-option-card.is-selected {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(192, 17, 30, 0.10);
}@media (hover: hover) and (pointer: fine) {

.service-option-card:hover{
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(192, 17, 30, 0.10);
}}

.service-option-icon { width: 56px; height: 56px; }
.service-option-copy { display: grid; gap: 10px; }

.service-option-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 16px;
}

.service-option-head strong { color: var(--text); font-size: 19px; font-weight: 800; letter-spacing: -0.03em; }
.service-option-head span { color: var(--red); font-size: 18px; font-weight: 800; white-space: nowrap; }

.service-option-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.76; }
.service-option-meta { display: flex; flex-wrap: wrap; gap: 10px; }

.service-option-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--bg-alt);
  color: var(--muted-strong);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-option-list { margin: 0; padding-left: 18px; color: var(--text); font-size: 14px; line-height: 1.74; }

.appointment-scheduler-grid, .appointment-confirm-grid { display: grid; gap: 16px; }

.appointment-date-panel,
.appointment-time-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.appointment-date-panel strong,
.appointment-time-panel strong,
.appointment-summary-card > strong,
.appointment-payment-head strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.appointment-date-list, .appointment-time-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.appointment-chip {
  min-height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
} .appointment-chip.is-selected {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red);
}@media (hover: hover) and (pointer: fine) {

.appointment-chip:hover{
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red);
}}

.appointment-summary-card, .appointment-payment-card { padding: 26px; }
.appointment-summary-grid { display: grid; gap: 12px; }

.appointment-summary-grid div {
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.appointment-summary-grid span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.appointment-summary-grid strong { color: var(--text); font-size: 14.5px; line-height: 1.55; }
.appointment-summary-note { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.78; }
.appointment-payment-head { margin-bottom: 18px; }
.appointment-payment-head span { display: block; color: var(--muted); font-size: 14px; line-height: 1.72; }

.appointment-payment-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.appointment-payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.appointment-actions { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.appointment-complete { padding: 32px; }

.appointment-complete h2 {
  margin: 10px 0 12px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.appointment-complete p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.80; max-width: 60ch; }
.appointment-complete-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ── JOB CATEGORIES SECTION ────────────────────────────────── */
.jobs-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.jobs-head { flex: 1 1 0; }
.jobs-head p { margin-top: 12px; font-size: 1.05rem; color: var(--muted); line-height: 1.65; max-width: 520px; }
.jobs-app-btn { flex-shrink: 0; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.jobs-app-btn svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease-out); }@media (hover: hover) and (pointer: fine) {
.jobs-app-btn:hover svg { transform: translateX(3px); }}

.job-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }

.job-cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--text);
  transition: background var(--dur), border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.job-cat-card::before { display: none; }@media (hover: hover) and (pointer: fine) {

.job-cat-card:hover {
  background: var(--surface-ink);
  border-color: var(--surface-ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-ink);
}}@media (hover: hover) and (pointer: fine) {

.job-cat-card:hover .job-cat-info strong,
.job-cat-card:hover .job-cat-info span { color: rgba(255,255,255,0.70); }}@media (hover: hover) and (pointer: fine) {
.job-cat-card:hover .job-cat-info strong { color: #ffffff; }}

.job-cat-card--marketing { border-color: var(--gold-line); background: var(--gold-dim); }@media (hover: hover) and (pointer: fine) {
.job-cat-card--marketing:hover { background: var(--surface-ink); border-color: var(--surface-ink); }}

.job-cat-card--all { border-style: dashed; border-color: var(--line-strong); }@media (hover: hover) and (pointer: fine) {
.job-cat-card--all:hover { border-style: solid; }}

.job-cat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-strong);
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}

.job-cat-icon svg { width: 17px; height: 17px; }@media (hover: hover) and (pointer: fine) {
.job-cat-card:hover .job-cat-icon { background: var(--red); border-color: var(--red); color: #ffffff; }}

.job-cat-info { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 2px; }

.job-cat-info strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--dur);
}

.job-cat-info span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--dur);
}

.job-cat-count {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-strong);
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  min-width: 36px;
  text-align: center;
}

.job-cat-count--new {
  color: var(--red);
  background: var(--red-soft);
  border-color: var(--red-line);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.jobs-app-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  background: var(--surface-ink);
  border: none;
  border-radius: var(--radius-2xl);
  margin-top: 8px;
  box-shadow: var(--shadow-ink);
  position: relative;
  overflow: hidden;
}

.jobs-app-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.jobs-app-banner-copy { display: flex; flex-direction: column; gap: 6px; background: transparent; }

.jobs-app-banner-copy strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.jobs-app-banner-copy span { font-size: 0.88rem; color: rgba(255,255,255,0.50); line-height: 1.55; max-width: 480px; }

/* ── SECTION BACKGROUND ALTERNATION ───────────────────────── */
.about-support-section,
.why-section,
.reviews-section { background: var(--bg-alt); }

.hero-hub-section,
.service-section,
.jobs-section,
.contact-section,
.booking-section { background: var(--bg); }

/* ── ABOUT SECTION (about-support-badge extra) ─────────────── */
.about-support-badge { background: var(--gold-dim); border: 1px solid var(--gold-line); }

/* ── HERO HUB ──────────────────────────────────────────────── */
.hero-hub-shell .section-kicker { color: var(--red); }
.hero-hub-shell h1 em { color: var(--red); }

/* ── GLOBAL LAYOUT BALANCE ─────────────────────────────────── */
.section,
.about-support-section,
.reviews-section,
.why-section,
.jobs-section,
.category-intro,
.page-hero {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(32px, 4.2vw, 56px);
}

.hero-section {
  padding-top: clamp(48px, 5.5vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.section-head p,
.contact-copy p,
.category-intro-copy,
.hero-hub-copy,
.booking-form-head p,
.contact-cta-copy > p { max-width: 64ch; }

.hero-hub-shell,
.category-intro-shell { padding: 0; }

.contact-copy,
.contact-form-card,
.about-support-copy,
.about-support-visual { padding: 0; }

.contact-form-card { padding: clamp(28px, 3.5vw, 44px); }
.contact-cta-block { padding: clamp(40px, 6vw, 64px); }

.about-support-grid,
.contact-grid {
  gap: clamp(24px, 3.5vw, 48px);
  align-items: stretch;
}

.hero-hub-grid,
.service-grid,
.jobs-grid,
.premium-section-grid,
.benefit-grid,
.faq-grid,
.route-grid,
.offer-grid,
.contact-detail-list,
.contact-teaser-grid,
.process-grid,
.page-stat-grid,
.category-overview-grid {
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
}

/* ── FEATURE MATRIX PAIRED ─────────────────────────────────── */
.premium-section-grid--paired {
  align-items: stretch !important;
  grid-auto-rows: 1fr !important;
  grid-template-columns: repeat(2, 1fr);
}

.premium-section-grid--paired .premium-panel {
  height: 100% !important;
  align-self: stretch !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.premium-section-grid--paired .premium-panel .feature-matrix {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── CONSULTING / BUSINESS GRID ────────────────────────────── */
.consulting-grid, .business-grid { display: grid; gap: 16px; }

/* ── SERVICE GRID HEIGHT FIX ───────────────────────────────── */
.service-grid,
.premium-section-grid,
.route-grid,
.offer-grid,
.faq-grid,
.jobs-grid,
.category-overview-grid,
.business-grid,
.consulting-grid {
  align-items: start;
  grid-auto-rows: max-content;
}

.service-card,
.premium-panel,
.route-card,
.offer-card,
.faq-card,
.job-card,
.category-insight-card {
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 0 !important;
  align-self: start !important;
}

.service-card > *,
.premium-panel > *,
.route-card > *,
.offer-card > *,
.faq-card > *,
.job-card > *,
.category-insight-card > * { flex-shrink: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (min-width: 760px) {
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .jobs-grid, .contact-detail-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .page-stat-grid,
  .contact-teaser-grid,
  .process-grid,
  .detail-section-grid,
  .premium-section-grid,
  .faq-grid,
  .category-overview-grid,
  .route-grid,
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .reviews-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1020px) {
  .main-nav { display: inline-flex; }
  .menu-toggle { display: none; }

  /* Let the header span the full viewport instead of being capped at
     the global --max (1280px). The empty gutters on wide screens were
     starving the nav of the room it needs for premium typography. */
  .site-header .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-inline: auto;
  }

  /* CSS Grid locks brand to left, actions to right, nav fills the centre.
     minmax(0, 1fr) + overflow:hidden on the nav guarantees the centre
     column can never push past its allotted slot, even when translated
     strings or a narrow viewport would otherwise force items to spill
     over the brand or the language selector. */
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
  }
  .brand { flex: 0 0 auto; min-width: 0; gap: 10px; }
  .main-nav {
    min-width: 0;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2px;
  }
  .main-nav a {
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .main-nav a::after { left: 6px; right: 6px; }
  .header-actions { flex: 0 0 auto; gap: 14px; }

  /* Brand wordmark "Swiss Support Official" is always visible on desktop. */
  .site-header .brand .brand-copy { display: grid; }
  .site-header .brand .brand-copy strong {
    font-size: 11px;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
}

/* 1280+: viewport now has room for slightly larger items. */
@media (min-width: 1280px) {
  .site-header .container { width: calc(100% - 40px); }
  .header-inner { gap: 22px; }
  .main-nav a { padding: 0 7px; font-size: 12.5px; }
  .main-nav a::after { left: 7px; right: 7px; }
  .header-actions { gap: 16px; }
  .site-header .brand .brand-copy strong { font-size: 12px; }
}

/* 1500+: comfortable, readable spacing. */
@media (min-width: 1500px) {
  .site-header .container { width: calc(100% - 48px); }
  .header-inner { gap: 28px; }
  .main-nav { gap: 4px; }
  .main-nav a { padding: 0 9px; font-size: 13.5px; }
  .main-nav a::after { left: 9px; right: 9px; }
  .header-actions { gap: 20px; }
  .site-header .brand .brand-copy strong { font-size: 13px; }
}

/* 1700+: premium spacing. */
@media (min-width: 1700px) {
  .site-header .container { width: calc(100% - 56px); }
  .header-inner { gap: 36px; }
  .main-nav { gap: 6px; }
  .main-nav a { padding: 0 11px; font-size: 14px; }
  .main-nav a::after { left: 11px; right: 11px; }
  .header-actions { gap: 24px; }
  .site-header .brand .brand-copy strong { font-size: 14px; }
}

/* 1900+: maximum elegance. */
@media (min-width: 1900px) {
  .header-inner { gap: 44px; }
  .main-nav { gap: 8px; }
  .main-nav a { padding: 0 13px; font-size: 14.5px; }
  .main-nav a::after { left: 13px; right: 13px; }
  .header-actions { gap: 28px; }
  .site-header .brand .brand-copy strong { font-size: 15px; }
}

@media (min-width: 1020px) {

  .hero-grid,
  .contact-grid,
  .about-support-grid,
  .page-hero-grid { grid-template-columns: 1.08fr 0.92fr; }

  .category-overview-grid { grid-template-columns: repeat(4, 1fr); }
  .relocation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .hero-grid { align-items: stretch; }
  .hero-command-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid, .about-support-grid { align-items: start; }
  .about-support-grid, .contact-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); }

  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .growth-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid, .jobs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-teaser-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .service-grid,
  .jobs-grid,
  .route-grid,
  .offer-grid,
  .benefit-grid,
  .contact-teaser-grid,
  .contact-detail-list { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

  .premium-section-grid,
  .faq-grid,
  .page-stat-grid,
  .process-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

  .floating-mobile-cta { display: none; }
  .site-footer { padding-bottom: 56px; }

  .contact-cta-block { grid-template-columns: 1fr auto; align-items: end; gap: 52px; }
  .contact-cta-actions { flex-direction: column; min-width: 210px; }
  .contact-cta-actions .primary-btn, .contact-cta-actions .ghost-btn { width: 100%; justify-content: center; }

  .appointment-booking-shell { grid-template-columns: minmax(280px, 320px) minmax(0, 1fr); }
  .appointment-sidebar { position: sticky; top: 100px; }
  .appointment-scheduler-grid, .appointment-confirm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .appointment-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1019px) {
  .hide-mobile { display: none; }
  .job-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 759px) {
  .hero-copy h1,
  .section-head h2,
  .contact-copy h2,
  .page-hero-copy h1 { font-size: 52px; }

  .hero-image-frame { aspect-ratio: auto; min-height: 100%; }
  .hero-command-grid-home { grid-template-columns: 1fr; }
  .hero-command-card strong { font-size: 1.3rem; }
  .page-image-frame { aspect-ratio: 4 / 3; }
  .hero-panel { display: flex; }
  .site-footer { padding-bottom: 120px; }
  .review-card { min-width: 290px; }
  .growth-grid { grid-template-columns: 1fr; }

  .section-head, .category-intro-head { margin-bottom: 24px; }

  .category-intro-title { font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.06; }

  .hero-hub-shell h1,
  .contact-cta-copy h2 { font-size: clamp(1.85rem, 7.6vw, 3.1rem); line-height: 1.06; }

  .service-card,
  .job-card,
  .premium-panel,
  .route-card,
  .offer-card,
  .faq-card,
  .reviews-summary-card,
  .category-insight-card,
  .hero-command-card { padding: 24px 22px; }

  .section-cta, .category-actions, .contact-cta-actions, .form-actions { width: 100%; }

  .section-cta a, .category-actions a, .contact-cta-actions a, .form-actions a, .form-actions button {
    width: 100%;
    justify-content: center;
  }

  .jobs-top { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .jobs-app-btn { width: 100%; justify-content: center; }
  .job-cat-grid { grid-template-columns: 1fr; gap: 8px; }
  .job-cat-card { padding: 14px 16px; }
  .jobs-app-banner { flex-direction: column; align-items: flex-start; padding: 24px 22px; gap: 20px; }
  .jobs-app-banner .primary-btn { width: 100%; justify-content: center; }

  .contact-cta-details { flex-direction: column; gap: 0; }
  .contact-cta-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.10); margin-right: 0; padding-right: 0; }
  .contact-cta-item:last-child { border-bottom: 0; }

  .appointment-sidebar,
  .appointment-panel,
  .appointment-summary-card,
  .appointment-payment-card,
  .appointment-complete { padding: 22px 18px; }

  .appointment-step-list { grid-template-columns: 1fr; }
  .service-option-card { grid-template-columns: 1fr; }
  .service-option-head { flex-direction: column; align-items: flex-start; }
  .appointment-date-list, .appointment-time-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .appointment-actions, .appointment-complete-actions { flex-direction: column; }

  .appointment-actions .primary-btn,
  .appointment-actions .ghost-btn,
  .appointment-complete-actions .primary-btn,
  .appointment-complete-actions .ghost-btn { width: 100%; }

  .why-item { border-left: none; padding-left: 0 !important; }
  .detail-card { transform: none !important; }

  /* ── Mobile polish: cleaner spacing and readability (mobile-only) ── */
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  /* More comfortable card padding */
  .service-card,
  .job-card,
  .premium-panel,
  .route-card,
  .offer-card,
  .faq-card,
  .reviews-summary-card,
  .category-insight-card,
  .hero-command-card { padding: 26px 22px; }

  /* Body text breathes better on mobile */
  .hero-hub-copy,
  .category-intro-copy {
    font-size: 15.5px;
    line-height: 1.72;
  }

  /* Service descriptions */
  .service-card p,
  .premium-panel p,
  .category-insight-card p,
  .hero-command-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Slightly bigger headings inside cards for clarity */
  .service-card h3,
  .premium-panel h3,
  .category-insight-card h3 {
    font-size: 18px;
    line-height: 1.22;
  }

  /* More vertical breathing room between sections */
  .section,
  .about-support-section,
  .reviews-section,
  .why-section,
  .jobs-section,
  .category-intro,
  .page-hero {
    padding-top: clamp(40px, 7vw, 56px);
    padding-bottom: clamp(36px, 6vw, 48px);
  }

  /* Section heads — softer mobile spacing */
  .section-head h2,
  .category-intro-head h2 {
    line-height: 1.14;
  }
  .section-head p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  /* Hero hub: tighten the gap so it feels less cramped */
  .hero-hub-shell {
    gap: 22px;
  }
  .hero-hub-grid {
    gap: 12px;
  }

  /* Category insight cards: comfortable list spacing */
  .category-list li {
    line-height: 1.62;
  }

  /* ── Mobile overflow guard: nothing extends past the viewport ── */
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }
  body {
    position: relative;
  }

  /* Top-level structural blocks must respect viewport width */
  .site-shell,
  main,
  header,
  footer,
  section {
    max-width: 100vw;
    overflow-x: clip;
  }

  /* Container padding and width: never exceed viewport */
  .container {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* Media never bleeds out */
  img, video, iframe, svg, canvas, picture, embed, object {
    max-width: 100%;
    height: auto;
  }

  /* Long words / URLs in body copy break instead of overflowing.
     Headings are left alone so their existing word-break rules apply. */
  p, span, strong, small, li, a, label {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Grids: collapse to single column on phones to stop forced widths */
  .why-grid,
  .service-grid,
  .relocation-grid,
  .advisory-lines-grid,
  .premium-section-grid,
  .detail-section-grid,
  .benefit-grid,
  .offer-grid,
  .route-grid,
  .faq-grid,
  .category-overview-grid,
  .ct-cards-grid,
  .footer-grid,
  .field-grid,
  .ct-direct-meta {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
  }

  /* Flex rows that wrap should never push content out.
     .header-inner is excluded — it must stay one row on mobile so the
     lang selector and hamburger remain visible next to the brand. */
  .footer-bottom,
  .footer-grid,
  .reloc-tier-grid,
  .ct-direct-actions,
  .form-actions,
  .hero-hub-pills {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .header-inner {
    flex-wrap: nowrap;
    max-width: 100%;
  }

  /* Cards and panels shouldn't have a min-width pushing past the screen */
  .service-card,
  .job-card,
  .premium-panel,
  .route-card,
  .offer-card,
  .faq-card,
  .reviews-summary-card,
  .category-insight-card,
  .hero-command-card,
  .ct-card,
  .ct-promo-card {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Tables that exceed viewport scroll inside their wrapper instead of pushing the page */
  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  /* Pre/code wraps so it can't widen the layout */
  pre, code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
  }

  /* The reviews marquee is intentionally wide — keep it visually contained */
  .reviews-section,
  .reviews-track,
  .reviews-viewport,
  .reviews-strip {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Floating mobile CTA must respect screen edges */
  .floating-mobile-cta {
    left: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
  }

  /* Buttons sized larger than parent should clamp */
  .primary-btn,
  .ghost-btn,
  .lang-current,
  .lang-opt {
    max-width: 100%;
  }

  /* CTA arrow icons must stay small and balanced — text leads, icon supports */
  .primary-btn svg,
  .ghost-btn svg,
  .jobs-app-banner .primary-btn svg,
  .jobs-app-btn svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    stroke-width: 1.8;
    align-self: center;
    display: inline-block;
  }
  .primary-btn,
  .ghost-btn {
    gap: 10px;
  }
}

@media (min-width: 1240px) {
  .hero-command-grid-home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 760px) {
  .why-item { grid-template-columns: 80px 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .why-item { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
}

@media (max-width: 979px) {
  .appointment-step-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .premium-section-grid--paired {
    grid-template-columns: 1fr !important;
    grid-auto-rows: max-content !important;
    align-items: start !important;
  }
  .premium-section-grid--paired .premium-panel { height: auto !important; align-self: start !important; }
}

/* ── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.40; }
}

/* ── BUSINESS PROMOTION SERVICE ────────────────────────── */
.bps-section {
  background:
    radial-gradient(900px 460px at 18% 0%, rgba(192,17,30,0.05), transparent 70%),
    radial-gradient(800px 420px at 82% 0%, rgba(184,146,42,0.06), transparent 70%),
    #f7f6f2;
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
}
.bps-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192,17,30,0.4) 30%, rgba(184,146,42,0.5) 50%, rgba(192,17,30,0.4) 70%, transparent 100%);
}
.bps-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

/* TOP HEAD */
.bps-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(184,146,42,0.10);
  border: 1px solid rgba(184,146,42,0.25);
  color: #b8922a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.bps-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8922a;
}
.bps-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 500;
  color: #080808;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 18ch;
}
.bps-desc {
  font-size: 15px;
  color: #5a5656;
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 580px;
}
.bps-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 32px;
  border-radius: 100px;
  background: #c0111e;
  color: #ffffff;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(192,17,30,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}@media (hover: hover) and (pointer: fine) {
.bps-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(192,17,30,0.30);
  background: #a30f1a;
}}
.bps-cta svg { transition: transform 0.22s ease; }@media (hover: hover) and (pointer: fine) {
.bps-cta:hover svg { transform: translateX(4px); }}

/* BENEFITS GRID — 4 cards */
.bps-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .bps-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .bps-benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.bps-benefit-card {
  background: #ffffff;
  border: 1px solid rgba(8,8,8,0.07);
  border-radius: 16px;
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(8,8,8,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.bps-benefit-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 14px;
  background: #0a1224;
}
.bps-benefit-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}@media (hover: hover) and (pointer: fine) {
.bps-benefit-card:hover .bps-benefit-img img {
  transform: scale(1.04);
}}
.bps-benefit-card strong,
.bps-benefit-card span {
  padding-left: 22px;
  padding-right: 22px;
}@media (hover: hover) and (pointer: fine) {
.bps-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8,8,8,0.08);
  border-color: rgba(184,146,42,0.30);
}}
.bps-bicon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(192,17,30,0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c0111e;
  margin-bottom: 6px;
}
.bps-bicon svg { width: 20px; height: 20px; }
.bps-benefit-card strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #080808;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.bps-benefit-card span {
  font-size: 13px;
  color: #6a6565;
  line-height: 1.55;
}

/* FORM */
.bps-form {
  background: #ffffff;
  border: 1px solid rgba(8,8,8,0.07);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: 0 22px 60px rgba(8,8,8,0.07);
  display: flex;
  flex-direction: column;
}
.bps-form-head { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(8,8,8,0.07); }
.bps-form-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #c0111e;
  margin-bottom: 8px;
}
.bps-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #080808;
  letter-spacing: -0.012em;
  margin: 0;
  line-height: 1.15;
}
.bps-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.bps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.bps-row .bps-field { margin-bottom: 0; }
.bps-field label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #1a1818;
  margin-bottom: 7px;
}
.bps-field input,
.bps-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #080808;
  background: #f9f8f4;
  border: 1.5px solid rgba(8,8,8,0.08);
  border-radius: 10px;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.bps-field input::placeholder,
.bps-field textarea::placeholder { color: rgba(8,8,8,0.40); }
.bps-field input:focus,
.bps-field textarea:focus {
  border-color: #c0111e;
  background: #ffffff;
}
.bps-field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }

.bps-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  margin-top: 10px;
  background: #c0111e;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}@media (hover: hover) and (pointer: fine) {
.bps-submit:hover { filter: brightness(1.10); transform: translateY(-2px); }}
.bps-submit svg { transition: transform 0.2s; }@media (hover: hover) and (pointer: fine) {
.bps-submit:hover svg { transform: translateX(4px); }}
.bps-form-note {
  text-align: center;
  font-size: 11.5px;
  color: #6a6565;
  margin: 12px 0 0;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .bps-row { grid-template-columns: 1fr; }
}

/* ── PREMIUM FINAL CTA — shared across service pages ────── */
.bsp-cta {
  padding: clamp(16px, 2vw, 28px) 0 clamp(28px, 3.5vw, 48px);
}
.bsp-cta .cta-banner {
  background:
    radial-gradient(1200px 200px at 100% 0%, rgba(192,17,30,0.18), transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #161616 100%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3.6vw, 52px) !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left;
  box-shadow: 0 24px 60px rgba(192,17,30,0.10), 0 10px 30px rgba(0,0,0,0.35);
}
.bsp-cta .cta-banner::before {
  display: block !important;
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #c0111e 35%, #c0111e 65%, transparent 100%);
}
.bsp-cta .cta-banner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 380px;
  min-width: 0;
}
.bsp-cta .cta-banner strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1.22;
  letter-spacing: -0.012em;
  display: block;
  max-width: 600px;
}
.bsp-cta .cta-banner span {
  color: rgba(255,255,255,0.55) !important;
  font-size: 13px;
  line-height: 1.62;
  display: block;
  max-width: 540px;
  font-weight: 400;
}
.bsp-cta .cta-banner .primary-btn {
  align-self: center;
  flex-shrink: 0;
  background: #c0111e !important;
  border: 1px solid #c0111e !important;
  color: #ffffff !important;
  padding: 13px 28px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(192,17,30,0.40);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}@media (hover: hover) and (pointer: fine) {
.bsp-cta .cta-banner .primary-btn:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #c0111e !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(192,17,30,0.55);
}}
@media (max-width: 720px) {
  .bsp-cta .cta-banner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 22px;
    padding: 28px 24px !important;
  }
  .bsp-cta .cta-banner > div:first-child {
    flex: 1 1 auto;
  }
  .bsp-cta .cta-banner .primary-btn {
    align-self: stretch;
    width: 100%;
    padding: 14px 22px;
    /* Allow wrapping so long labels like "Send Your Growth Marketing
       Request" don't overflow the button width and look misaligned.
       Centered text + tighter letter-spacing keeps the multi-line
       result visually balanced. */
    white-space: normal;
    line-height: 1.35;
    letter-spacing: 0.10em;
    font-size: 10.5px;
    min-height: 48px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .bsp-cta .cta-banner .primary-btn {
    padding: 14px 18px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* ── SWISS SUPPORT APP — clean closing section (no CTA) ── */
.ssa-closing {
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
}
.ssa-closing-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
  background: #f7f6f2;
  border: 1px solid rgba(8,8,8,0.06);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.ssa-closing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px;
}
.ssa-closing-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c0111e;
  margin: 12px 0 18px;
}
.ssa-closing-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 500;
  color: #080808;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.ssa-closing-copy {
  font-size: 15px;
  color: #5a5656;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 640px;
}

/* ── SWISS SUPPORT APP — prominent open-app button ── */
.ssa-app-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 64px) !important;
  margin-bottom: clamp(20px, 3vw, 40px);
  padding-top: clamp(24px, 3vw, 36px);
}
.ssa-app-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 18px 40px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  border-radius: 100px !important;
  background: #080808 !important;
  border: 1px solid #080808 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(8,8,8,0.20);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, gap 0.22s ease;
}@media (hover: hover) and (pointer: fine) {
.ssa-app-btn:hover {
  transform: translateY(-3px) !important;
  background: var(--red) !important;
  border-color: var(--red) !important;
  box-shadow: 0 22px 56px rgba(192,17,30,0.32);
  gap: 16px;
}}
.ssa-app-btn svg { transition: transform 0.22s ease; }@media (hover: hover) and (pointer: fine) {
.ssa-app-btn:hover svg { transform: translateX(4px); }}

/* Stripe Checkout button — error/info note */
.payment-note {
  font-size: 12.5px;
  color: #c0111e;
  margin: 10px 0 0;
  font-weight: 500;
  line-height: 1.5;
}

/* ── RELOCATION PRICING TIERS — premium selectable cards ── */
.reloc-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 22px 0 26px;
}
@media (min-width: 720px) {
  .reloc-tier-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.reloc-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  background: #ffffff;
  border: 1.5px solid rgba(8,8,8,0.10);
  border-radius: 18px;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
  user-select: none;
  overflow: hidden;
}
.reloc-tier-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.reloc-tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}@media (hover: hover) and (pointer: fine) {
.reloc-tier-card:hover {
  border-color: rgba(192,17,30,0.32);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(8,8,8,0.07);
}}@media (hover: hover) and (pointer: fine) {
.reloc-tier-card:hover::before { transform: scaleX(1); }}

.reloc-tier-card.is-selected {
  border-color: var(--red);
  background: #fffaf9;
  box-shadow: 0 18px 44px rgba(192,17,30,0.12), 0 0 0 1px rgba(192,17,30,0.20);
}
.reloc-tier-card.is-selected::before { transform: scaleX(1); }

/* On mobile keep all three cards readable end-to-end. The padding
   is slightly tighter than the default to feel less airy, but the
   description is shown in full — no line-clamp. The CHF 680 card
   is naturally taller because it has more to say, and that's fine. */
@media (max-width: 720px) {
  .reloc-tier-grid { gap: 14px; }
  .reloc-tier-card {
    padding: 22px 22px 24px;
    gap: 9px;
  }
  .reloc-tier-tag { font-size: 9.5px; margin-bottom: 2px; }
  .reloc-tier-price {
    font-size: 34px;
    margin-bottom: 2px;
  }
  .reloc-tier-price em { font-size: 12px; }
  .reloc-tier-desc {
    font-size: 13px;
    line-height: 1.55;
  }
}

.reloc-tier-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #c0111e;
  margin-bottom: 4px;
}
.reloc-tier-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 500;
  color: #080808;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.reloc-tier-price em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #b8922a;
  font-family: 'Inter', sans-serif;
}
.reloc-tier-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5a5656;
  flex: 1;
}
/* The booking section is wrapped in a .service-card.premium article whose
   :hover state turns ALL nested <strong> tags white (line ~1303). Inside
   the tier cards (which keep their own white background) that makes the
   bold lead — e.g. "Consulting with documents." / "Συμβουλευτική μετά
   των εγγράφων." on the CHF 680 card — vanish into the white background
   while the rest of the description stays grey. Force the strong to keep
   its readable colour on hover, regardless of the outer card's hover state. */
.reloc-tier-desc strong { color: #1f1d1d; font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .reloc-tier-desc strong,
  .service-card.premium:hover .reloc-tier-desc strong,
  .reloc-tier-card:hover .reloc-tier-desc strong { color: #1f1d1d; }
}

.reloc-tier-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(8,8,8,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.25s ease;
}
.reloc-tier-check svg { width: 14px; height: 14px; }
.reloc-tier-card.is-selected .reloc-tier-check {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(192,17,30,0.34);
}

#open-appointment-booking[disabled] {
  opacity: 0.50;
  cursor: not-allowed;
  filter: grayscale(0.20);
}@media (hover: hover) and (pointer: fine) {
#open-appointment-booking[disabled]:hover {
  transform: none;
  box-shadow: none;
}}

/* ── 'Open Appointment Booking' button — premium two-state CTA ──
   Disabled state shows a quiet 'Choose a package above' hint.
   Active state ('.is-ready') turns into a confident red call-to-action
   with the tier name + price + arrow, and pulses briefly so the user's
   eye lands on the second click. */
#open-appointment-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#open-appointment-booking .oab-label { line-height: 1; }
#open-appointment-booking .oab-price {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  font-weight: 800;
}
#open-appointment-booking .oab-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
#open-appointment-booking.is-ready {
  background: linear-gradient(135deg, #b81e22 0%, #d4262b 50%, #b81e22 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 18px 44px -10px rgba(184,30,34,0.55);
}@media (hover: hover) and (pointer: fine) {
#open-appointment-booking.is-ready:hover {
  background: linear-gradient(135deg, #a51a1d 0%, #b81e22 50%, #a51a1d 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.26) inset,
    0 24px 56px -12px rgba(184,30,34,0.7);
}}@media (hover: hover) and (pointer: fine) {
#open-appointment-booking.is-ready:hover .oab-arrow { transform: translateX(3px); }}

/* Brief pulse animation triggered when the user picks a tier */
@keyframes oab-pulse {
  0%   { box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 0 0 0 rgba(184,30,34,0.55); }
  60%  { box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 0 0 18px rgba(184,30,34,0); }
  100% { box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 18px 44px -10px rgba(184,30,34,0.55); }
}
#open-appointment-booking.is-ready.is-pulse {
  animation: oab-pulse 1.1s cubic-bezier(.22,1,.36,1);
}

/* Mobile sizing — let the label wrap to 2 lines if it has to (Greek
   "Συνέχεια στο Checkout" + price pill + arrow don't always fit on
   one line on phones), and center everything so the button doesn't
   look like it leans to the right. No ellipsis — the user must see
   the full label, not a chopped "Συνέχεια στο check". */
@media (max-width: 540px) {
  #open-appointment-booking {
    width: 100%;
    min-height: 56px;
    padding: 12px 18px;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.03em;
    white-space: normal;
    line-height: 1.25;
    justify-content: center;
  }
  #open-appointment-booking .oab-label {
    flex: 0 1 auto;
    min-width: 0;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  #open-appointment-booking .oab-price {
    flex: 0 0 auto;
    height: 28px;
    padding: 0 10px;
    font-size: 11.5px;
  }
  #open-appointment-booking .oab-arrow {
    flex: 0 0 auto;
  }
}

/* Very narrow phones (≤ 380px) — drop the arrow so label + price always fit */
@media (max-width: 380px) {
  #open-appointment-booking {
    padding: 0 14px;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  #open-appointment-booking .oab-arrow { display: none; }
  #open-appointment-booking .oab-price {
    height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #open-appointment-booking.is-ready.is-pulse { animation: none; }
  #open-appointment-booking .oab-arrow { transition: none; }
}

/* ============================================================
   Contact form status messages (success / error)
   Used by contact-forms.js after submitting any
   <form data-contact-form="..."> via /api/send-contact-email
   ============================================================ */
.cform-status {
  display: block;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  animation: cformStatusFade 0.35s ease both;
}

.cform-status--success {
  color: #1f3a1f;
  background: linear-gradient(180deg, #f3f8ee 0%, #e9f1de 100%);
  border-color: #cfe1b3;
  box-shadow: 0 2px 10px rgba(96, 130, 60, 0.10);
}

.cform-status--success::before {
  content: "✓ ";
  font-weight: 700;
  color: #4f7a2c;
  margin-right: 4px;
}

.cform-status--error {
  color: #5a1d1d;
  background: linear-gradient(180deg, #fbeeee 0%, #f6dede 100%);
  border-color: #e6b8b8;
  box-shadow: 0 2px 10px rgba(150, 40, 40, 0.10);
}

.cform-status--error::before {
  content: "! ";
  font-weight: 800;
  color: #b53636;
  margin-right: 4px;
}

@keyframes cformStatusFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Submit button busy state */
form[data-contact-form] button[type="submit"][data-busy="1"] {
  opacity: 0.65;
  cursor: progress;
}

/* ============================================================
   Required-field validation — highlight missing inputs
   Set by contact-forms.js when a submit is attempted with
   any visible input/select/textarea left empty.
   ============================================================ */
form[data-contact-form] input.cform-field--invalid,
form[data-contact-form] select.cform-field--invalid,
form[data-contact-form] textarea.cform-field--invalid {
  border-color: #c0111e !important;
  box-shadow: 0 0 0 3px rgba(192, 17, 30, 0.10) !important;
  background-color: rgba(192, 17, 30, 0.02) !important;
}
form[data-contact-form] input.cform-field--invalid:focus,
form[data-contact-form] select.cform-field--invalid:focus,
form[data-contact-form] textarea.cform-field--invalid:focus {
  outline: none !important;
  border-color: #c0111e !important;
  box-shadow: 0 0 0 3px rgba(192, 17, 30, 0.18) !important;
}
form[data-contact-form] .cf-chip.cform-chip--invalid {
  border-color: #c0111e !important;
  background-color: rgba(192, 17, 30, 0.04) !important;
  box-shadow: 0 0 0 2px rgba(192, 17, 30, 0.08) !important;
}

/* ============================================================
   Footer WhatsApp phone — discreet styling
   The phone number lives only in the footer (Contact column)
   and is intentionally small/muted so it is not prominent.
   ============================================================ */
.site-footer a[href*="wa.me"] {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.62;
  letter-spacing: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.site-footer a[href*="wa.me"]:focus-visible {
  opacity: 1;
}@media (hover: hover) and (pointer: fine) {
.site-footer a[href*="wa.me"]:hover{
  opacity: 1;
}}

/* ============================================================
   Hero headline — premium letter-by-letter entrance animation
   Wrapped at runtime by the [data-letter-anim] script in
   index.html. Each character gets its own --char-i index for a
   smooth staggered fade-in with a soft blur clearing.
   ============================================================ */
[data-letter-anim] {
  opacity: 0;
  transition: opacity 220ms ease;
}
[data-letter-anim].is-letter-anim-ready {
  opacity: 1;
}
[data-letter-anim] .hh-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}
[data-letter-anim].is-letter-anim-ready .hh-char {
  animation: hhCharIn 880ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--char-i, 0) * 32ms + 80ms);
}
[data-letter-anim] .hh-char.hh-space {
  filter: none;
}
[data-letter-anim].is-letter-anim-ready .hh-char.hh-space {
  /* Space animates without blur for cleaner spacing */
  animation: hhSpaceIn 880ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--char-i, 0) * 32ms + 80ms);
}
@keyframes hhCharIn {
  0% {
    opacity: 0;
    transform: translateY(0.42em);
    filter: blur(6px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes hhSpaceIn {
  0%   { opacity: 0; transform: translateY(0.42em); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  [data-letter-anim] .hh-char,
  [data-letter-anim].is-letter-anim-ready .hh-char {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ── TOUCH DEVICES — kill sticky :hover & flat tap-highlight ──
   On touch devices iOS / Android stick :hover after a tap, so the
   first tap visually "activates" the button (white→black, etc.) and
   the user thinks a second tap is required. Every :hover rule above
   is wrapped in `@media (hover: hover) and (pointer: fine)` so it
   only fires on real hovering pointers. Below we just neutralise the
   webkit tap highlight which is still applied independently. */
@media (hover: none) {
  a, button, .ghost-btn, .primary-btn, .header-book-cta, .mobile-book-cta {
    -webkit-tap-highlight-color: transparent;
  }
}
