/* ============================================
   DESIGN SYSTEM – ELISABETH RIEDER
   elisabethrieder.life
   ============================================ */

/* ── 1. Variables ── */
:root {
  --teal-900: #134E4A;
  --teal-800: #115E59;
  --teal-700: #0F766E;
  --teal-600: #0D9488;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  --teal-300: #5EEAD4;
  --teal-200: #99F6E4;
  --teal-100: #CCFBF1;
  --teal-50:  #F0FDFA;

  --warm-50:  #FFFBF5;
  --warm-100: #FEF3E2;
  --warm-200: #FDE8C8;

  --stone-900: #1C1917;
  --stone-800: #292524;
  --stone-700: #44403C;
  --stone-600: #57534E;
  --stone-500: #78716C;
  --stone-400: #A8A29E;
  --stone-300: #D6D3D1;
  --stone-200: #E7E5E4;
  --stone-100: #F5F5F4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-soft: 0 4px 30px rgba(19, 78, 74, 0.08);
  --shadow-medium: 0 10px 40px rgba(19, 78, 74, 0.12);
  --shadow-hover: 0 12px 40px rgba(19, 78, 74, 0.15);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s var(--ease-smooth);
  --transition-slow: 0.4s var(--ease-smooth);

  /* ── Spacing Scale ── */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 5.5rem;

  /* ── Tracking (letter-spacing) ── */
  --tracking-sm: 0.08em;
  --tracking-lg: 0.14em;
}

/* ── 2. Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
[id] { scroll-margin-top: 100px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone-700);
  background: var(--warm-50);
  overflow-x: hidden;
  max-width: 100vw;
  padding-top: 84px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeInPage 0.5s var(--ease-smooth) both;
}

/* ── 2a. Selection + Page Entry ── */
::selection {
  background: rgba(20, 184, 166, 0.15);
  color: var(--stone-900);
}
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── 2b. Accessibility ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--teal-700);
  color: white;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 3. Typography ── */
h1, h2 { font-family: var(--font-serif); font-weight: 500; line-height: 1.25; color: var(--stone-900); }
h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.3; color: var(--stone-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); }
p { max-width: 65ch; }
p + p { margin-top: var(--space-sm); }
.card p, .dark-card p, .highlight-box p, .info-card p { max-width: none; }
.card p + p, .dark-card p + p { margin-top: var(--space-xs); }
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--stone-600); }
.intro-p { font-size: 1.05rem; line-height: 1.8; color: var(--stone-600); }
.fine-print { font-size: 0.85rem; color: var(--stone-500); line-height: 1.6; }

/* Inline links */
p a:not(.btn):not(.card-link):not(.social-link) {
  color: var(--teal-700);
  text-decoration: underline;
  text-decoration-color: var(--teal-200);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-base);
}
p a:not(.btn):not(.card-link):not(.social-link):hover {
  text-decoration-color: var(--teal-700);
}

/* ── 4. Container + Section ── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; }
.section--snug { padding: 2.5rem 0; }
.section--generous { padding: 5.5rem 0; }
.section--spacious-top { padding-top: 5rem; }
.section--spacious-bottom { padding-bottom: 5rem; }

/* Soft section divider */
.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, var(--stone-200) 20%, var(--stone-200) 80%, transparent 100%);
  margin: 0;
}

/* ── 5. Section Header + Label ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: var(--tracking-lg);
  text-transform: uppercase;
  color: var(--teal-700); /* A-02: was teal-600 (3.74:1 on white), now 5.47:1 */
  margin-bottom: var(--space-sm);
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal-400);
  border-radius: 1px;
}
.section-header p { margin: 0.75rem auto 0; color: var(--stone-600); font-size: 1.05rem; line-height: 1.7; }
/* ── 6. Button System ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--teal-700);
  color: white;
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.3);
}
.btn-primary:hover {
  background: var(--teal-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(15, 118, 110, 0.4);
}
.btn-secondary {
  background: white;
  color: var(--teal-700);
  border: 2px solid var(--teal-200);
}
.btn-secondary:hover {
  border-color: var(--teal-500);
  background: var(--teal-50);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(15, 118, 110, 0.2);
}
.btn--premium {
  position: relative;
  overflow: hidden;
  padding-inline: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 44%),
    linear-gradient(135deg, #115e59 0%, #0f766e 54%, #2aa198 100%);
  box-shadow:
    0 12px 28px rgba(15, 118, 110, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--premium::after {
  content: "\2192";
  font-size: 1.05em;
  line-height: 1;
  transition: transform var(--transition-base);
}
.btn--premium:hover,
.btn--premium:focus-visible {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.2), transparent 46%),
    linear-gradient(135deg, #134e4a 0%, #0f5f5a 52%, #1f8a7d 100%);
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 16px 34px rgba(15, 118, 110, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--premium:hover::after,
.btn--premium:focus-visible::after {
  transform: translateX(2px);
}
.btn--premium:active {
  transform: translateY(-1px);
}
.btn--booking {
  position: relative;
}
.btn--booking::after {
  content: "\2192";
  font-size: 1.05em;
  line-height: 1;
  transition: transform var(--transition-base);
}
.btn--booking:hover,
.btn--booking:focus-visible {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.2), transparent 46%),
    linear-gradient(135deg, #134e4a 0%, #0f5f5a 52%, #1f8a7d 100%);
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 16px 34px rgba(15, 118, 110, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--booking:hover::after,
.btn--booking:focus-visible::after {
  transform: translateX(2px);
}
.btn--booking:active {
  transform: translateY(-1px);
}
.final-cta .btn--booking,
.final-cta .btn--premium {
  color: var(--teal-900) !important;
  border: none;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.9), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  box-shadow:
    0 18px 38px rgba(7, 28, 28, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.final-cta .btn--booking:hover,
.final-cta .btn--booking:focus-visible,
.final-cta .btn--premium:hover,
.final-cta .btn--premium:focus-visible {
  color: white !important;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.2), transparent 54%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.98) 0%, rgba(17, 94, 89, 0.98) 100%);
  box-shadow:
    0 22px 44px rgba(7, 28, 28, 0.26),
    inset 0 0 0 1px rgba(153, 246, 228, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.final-cta a.btn.btn-primary.btn--booking:hover,
.final-cta a.btn.btn-primary.btn--booking:focus-visible,
.final-cta a.btn.btn-primary.btn--premium:hover,
.final-cta a.btn.btn-primary.btn--premium:focus-visible {
  color: white !important;
}
.btn-white {
  background: white;
  color: var(--teal-800);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--warm-100);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── 7. Hero Module ── */
.hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--warm-50) 0%, var(--teal-50) 60%, var(--warm-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 800px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-700);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero h1 { color: var(--teal-900); margin-bottom: 0.75rem; }
.hero h1 span {
  display: block;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--teal-600);
  margin-top: 0.5rem;
  letter-spacing: var(--tracking-sm);
  text-transform: uppercase;
}
.hero-text { font-size: 1.15rem; color: var(--stone-600); margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Dark Hero */
.hero--dark { background: linear-gradient(135deg, var(--stone-900) 0%, var(--teal-900) 100%); }
.hero--dark::before { background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 60%); }
.hero--dark h1 { color: white; }
.hero--dark h1 span { color: var(--teal-300); }
.hero--dark .hero-text { color: rgba(255, 255, 255, 0.75); }
.hero--dark .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--teal-300);
  box-shadow: none;
}
.hero--dark .hero-badge::before { display: none; }

/* Editorial Hero (with image) */
.hero--editorial .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 550px; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image-wrapper {
  width: 350px;
  height: 420px;
  border-radius: 175px 175px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: linear-gradient(180deg, var(--teal-100) 0%, var(--warm-200) 100%);
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.hero-image-wrapper:hover img { transform: scale(1.03); }

/* Compact Hero */
.hero--compact { min-height: auto; padding: 2rem 0; }
.hero--compact::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── 8. Trust Row ── */
.trust-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-200);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--stone-600);
}
.trust-item svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; }

/* ── 9. Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.home-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.card-grid--two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-inline: auto;
}
.card {
  background:
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 252, 251, 0.99) 100%);
  padding: 1.75rem;
  border-radius: 16px;
  border-left: 4px solid var(--teal-500);
  border: 1px solid rgba(214, 211, 209, 0.72);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow:
    0 16px 34px rgba(28, 25, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(28, 25, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 118, 110, 0.18);
  border-left-color: var(--teal-700);
}
.card h3 { font-size: 1.08rem; margin-bottom: 0.55rem; color: var(--teal-800); }
.card p { font-size: 0.92rem; color: var(--stone-600); margin: 0; line-height: 1.62; }
.card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.card .icon,
.offer-card .icon,
.cred-icon,
.format-icon,
.detail-row .icon,
.contact-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  line-height: 1;
}
.card .icon svg,
.offer-card .icon svg,
.cred-icon svg,
.format-icon svg,
.detail-row .icon svg,
.contact-link-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  flex-shrink: 0;
}
.card .icon { width: 1.75rem; height: 1.75rem; }
.home-service-card {
  padding: 1.7rem 1.55rem 1.5rem;
  border-left: none;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.home-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.55rem;
  right: 1.55rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.95), rgba(94, 234, 212, 0.55));
}
.home-service-card:hover,
.home-service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow:
    0 20px 42px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.home-service-card > .icon {
  position: relative;
  top: auto;
  right: auto;
  margin: 0 0 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.72), transparent 62%),
    linear-gradient(135deg, rgba(204, 251, 241, 0.96) 0%, rgba(240, 253, 250, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(20, 184, 166, 0.12),
    0 10px 22px rgba(20, 184, 166, 0.14);
}
.home-service-card > .icon + h3,
.home-service-card > .icon + h4 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  line-height: 1.3;
}
.home-service-card p {
  font-size: 0.95rem;
  line-height: 1.68;
  margin-bottom: 1.15rem;
}
.home-service-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-top: auto;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(240, 253, 250, 0.98);
  color: var(--teal-800);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.12);
  transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}
.home-service-card .card-cta::after {
  content: "\2192";
  font-size: 1em;
  line-height: 1;
}
.home-service-card:hover .card-cta,
.home-service-card:focus-visible .card-cta {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 1);
  box-shadow:
    inset 0 0 0 1px rgba(20, 184, 166, 0.16),
    0 10px 20px rgba(15, 118, 110, 0.08);
}
.card--interactive {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.card--interactive:hover,
.card--interactive:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
.card--interactive:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.3);
  outline-offset: 3px;
}
.card--interactive h3,
.card--interactive p {
  text-decoration: none;
}
.card:not(.card--centered) > .icon {
  position: absolute;
  top: 1.3rem;
  right: 1.25rem;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.card:not(.card--centered) > .icon + h3,
.card:not(.card--centered) > .icon + h4 {
  margin: 0 3.4rem 0.7rem 0;
  font-size: 1.18rem;
}

.card--warm {
  background: var(--warm-50);
  border-left: none;
  box-shadow: none;
  border: 1px solid var(--stone-200);
  transition: all var(--transition-base);
}
.card--warm:hover { border-color: var(--teal-200); }
.card--centered {
  text-align: center;
  border-left: none;
  background:
    radial-gradient(circle at top center, rgba(20, 184, 166, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
}
.card--centered .icon { font-size: 2rem; margin-bottom: 1rem; width: 2rem; height: 2rem; }
.cred-icon { width: 2.25rem; height: 2.25rem; margin-bottom: 1rem; }
.format-icon { width: 2.75rem; height: 2.75rem; margin-bottom: 1rem; }
.detail-row .icon { width: 1.2rem; height: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.card-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.8rem 1.35rem;
  font-size: 0.95rem;
  pointer-events: none;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  color: var(--teal-700);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition-base), gap var(--transition-base);
}
.card-link:hover { color: var(--teal-900); gap: 0.5rem; }

/* Entry cards (homepage): taller, flex layout for link at bottom */
.entry-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.entry-card p { flex: 1; }

/* Home link cards */
.home-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.55rem;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  border: 1px solid rgba(214, 211, 209, 0.72);
  background:
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(249, 250, 251, 0.985) 100%);
  box-shadow:
    0 14px 30px rgba(28, 25, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}
.home-link-card:hover,
.home-link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.16);
  box-shadow:
    0 20px 40px rgba(28, 25, 23, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 252, 0.99) 100%);
}
.home-link-card:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.24);
  outline-offset: 3px;
}
.home-link-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.3;
  color: var(--teal-800);
}
.home-link-card p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.66;
  color: var(--stone-600);
}
.home-link-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-top: auto;
  padding: 0.76rem 1rem;
  border-radius: 999px;
  background: rgba(247, 250, 249, 0.98);
  color: var(--teal-800);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow:
    inset 0 0 0 1px rgba(20, 184, 166, 0.12),
    0 6px 16px rgba(15, 118, 110, 0.04);
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}
.home-link-card .card-cta::after {
  content: "\2192";
  font-size: 1em;
  line-height: 1;
}
.home-link-card:hover .card-cta,
.home-link-card:focus-visible .card-cta {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 1);
  box-shadow:
    inset 0 0 0 1px rgba(20, 184, 166, 0.14),
    0 10px 22px rgba(15, 118, 110, 0.08);
}

/* Home intro video */
.home-video-section {
  position: relative;
  overflow: hidden;
}
.home-video-section .section-header {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}
.home-video-section .section-header h2 {
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
}
.br-desktop { display: block; }
@media (max-width: 640px) {
  .br-desktop { display: none; }
}
.home-video-wrapper {
  max-width: 46rem;
  margin: 0 auto;
}
.deferred-video {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #456b68 0%, #5d8c86 56%, #7caea7 100%);
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.deferred-video::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.deferred-video__trigger,
.deferred-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.deferred-video__trigger {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
}
.deferred-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.deferred-video__trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 36, 35, 0.04) 0%, rgba(20, 36, 35, 0.28) 100%);
  transition: opacity var(--transition-base);
}
.deferred-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.25rem;
  height: 5.25rem;
  margin: -2.625rem 0 0 -2.625rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
  color: var(--teal-800);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.2),
    inset 0 0 0 1px rgba(20, 184, 166, 0.16);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.deferred-video__play svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.2rem;
}
.deferred-video__label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--stone-800);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.deferred-video__trigger:hover .deferred-video__play,
.deferred-video__trigger:focus-visible .deferred-video__play {
  transform: scale(1.04);
  box-shadow:
    0 24px 46px rgba(15, 23, 42, 0.24),
    inset 0 0 0 1px rgba(20, 184, 166, 0.2);
}
.deferred-video__trigger:hover::before,
.deferred-video__trigger:focus-visible::before {
  opacity: 0.88;
}
.deferred-video__trigger:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.28);
  outline-offset: 4px;
}
.deferred-video.is-loaded .deferred-video__trigger {
  display: none;
}
.deferred-video__iframe {
  border: 0;
  background: #000;
}

/* ── 10. Testimonials ── */
.testimonials {
  background: linear-gradient(135deg, var(--warm-100) 0%, var(--teal-50) 100%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all var(--transition-base);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--teal-200);
}
.testimonial-stars { color: var(--teal-500); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--stone-600);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal-200) 0%, var(--warm-200) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--teal-700);
}
.author-info .name { font-weight: 600; color: var(--stone-800); font-size: 0.9rem; }
.author-info .source { font-size: 0.8rem; color: var(--stone-500); } /* A-01: was stone-400 (2.45:1), now 4.65:1 */

/* ── 11. FAQ Accordion ── */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  background: var(--warm-50);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--stone-200);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.faq-item:hover { border-color: var(--teal-200); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal-600);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--stone-600);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}
.faq-item.open .faq-answer { max-height: 800px; padding: 0 1.5rem 1.25rem; }
.faq-item.open { border-color: var(--teal-300); box-shadow: 0 2px 16px rgba(19, 78, 74, 0.06); }

/* ── 12. Process Timeline ── */
.process-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-500), var(--teal-700));
}
.process-step { position: relative; padding-left: 70px; padding-bottom: 2.5rem; }
.process-step:last-child { padding-bottom: 0; }
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--teal-700);
  border: 3px solid var(--teal-500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: white;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.95rem; }

/* Process in dark context */
.section--dark .process-step h3 { color: white; }
.section--dark .process-step p { color: var(--teal-200); }

/* ── 13. Final CTA ── */
.final-cta {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 { color: white; margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.final-cta > .container > p { color: var(--teal-100); margin: 0 auto 2rem; font-size: 1.1rem; } /* A-04: was teal-200 (4.34:1), teal-100 passes */
.final-cta > .container > .final-cta__waitlist {
  max-width: 760px;
  margin-top: 3rem;
}
.final-cta .btn-primary {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}
.final-cta .btn-primary:not(.btn--premium):not(.btn--booking) {
  background: white;
  color: var(--teal-800);
}
.final-cta .btn-primary:not(.btn--premium):not(.btn--booking):hover {
  background: var(--warm-100);
  transform: translateY(-3px);
}
.contact-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-row a {
  color: var(--teal-200);
  text-decoration: none;
  transition: color var(--transition-base);
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-row a:hover { color: white; }
.contact-panel .contact-row {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top-color: var(--stone-200);
  gap: 0.85rem 1rem;
}
.contact-panel .contact-row a {
  color: var(--teal-900);
  background: linear-gradient(135deg, var(--teal-50) 0%, white 100%);
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  max-width: 100%;
  word-break: break-word;
  box-shadow: 0 8px 24px rgba(19, 78, 74, 0.08);
  transition: color var(--transition-base), background var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.contact-panel .contact-row a:hover,
.contact-panel .contact-row a:focus-visible {
  color: var(--teal-900);
  background: white;
  border-color: rgba(15, 118, 110, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 78, 74, 0.12);
}
.contact-link-icon { width: 1rem; height: 1rem; color: var(--teal-300); }
.contact-panel .contact-link-icon { color: var(--teal-700); }

/* ── 14. Dark Section ── */
.section--dark { background: var(--teal-900); color: white; }
.section--dark .section-label { color: var(--teal-400); }
.section--dark .section-header h2 { color: white; }
.section--dark .section-header p { color: var(--teal-200); }
.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}
.dark-card:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--teal-400); }
.dark-card h3 {
  color: var(--teal-400);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-sm);
  margin-bottom: var(--space-xs);
}
.dark-card h4 {
  color: white;
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}
.dark-card p {
  color: var(--teal-200);
  font-size: 0.98rem;
  line-height: 1.7;
} /* A-03: was stone-400 (3.76:1), now 7.52:1 */
.dark-card a {
  color: var(--teal-400);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
}
.dark-card a:hover { color: white; }

/* ── 15. Split Grid ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.split-grid--wide { grid-template-columns: 1.3fr 1fr; }
.split-grid--reverse { grid-template-columns: 1fr 1.5fr; }
.split-grid--stretch { align-items: stretch; gap: 2rem; }

/* ── 16. Info Card / Sidebar Card ── */
.info-card { background: white; border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-soft); }
.info-card h3 { color: var(--teal-700); font-size: 1.1rem; margin-bottom: 1.25rem; }
.detail-row { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--stone-200); }
.detail-row:last-child { border-bottom: none; }
.detail-row .label { font-size: 0.8rem; font-weight: 600; color: var(--stone-500); text-transform: uppercase; letter-spacing: var(--tracking-sm); min-width: 80px; }
.detail-row .value { font-size: 0.9rem; color: var(--stone-700); }

/* ── 17. Highlight Box + Check List ── */
.highlight-box {
  background: linear-gradient(135deg, var(--teal-50) 0%, rgba(240, 253, 250, 0.5) 100%);
  border-radius: 20px;
  padding: 2rem;
  border-left: 4px solid var(--teal-500);
}
.highlight-box h3 { color: var(--teal-700); font-size: 1.1rem; margin-bottom: 1rem; }
.highlight-box--feature {
  align-self: center;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left-width: 1px;
  border-top: 4px solid var(--teal-500);
  border: 1px solid rgba(20, 184, 166, 0.18);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 36%),
    linear-gradient(180deg, white 0%, var(--teal-50) 100%);
  box-shadow: 0 18px 48px rgba(19, 78, 74, 0.12);
}
.highlight-box--feature h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 1.1rem;
}
.home-editorial-card {
  align-self: stretch;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.home-editorial-card h3 {
  margin-bottom: var(--space-md);
}
.highlight-box--mingle {
  height: 100%;
}
.highlight-box--mingle .check-list,
.highlight-box--mingle .not-list {
  gap: 0.8rem;
}
.highlight-box--mingle .check-list li,
.highlight-box--mingle .not-list li {
  line-height: 1.55;
}
.highlight-box--location {
  align-self: start;
}
.highlight-box--newsletter {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-left-width: 1px;
  border-top: 4px solid var(--teal-500);
  border: 1px solid rgba(20, 184, 166, 0.18);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 38%),
    linear-gradient(180deg, white 0%, var(--teal-50) 100%);
  box-shadow: 0 18px 48px rgba(19, 78, 74, 0.12);
  text-align: center;
}
.highlight-box--newsletter h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: var(--space-sm);
}
.highlight-box--newsletter p {
  max-width: 42ch;
  margin-inline: auto;
}
.highlight-box--newsletter .info-chips {
  justify-content: center;
  margin: var(--space-lg) 0 var(--space-md);
}
.highlight-box--newsletter .hero-ctas {
  justify-content: center;
}
.highlight-box--newsletter .text-detail-sm {
  margin-top: var(--space-md);
}
.highlight-box--location .sub-label {
  margin-top: 0;
  margin-bottom: var(--space-xs);
}
.location-address {
  margin-bottom: var(--space-sm);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  color: var(--stone-900);
}
.location-address a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 118, 110, 0.22);
  transition: color var(--transition-base), border-color var(--transition-base);
}
.location-address a:hover,
.location-address a:focus-visible {
  color: var(--teal-800);
  border-color: rgba(15, 118, 110, 0.5);
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 var(--space-md);
}
.location-actions .btn {
  max-width: none;
}
.highlight-box--location .info-chips {
  margin: var(--space-md) 0 var(--space-sm);
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--stone-600);
}
.check-list li::before {
  content: '\2713';
  color: var(--teal-500);
  font-weight: bold;
  flex-shrink: 0;
}
.highlight-box--feature .check-list {
  gap: 0.8rem;
}
.highlight-box--feature .check-list li {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 184, 166, 0.12);
  box-shadow: 0 6px 18px rgba(19, 78, 74, 0.06);
  line-height: 1.5;
}
.highlight-box--feature .check-list li::before {
  color: var(--teal-700);
  margin-top: 0.05rem;
}

/* ── 18. Chips ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-200);
}
.chip--status { background: var(--warm-100); color: var(--stone-700); border-color: var(--warm-200); }
.chip--price { background: white; color: var(--teal-800); border-color: var(--teal-200); font-weight: 600; }
.info-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }

/* ── 19. Legal Prose ── */
.page-prose { max-width: 780px; margin: 2rem auto; padding: 0 1.5rem; }
.page-prose h1 { margin-bottom: 1.5rem; }
.page-prose h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 2.5rem 0 1rem; }
.page-prose h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin: 2rem 0 0.75rem; }
.page-prose p { color: var(--stone-600); margin-bottom: 1rem; }
.page-prose ul, .page-prose ol { margin: 0.75rem 0 1.25rem 1.5rem; color: var(--stone-600); }
.page-prose li { margin-bottom: 0.4rem; }
.page-prose a {
  color: var(--teal-700);
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.page-prose a:hover { color: var(--teal-900); }
.page-prose a.btn { text-decoration: none; }
.page-prose a.btn-primary { color: #ffffff !important; }
.page-prose a.btn-secondary { color: var(--teal-700) !important; }

/* ── 19b. Blog Articles ── */
.article-prose {
  max-width: 860px;
  margin: clamp(2rem, 5vw, 3.5rem) auto;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background:
    radial-gradient(circle at top left, rgba(94, 234, 212, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 252, 251, 1) 100%);
  border: 1px solid rgba(214, 211, 209, 0.84);
  border-radius: 30px;
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.article-prose > :first-child { margin-top: 0; }
.article-prose p {
  color: var(--stone-700);
  font-size: 1.05rem;
  line-height: 1.82;
}
.article-prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2.75rem 0 1rem;
  color: var(--teal-800);
}
.article-prose h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--stone-800);
}
.article-prose strong { color: var(--stone-800); }
.article-prose > ul:first-child {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0;
}
.article-prose > ul:first-child li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--warm-100);
  border: 1px solid var(--warm-200);
  color: var(--stone-600);
  font-size: 0.9rem;
  font-weight: 500;
}
.article-prose > ul:first-child + h3 {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: var(--tracking-lg);
  text-transform: uppercase;
  color: var(--stone-500);
}
.article-prose table {
  width: 100% !important;
  max-width: none !important;
  margin: 1.5rem 0 2rem;
  border-collapse: separate !important;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(214, 211, 209, 0.84);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
  background: white;
}
.article-prose thead tr {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(241, 245, 249, 0.98) 100%);
}
.article-prose th,
.article-prose td {
  padding: 0.9rem 1rem !important;
  vertical-align: top;
}
.article-prose th {
  color: var(--teal-800) !important;
  font-weight: 600;
}
.article-prose td { color: var(--stone-700) !important; }
.article-prose tr + tr td,
.article-prose tr + tr th {
  border-top: 1px solid rgba(231, 229, 228, 0.9);
}
.article-prose .highlight-box {
  margin-top: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 249, 1) 100%);
  border-color: var(--warm-200);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}
.article-prose .hero-ctas {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(231, 229, 228, 0.9);
}
.article-question-list,
.article-tip-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}
.article-question-list {
  display: grid;
  gap: 0.85rem;
  margin-left: 0;
}
.article-question-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 249, 1) 100%);
  border: 1px solid rgba(204, 251, 241, 0.95);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}
.article-question-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
}
.article-question-text {
  color: var(--stone-800);
  font-weight: 500;
  line-height: 1.6;
}
.article-tip-list {
  display: grid;
  gap: 0.8rem;
}
.article-tip-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(231, 229, 228, 0.92);
  color: var(--stone-700);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}
.article-tip-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  color: var(--teal-700);
  font-weight: 700;
}
.article-outro-card .sub-label {
  margin-bottom: 0.7rem;
}
.article-outro-card h3 {
  color: var(--teal-800);
  margin-top: 0;
}

/* ── 20. Shell: Header ── */
.site-shell-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  background: color-mix(in srgb, var(--warm-50) 84%, white);
  border-bottom: 1px solid rgba(214, 211, 209, 0.72);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}
.site-shell-nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-shell-brand {
  color: var(--teal-900);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  transition: color var(--transition-base), opacity var(--transition-base);
}
.site-shell-brand:hover { color: var(--teal-700); opacity: 0.96; }
.site-shell-menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--stone-300);
  border-radius: 10px;
  background: white;
  padding: 0.45rem 0.7rem;
  color: var(--stone-700);
  font-size: 0.95rem;
  transition: border-color var(--transition-base), background var(--transition-base);
  cursor: pointer;
}
.site-shell-menu-toggle:hover { border-color: var(--teal-400); background: var(--teal-50); }
.site-shell-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}
.site-shell-links a,
.site-shell-dropdown > summary {
  color: var(--stone-700);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.2;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}
.site-shell-links a:hover,
.site-shell-dropdown > summary:hover {
  color: var(--teal-700);
  background: rgba(255, 255, 255, 0.72);
}
.site-shell-links a.is-active,
.site-shell-dropdown > summary.is-active {
  color: var(--teal-700);
  font-weight: 600;
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.12);
}
.site-shell-links a.is-active::after,
.site-shell-dropdown > summary.is-active::after {
  content: '';
  position: absolute;
  bottom: 0.18rem;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 1px;
}
.site-shell-dropdown { position: relative; }
.site-shell-dropdown > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-shell-dropdown > summary::-webkit-details-marker { display: none; }
.site-shell-dropdown-panel {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.55rem);
  min-width: 280px;
  padding: 0.6rem;
  border: 1px solid rgba(214, 211, 209, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-shell-dropdown[open] .site-shell-dropdown-panel { display: grid; gap: 0.2rem; }
.site-shell-dropdown-panel a { border-radius: 10px; padding: 0.55rem 0.65rem; }
.site-shell-dropdown-panel a:hover { background: var(--teal-50); }
.site-shell-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.62rem 1.12rem;
  background: var(--teal-700);
  color: white !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 0.35rem;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-shell-links .site-shell-cta {
  color: white !important;
}
.site-shell-cta.btn--premium {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(135deg, #115e59 0%, #0f6d68 54%, #249487 100%);
  box-shadow:
    0 12px 26px rgba(15, 118, 110, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.site-shell-links .site-shell-cta:hover,
.site-shell-links .site-shell-cta:focus-visible {
  color: white !important;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.2), transparent 46%),
    linear-gradient(135deg, #134e4a 0%, #0f5f5a 52%, #1f8a7d 100%);
  box-shadow:
    0 16px 34px rgba(15, 118, 110, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* ── 21. Shell: Footer ── */
.site-shell-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--stone-200);
  background: white;
}
.site-shell-footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.2rem;
}
.site-shell-footer-col h3 {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-sm);
  color: var(--stone-500);
}
.site-shell-footer-col a,
.site-shell-footer-col p {
  display: block;
  margin: 0.38rem 0;
  color: var(--stone-600);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color var(--transition-base);
}
.site-shell-footer-col a.social-link {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}
.site-shell-footer-col a.social-link svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--stone-500);
}
.site-shell-footer-col a.social-link:hover svg { color: var(--teal-700); }
.site-shell-footer-col a:hover { color: var(--teal-700); }
.site-shell-footer-copy {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  border-top: 1px solid var(--stone-200);
  padding-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--stone-500);
}
.site-shell-footer-logos {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.4rem;
}
.site-shell-footer-logos a {
  display: inline-flex;
  border-radius: 10px;
  text-decoration: none;
}
.site-shell-footer-logos img {
  width: 92px;
  height: 118px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  transition: box-shadow var(--transition-base);
}
.site-shell-footer-logos a:hover img { box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12); }

/* ── 22. Shell: Page Defaults (template pages) ── */
.page-shell-main { max-width: 1020px; margin: 0 auto; padding: 0 1.25rem; }
.page-shell-hero {
  margin-top: 1.4rem;
  border-radius: 20px;
  padding: 2.2rem 1.4rem;
  background: linear-gradient(135deg, var(--warm-50) 0%, var(--teal-50) 70%, var(--warm-100) 100%);
  border: 1px solid var(--stone-200);
}
.page-shell-label {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: var(--tracking-lg);
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.page-shell-hero h1 { margin: 0 0 0.8rem; color: var(--stone-900); line-height: 1.2; font-size: clamp(1.85rem, 4vw, 2.75rem); }
.page-shell-hero p { margin: 0; max-width: 72ch; color: var(--stone-600); }
.page-shell-section {
  margin-top: 1.3rem;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  padding: 1.25rem;
}
.page-shell-section h2 { margin: 0 0 0.65rem; color: var(--stone-900); font-size: clamp(1.25rem, 2.8vw, 1.7rem); }
.page-shell-section p { color: var(--stone-600); }
.page-shell-bullets { margin: 0.65rem 0 0; padding-left: 1.15rem; }
.page-shell-bullets li { margin: 0.35rem 0; color: var(--stone-600); }
.page-shell-cta-row { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.page-shell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1.2rem;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.page-shell-btn-primary { background: var(--teal-700); color: white; }
.page-shell-btn-primary:hover { background: var(--teal-800); }
.page-shell-btn-secondary { background: white; color: var(--teal-700); border-color: var(--stone-300); }
.page-shell-btn-secondary:hover { border-color: var(--teal-600); color: var(--teal-800); }

/* ── 23. Scroll-to-Top ── */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--teal-700);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base), background var(--transition-base);
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--teal-800); }

/* ── 24. Micro-interactions ── */
.home-trust-band {
  background:
    radial-gradient(circle at top center, rgba(20, 184, 166, 0.09), transparent 52%),
    linear-gradient(180deg, rgba(239, 245, 244, 0.98) 0%, rgba(233, 240, 239, 0.98) 100%);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(214, 211, 209, 0.35);
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.9rem;
  max-width: 980px;
  margin: 0 auto;
}
.home-trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.9rem;
  align-items: center;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(20, 184, 166, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}
.home-trust-card__icon {
  grid-row: 1 / span 3;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.75), transparent 62%),
    linear-gradient(135deg, rgba(204, 251, 241, 0.95) 0%, rgba(240, 253, 250, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(20, 184, 166, 0.12),
    0 8px 18px rgba(20, 184, 166, 0.12);
}
.home-trust-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}
.home-trust-card__eyebrow {
  grid-column: 2;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-lg);
  text-transform: uppercase;
  color: var(--stone-500);
}
.home-trust-card strong {
  grid-column: 2;
  display: block;
  color: var(--stone-900);
  font-size: 1rem;
  line-height: 1.25;
}
.home-trust-card span {
  grid-column: 2;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--stone-600);
}
.home-trust-card:hover {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(20, 184, 166, 0.18);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.pricing-item {
  transition: background var(--transition-base);
  padding: 1.5rem 1rem;
  border-radius: 12px;
}
.pricing-item:hover {
  background: var(--teal-50);
}
.booking-trust svg {
  width: 20px;
  height: 20px;
  color: var(--teal-600);
}

@media (max-width: 900px) {
  .home-service-grid { grid-template-columns: 1fr 1fr; }
  .home-trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .home-service-grid { grid-template-columns: 1fr; }
  .home-trust-grid { grid-template-columns: 1fr; }
  .deferred-video { border-radius: 24px; }
  .deferred-video__play {
    width: 4.4rem;
    height: 4.4rem;
    margin: -2.2rem 0 0 -2.2rem;
  }
  .deferred-video__play svg {
    width: 1.7rem;
    height: 1.7rem;
  }
  .deferred-video__label {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    text-align: center;
  }
  .article-prose {
    padding: 1.15rem;
    border-radius: 22px;
  }
  .article-prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .article-question-list li {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .article-question-number {
    width: 1.85rem;
    height: 1.85rem;
  }
  .article-prose .hero-ctas {
    padding-top: 1rem;
  }
}

/* ── 25. Utility Classes ── */
.text-teal { color: var(--teal-700); }
.text-muted { color: var(--stone-600); font-size: 0.9rem; }
.text-muted-sm { color: var(--stone-500); font-size: 0.85rem; }
.text-intro { font-size: 1.1rem; color: var(--stone-600); max-width: 65ch; }
.text-lead { font-size: 1.15rem; color: var(--stone-600); }
.section--white { background: white; }
.divider-top { border-top: 1px solid var(--stone-200); }
.narrow-center { max-width: 760px; margin-left: auto; margin-right: auto; }
.detail-intro { font-size: 0.95rem; color: var(--stone-600); margin-bottom: 1rem; }
/* Event card readability */
.card .info-chips { margin: 0.5rem 0 0.75rem; }
.card p + .card-link { margin-top: 1rem; }
.card-related { margin-top: 1rem; font-size: 0.88rem; color: var(--stone-500); padding-top: 0.75rem; border-top: 1px solid var(--stone-100); }
.card-related a { color: var(--teal-700); text-decoration: none; }
.card-related a:hover { color: var(--teal-900); }

/* ── 26. Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered card animations */
.card-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.card-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.card-grid .reveal:nth-child(4) { transition-delay: 240ms; }
.card-grid .reveal:nth-child(5) { transition-delay: 320ms; }
.card-grid .reveal:nth-child(6) { transition-delay: 400ms; }
.testimonial-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: 200ms; }
.link-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.link-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.link-grid .reveal:nth-child(4) { transition-delay: 240ms; }
.link-grid .reveal:nth-child(5) { transition-delay: 320ms; }
.link-grid .reveal:nth-child(6) { transition-delay: 400ms; }

/* ── 27. Utility Spacing ── */
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ── 28. Reusable Page Patterns (extracted from page <style> blocks) ── */
/* Topic card grid (sexualberatung, polyamorie) */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
.topic-card {
  background: white;
  padding: 1.75rem;
  border-radius: 16px;
  border-left: 4px solid var(--teal-500);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}
.topic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.topic-card h3 { font-size: 1.1rem; margin-bottom: var(--space-xs); color: var(--teal-800); }
.topic-card p { font-size: 0.9rem; color: var(--stone-600); }
.topic-card--warm { background: var(--warm-50); }

/* Safe space split (sexualberatung, supervision) */
.safe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.safe-text p { color: var(--stone-600); margin-bottom: var(--space-md); }
.safe-visual {
  background: linear-gradient(135deg, var(--teal-50), var(--warm-100));
  border-radius: 24px;
  padding: 2.25rem;
}
.safe-visual h3 { color: var(--teal-700); font-size: 1.2rem; margin-bottom: var(--space-md); }
.safe-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-sm); }
.safe-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--stone-600);
}
.safe-list li::before { content: '\2713'; color: var(--teal-500); font-weight: bold; flex-shrink: 0; }

/* KAPA / Expert section (dark background variant) */
.kapa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.kapa-grid--single { grid-template-columns: minmax(0, 760px); justify-content: center; margin-bottom: 3rem; }

/* Not-list (polyminglevienna) */
.not-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-sm); margin: 0; padding: 0; }
.not-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--stone-600);
}
.not-list li::before { content: '\2717'; color: var(--stone-400); font-weight: bold; flex-shrink: 0; }

@media (max-width: 900px) {
  .safe-grid, .kapa-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .topic-grid { grid-template-columns: 1fr; }
}

/* ── 29. Responsive ── */
@media (max-width: 1080px) {
  .site-shell-footer-inner { grid-template-columns: 1fr 1fr; }
  .site-shell-footer-logos { justify-content: center; }
}

@media (max-width: 920px) {
  body { padding-top: 72px; }
  .site-shell-nav { flex-wrap: wrap; }
  .site-shell-menu-toggle { display: inline-flex; }
  .site-shell-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-top: 0.35rem;
  }
  .site-shell-header.is-open .site-shell-links { display: flex; }
  .site-shell-dropdown { position: static; }
  .site-shell-dropdown-panel { position: static; margin-top: 0.35rem; min-width: unset; box-shadow: none; transform: none; left: auto; }
  .site-shell-cta { margin-left: 0; width: 100%; }
  .site-shell-links a.is-active::after { display: none; }
}

@media (max-width: 900px) {
  .split-grid,
  .split-grid--wide,
  .split-grid--reverse { grid-template-columns: 1fr; }
  .hero--editorial .container { grid-template-columns: 1fr; text-align: center; }
  .hero--editorial .hero-content { max-width: 100%; }
  .hero--editorial .hero-ctas { justify-content: center; }
  .hero--editorial .trust-row { justify-content: center; }
  .hero--editorial .hero-image { margin-top: 2rem; }
  .hero--editorial .hero-image-wrapper { width: 200px; height: 240px; border-radius: 100px 100px 20px 20px; }
}

@media (max-width: 700px) {
  .site-shell-footer-inner { grid-template-columns: 1fr; }
  .page-shell-main { padding: 0 1rem; }
  .page-shell-hero { padding: 1.6rem 1rem; }
  .page-shell-section { padding: 1rem; }
}

@media (max-width: 600px) {
  section { padding: 3rem 0; }
  .hero { min-height: 52vh; padding: 2rem 0; }
  .hero--compact { padding: 1.5rem 0; }
  .container { padding: 0 1rem; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); word-wrap: break-word; overflow-wrap: break-word; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; max-width: 320px; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid--two-up { max-width: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-row { flex-direction: column; gap: 1rem; }
  .page-prose { padding: 0 1rem; }
}

/* ── 30. Additional Utility Classes (inline-style migration) ── */
.btn--full { width: 100%; justify-content: center; }
.hero-ctas--spaced { margin-top: var(--space-lg); }
.section--gradient-soft { background: linear-gradient(180deg, var(--teal-50) 0%, var(--warm-50) 100%); }
.highlight-box--warm { background: white; border-left-color: var(--warm-200); }
.highlight-box--notice { margin-top: var(--space-lg); background: var(--warm-100); border-left-color: var(--warm-200); }
.text-detail { font-size: 0.95rem; color: var(--stone-600); }
.text-detail-sm { font-size: 0.9rem; color: var(--stone-500); font-style: italic; }
.text-language-switch { margin-top: var(--space-md); font-size: 0.95rem; color: var(--stone-500); }
.card--centered-wide { max-width: 650px; margin: 0 auto; text-align: center; border-left: none; padding: 2.5rem; }
.info-card--narrow { max-width: 760px; margin: 0 auto; }
.badge--archive { background: var(--stone-100); color: var(--stone-600); }
.sub-heading { margin-top: var(--space-lg); margin-bottom: var(--space-sm); color: var(--teal-700); }
.sub-heading--spaced { margin-top: var(--space-xl); margin-bottom: var(--space-sm); color: var(--teal-700); }
.dark-card h4.sub-label,
.sub-label { margin-top: var(--space-lg); font-size: 0.95rem; color: var(--teal-700); font-family: var(--font-sans); font-weight: 600; }
.not-list li span.x-mark { color: #e11d48; font-weight: bold; flex-shrink: 0; }
.text-center-block { text-align: center; margin-top: var(--space-xl); }
.text-center-block p { color: var(--stone-600); max-width: 55ch; margin: 0 auto var(--space-lg); }
.text-center-block .hero-ctas {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.text-center-block .btn-secondary {
  box-sizing: border-box;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  background-clip: padding-box;
}
.source-note { font-size: 0.8rem; color: var(--stone-500); margin-top: 2rem; }
.speed-signup-layout {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
}
.speed-signup-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.speed-signup-intro h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.speed-signup-intro p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.speed-signup-intro .check-list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.speed-signup-layout .signup-card {
  width: min(100%, 760px);
  justify-self: center;
}
.signup-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, var(--teal-50) 100%);
}
.signup-card h3 {
  margin-bottom: 0.35rem;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.form-label {
  display: block;
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--stone-700);
}
.signup-status-note {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--stone-700);
}
.signup-status-note strong {
  color: var(--teal-800);
  font-size: 0.95rem;
}
.signup-status-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.signup-status-note a {
  color: var(--teal-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.ticket-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}
.ticket-option {
  position: relative;
  display: block;
  cursor: pointer;
}
.ticket-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
}
.ticket-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-800);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}
.ticket-option input:checked + span {
  border-color: var(--teal-500);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.98) 0%, rgba(20, 184, 166, 0.92) 100%);
  color: white;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.18);
}
.ticket-option:hover span,
.ticket-option input:focus-visible + span {
  border-color: var(--teal-500);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.14);
  transform: translateY(-1px);
}
.checkbox-row input:focus-visible {
  outline: 2px solid rgba(13, 148, 136, 0.45);
  outline-offset: 2px;
}
.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 184, 166, 0.14);
}
.checkbox-row input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--teal-600);
}
.checkbox-row label {
  font-size: 0.92rem;
  color: var(--stone-700);
  line-height: 1.55;
}
.checkbox-row a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
}
.signup-note,
.signup-error {
  margin: 0;
  font-size: 0.9rem;
}
.signup-note {
  color: var(--stone-500);
}
.signup-error {
  color: #b91c1c;
  min-height: 1.25rem;
}
.signup-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}
.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.link-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 184, 166, 0.12);
}
.link-list a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: none;
}
.link-list a:hover,
.link-list a:focus-visible {
  text-decoration: underline;
}
.link-list .link-status {
  font-size: 0.85rem;
  color: var(--stone-500);
  text-align: right;
}
.detail-row--stacked {
  flex-direction: column;
  gap: 0.35rem;
}
.detail-row--stacked .label {
  min-width: 0;
}
@media (max-width: 720px) {
  .ticket-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .speed-signup-intro h2 {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .text-center-block .hero-ctas {
    align-items: center;
  }
}
