/* ============================================================
   Li&Li Akupresura — Shared Stylesheet
   Palette: warm cream / dusty rose / deep wine
   Typography: Plus Jakarta Sans (headings) + Source Sans 3 (body/UI)
   ============================================================ */

/* 1. CSS Variables */
:root {
  /* Palette */
  --bg:             #faf5f0;
  --surface:        #ffffff;
  --surface-warm:   #fdf1eb;
  --surface-deep:   #f7ede4;
  --text:           #221512;
  --text-2:         #6a4f47;
  --text-3:         #7a5850; /* darkened from #9c857c for WCAG AA contrast (~5.8:1 on --bg) */
  --accent:         #b85450;
  --accent-hover:   #9a3d3b;
  --accent-light:   #d4888a;
  --accent-pale:    #f5e0db;
  --accent-faint:   #fdf3f1;
  --peach:          #f7c4b2;
  --border:         #e6d8d3;
  --border-light:   #f0e4e0;
  --shadow-sm:      0 2px 8px rgba(34, 21, 18, 0.06);
  --shadow:         0 4px 20px rgba(34, 21, 18, 0.08);
  --shadow-lg:      0 8px 40px rgba(34, 21, 18, 0.12);
  --shadow-accent:  0 4px 24px rgba(184, 84, 80, 0.18);

  /* Typography */
  --font-serif:  'Plus Jakarta Sans', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  --font-sans:   'Source Sans 3', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;

  /* Sizes */
  --max-w:       1180px;
  --header-h:    72px;
  --radius-sm:   10px;
  --radius:      20px;
  --radius-lg:   32px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 3. Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  min-height: 44px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px var(--accent-pale);
}

/* 4. Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: 0;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 600; }
h5 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }

p { margin-bottom: 0; }

strong { font-weight: 600; }

.kicker {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.15;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 56ch;
}

/* 5. Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.section {
  padding-block: clamp(72px, 10vw, 128px);
}

.section--sm {
  padding-block: clamp(48px, 6vw, 80px);
}

.section--warm {
  background-color: var(--surface-warm);
}

.section--deep {
  background-color: var(--surface-deep);
}

.section--white {
  background-color: var(--surface);
}

.section--dark {
  background-color: var(--text);
  color: var(--bg);
}

.section--dark .section-title,
.section--dark h2,
.section--dark h3 {
  color: var(--bg);
}

.section--dark .section-subtitle,
.section--dark p {
  color: rgba(250, 245, 240, 0.75);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

/* Section header */
.section-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-inline: auto;
}

/* 6. Buttons */
.btn-primary,
.btn-ghost,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.22s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(150deg, var(--accent), var(--accent-hover));
  color: #fff;
  border: 2px solid transparent;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(184, 84, 80, 0.28);
}

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

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--accent-faint);
  transform: translateY(-1px);
}

.btn-soft {
  background: var(--accent-pale);
  color: var(--accent-hover);
  border: 2px solid transparent;
}

.btn-soft:hover,
.btn-soft:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 12px 20px; /* raised from 10px to meet 44px touch target */
  font-size: 0.9375rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 7. Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.header-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
}

.header-logo-text em {
  font-style: normal;
  color: var(--accent);
}

.header-nav {
  flex: 1;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav a {
  display: block;
  padding: 6px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--accent);
  background: var(--accent-faint);
}

.header-nav a.active {
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s var(--ease);
}

.nav-toggle:hover {
  background: var(--accent-faint);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(250, 245, 240, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px clamp(20px, 5vw, 40px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  pointer-events: none;
  z-index: 99;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav li a {
  display: block;
  padding: 14px 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 12px;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
  background: var(--accent-faint);
  color: var(--accent);
}

.mobile-nav .mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.mobile-nav .mobile-nav-actions a {
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 500;
}

/* Body scroll lock */
body.nav-open {
  overflow: hidden;
}

/* 8. Site Footer */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding-block: clamp(56px, 8vw, 96px);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(250, 245, 240, 0.95);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(250, 245, 240, 0.55);
  line-height: 1.5;
  max-width: 30ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 245, 240, 0.55);
  margin-bottom: 6px;
}

.footer-nav a {
  font-size: 1rem;
  color: rgba(250, 245, 240, 0.65);
  transition: color 0.18s var(--ease);
}

.footer-nav a:hover {
  color: rgba(250, 245, 240, 0.95);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 245, 240, 0.55);
  margin-bottom: 6px;
}

.footer-contact a,
.footer-contact p {
  font-size: 1rem;
  color: rgba(250, 245, 240, 0.65);
  line-height: 1.5;
  transition: color 0.18s var(--ease);
}

.footer-contact a:hover {
  color: rgba(250, 245, 240, 0.95);
}

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(250, 245, 240, 0.1);
}

.footer-legal {
  font-size: 0.9375rem;
  color: rgba(250, 245, 240, 0.45);
  line-height: 1.6;
  max-width: 70ch;
}

/* 9. Sticky Mobile Bar */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(250, 245, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
}

.sticky-bar .btn-primary,
.sticky-bar .btn-ghost {
  flex: 1;
  justify-content: center;
  padding: 13px 16px;
  font-size: 0.9375rem;
}

/* 10. Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 80px) 0;
  background-color: var(--bg);
}

/* Decorative orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
  opacity: 0.35;
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(circle, var(--accent-pale) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block-end: clamp(32px, 4vw, 48px);
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 36px;
  /* max-width: 52ch; */
  max-width: 520–560px;
}

.hero-disclaimer {
  margin-top: 20px;
  font-size: 0.9375rem;
  color: var(--text-3);
  font-style: italic;
}

/* Hero aside */
.hero-aside {
  display: block;
  flex-shrink: 0;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  min-width: 130px;
}

.trust-badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-badge-label {
  font-size: 0.9375rem;
  color: var(--text-2);
  font-weight: 400;
}

.trust-badge-sub {
  display: block;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--text-2);
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Trust badges inline (for non-hero use) */
.trust-badges-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.trust-badge-inline {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.trust-badge-inline .number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.trust-badge-inline .label {
  font-size: 1rem;
  color: var(--text-2);
}

/* 11. Card Components */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-label {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* 12. Service Cards */
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-tag {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card-subtitle {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.55;
}

.service-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.service-card-price-amount {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-card-price-unit {
  font-size: 1rem;
  color: var(--text-3);
}

.service-card-price-alt {
  font-size: 1rem;
  color: var(--text-3);
  font-style: italic;
  margin-top: 6px;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card-features li {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.5;
}

.service-card-features li::before {
  content: '—';
  color: var(--accent-light);
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.service-card .btn-primary,
.service-card .btn-ghost {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* 13. Process Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-pale), var(--accent-light), var(--accent-pale));
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(12px, 3vw, 28px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 2px solid var(--accent-pale);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.step-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 10px;
}

.step-outcome {
  font-size: 0.9375rem;
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-serif);
}

/* 14. Testimonial Cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-grid--masonry {
  display: block;
  columns: 2;
  column-gap: 20px;
}

.testimonial-grid--masonry .testimonial-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--accent-pale);
  line-height: 1;
  pointer-events: none;
}

.testimonial-context {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding-top: 24px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.testimonial-grid:not(.testimonial-grid--masonry) .testimonial-card .testimonial-text:first-child {
  padding-top: 24px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.testimonial-author::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 1px;
}

/* 15. FAQ Accordion */
.faq-group {
  margin-bottom: 40px;
}

.faq-group-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-pale);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.18s var(--ease);
  background: none;
  border: none;
  text-align: left;
  width: 100%;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-faint);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), transform 0.3s var(--ease);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--accent-pale);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-body {
  padding-bottom: 20px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.72;
}

.faq-answer-body p + p {
  margin-top: 12px;
}

.faq-answer-body ol,
.faq-answer-body ul {
  padding-left: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer-body ol {
  counter-reset: faq-ol;
  list-style: none;
}

.faq-answer-body ol li {
  counter-increment: faq-ol;
  display: flex;
  gap: 10px;
}

.faq-answer-body ol li::before {
  content: counter(faq-ol) '.';
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-answer-body ul li {
  display: flex;
  gap: 8px;
}

.faq-answer-body ul li::before {
  content: '—';
  color: var(--accent-light);
  flex-shrink: 0;
}

/* FAQ hidden by search */
.faq-item.hidden {
  display: none;
}

/* 16. Qualifier Section (Je to pro vás?) */
.qualifier {
  background: var(--surface-warm);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
}

.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

.qualifier-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.qualifier-col-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.qualifier-col--yes .qualifier-col-title {
  color: #5a8a4a;
}

.qualifier-col--no .qualifier-col-title {
  color: var(--text-3);
}

.qualifier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qualifier-list li {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
}

.qualifier-col--yes li::before {
  content: '✓';
  font-size: 0.875rem;
  color: #5a8a4a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.qualifier-col--no li::before {
  content: '×';
  font-size: 1rem;
  color: var(--text-3);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1.4;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pillar-item {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pillar-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-pale);
  line-height: 1;
  margin-bottom: 12px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pillar-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Pillar item expanded (for o-mne page) */
.pillar-item--expanded {
  padding: clamp(24px, 3.5vw, 40px);
}

.pillar-item--expanded .pillar-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.pillar-meta-row {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
}

.pillar-meta-row strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

/* 18. Conditions / Tags */
.conditions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.condition-tag {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 1rem;
  color: var(--text-2);
  transition: all 0.2s var(--ease);
}

.condition-tag:hover {
  background: var(--accent-pale);
  border-color: var(--accent-light);
  color: var(--accent-hover);
}

/* 19. Philosophy Cards */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.philosophy-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-sm);
}

.philosophy-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.philosophy-card-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* 20. CTA Section */
.cta-section {
  background: var(--text);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: var(--bg);
  margin-bottom: 16px;
}

.cta-section .section-subtitle {
  color: rgba(250, 245, 240, 0.65);
  margin-bottom: 40px;
  margin-inline: auto;
}

.cta-section .btn-ghost {
  color: rgba(250, 245, 240, 0.9);
  border-color: rgba(250, 245, 240, 0.35);
}

.cta-section .btn-ghost:hover {
  background: rgba(250, 245, 240, 0.1);
  color: var(--bg);
  border-color: rgba(250, 245, 240, 0.6);
}

.cta-quick-contact {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 245, 240, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.cta-quick-contact a,
.cta-quick-contact p {
  font-size: 1rem;
  color: rgba(250, 245, 240, 0.55);
}

.cta-quick-contact a:hover {
  color: rgba(250, 245, 240, 0.9);
}

.cta-quick-contact .separator {
  color: rgba(250, 245, 240, 0.2);
}

/* 21. Bio Section */
.bio-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.bio-content .kicker {
  display: block;
  margin-bottom: 12px;
}

.bio-content h2 {
  margin-bottom: 20px;
}

.bio-content p {
  color: var(--text-2);
  margin-bottom: 28px;
}

/* 22. Video Grid & Social Links */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-warm);
  box-shadow: var(--shadow-sm);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 9 / 16;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--accent);
  background: var(--accent-pale);
  color: var(--accent);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Footer social */
.footer-social-title {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 12px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(250,245,240,0.2);
  color: rgba(250,245,240,0.55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social-links a:hover {
  border-color: var(--peach);
  color: var(--peach);
}

.footer-social-links svg {
  width: 15px;
  height: 15px;
}

/* 23. FAQ Page Specific */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.faq-cat-pill:hover,
.faq-cat-pill.active {
  background: var(--accent-pale);
  border-color: var(--accent-light);
  color: var(--accent-hover);
}

.faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin-bottom: 24px;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
}

.faq-search-input:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.faq-search-input::placeholder {
  color: var(--text-3);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--text-3);
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}

.faq-tools {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.faq-tool-btn {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s var(--ease);
}

.faq-tool-btn:hover {
  color: var(--accent-hover);
}

.faq-no-results {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--text-3);
  font-style: italic;
}

.faq-no-results.visible {
  display: block;
}

/* 24. Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.75;
  fill: none;
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-card-detail {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
  transition: color 0.18s var(--ease);
}

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

.contact-card-note {
  font-size: 1rem;
  color: var(--text-3);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

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

@media (max-width: 600px) {
  .map-wrapper iframe { height: 300px; }
}

.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--surface-deep);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 1rem;
}

/* 25. Scroll-reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal--left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.reveal-stagger > * { --stagger: 0; }
.reveal-stagger > *:nth-child(1) { transition-delay: calc(var(--stagger) * 0ms); }
.reveal-stagger > *:nth-child(2) { transition-delay: calc(var(--stagger) * 1 * 80ms); }
.reveal-stagger > *:nth-child(3) { transition-delay: calc(var(--stagger) * 2 * 80ms); }
.reveal-stagger > *:nth-child(4) { transition-delay: calc(var(--stagger) * 3 * 80ms); }
.reveal-stagger > *:nth-child(5) { transition-delay: calc(var(--stagger) * 4 * 80ms); }

/* 26. Page-specific Overrides */

/* Homepage */
.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

/* Reviews page hero */
.reviews-hero .trust-badges-inline {
  justify-content: center;
}

/* Booking / Rezervace page */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.booking-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-steps li {
  display: flex;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
}

.booking-steps li::before {
  content: counter(booking-step);
  counter-increment: booking-step;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--accent-pale);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-options .service-card {
  counter-reset: booking-step;
}

/* Transparency note box */
.note-box {
  background: var(--accent-faint);
  border: 1px solid var(--accent-pale);
  border-left: 3px solid var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
}

.note-box strong {
  display: block;
  color: var(--accent);
  margin-bottom: 6px;
}

/* 27. Responsive Breakpoints */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  /* Header */
  .header-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
  }

  /* Sticky bar */
  .sticky-bar {
    display: flex;
  }

  /* Adjust bottom padding for sticky bar */
  body {
    padding-bottom: 76px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    max-width: 280px;
    margin-inline: auto;
  }

  .trust-badge {
    min-width: unset;
    flex-direction: row;
    padding: 12px 18px;
    gap: 8px;
  }

  .trust-badge-number {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .trust-badge-sub {
    display: none;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .qualifier-grid,
  .philosophy-grid,
  .contact-grid,
  .booking-options {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid--masonry {
    columns: 1;
  }

  .qualifier-grid::before {
    display: none;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .step {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }

  .step-number {
    min-width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .step-content {
    flex: 1;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Bio */
  .bio-section {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: unset;
  }

  /* Qualifier */
  .qualifier {
    padding: clamp(24px, 5vw, 36px);
  }

  /* CTA section */
  .cta-section .btn-group {
    flex-direction: column;
  }

  .cta-section .btn-primary,
  .cta-section .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Home intro */
  .home-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges-inline {
    flex-direction: column;
    gap: 12px;
  }

  .faq-tools {
    flex-wrap: wrap;
  }
}

/* === HOME REDESIGN — New component styles === */

/* --- Hero: Kicker decorative line --- */
.hero-kicker-line {
  width: 36px;
  height: 1px;
  background: var(--accent-pale);
  margin: 14px 0 22px;
}

/* --- Hero: Photo Placeholder --- */
.hero-photo-placeholder {
  aspect-ratio: 3 / 4;
  background: radial-gradient(ellipse at 35% 25%, var(--peach) 0%, var(--surface-warm) 45%, var(--accent-pale) 100%);
  border-radius: 28px;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(184, 84, 80, 0.1);
}

.hero-photo-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-3);
  position: relative;
  z-index: 1;
}

/* --- Hero: Photo --- */
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border-radius: 28px;
  background: var(--accent-pale);
  z-index: -1;
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, rgba(250, 245, 240, 0.2), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* --- Hero: Trust Strip --- */
.hero-trust-strip {
  padding: 32px 0;
  background: transparent;
}

.hero-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(28px, 5vw, 60px);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-size: 0.9375rem;
  color: var(--text-3);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* --- Steps: Icon above number --- */
.step-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Step outcome pill badge */
.step-outcome-badge {
  display: inline-block;
  font-size: 1rem;
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--accent-faint);
  border-radius: 100px;
  padding: 4px 14px;
  margin-top: 12px;
}

/* --- Service Cards: Header row with icon + tag + badge --- */
.service-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.service-card-header .service-card-tag {
  margin-bottom: 0;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-pale);
  color: var(--accent);
  flex-shrink: 0;
}

.service-card-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
}

/* --- Testimonials: Star rating row --- */
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  margin-bottom: 14px;
}

/* --- Bio Redesigned: Pull-quote + text layout --- */
.bio-redesigned {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.bio-pull-quote {
  border-left: 3px solid var(--accent-pale);
  padding-left: clamp(24px, 3vw, 40px);
}

.bio-pull-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.45;
  quotes: none;
}

.bio-text-col .kicker {
  display: block;
  margin-bottom: 10px;
}

.bio-mini-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.bio-mini-stat {
  display: flex;
  flex-direction: column;
}

.bio-mini-stat-number {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 3px;
}

.bio-mini-stat-label {
  font-size: 0.9375rem;
  color: var(--text-3);
}

.bio-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.18s var(--ease);
}

.bio-link:hover {
  opacity: 0.7;
}

/* --- Qualifier: Two independent panels --- */
.qualifier-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.qualifier-panel {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}

.qualifier-panel--yes {
  background: var(--accent-faint);
  border: 1px solid var(--accent-pale);
}

.qualifier-panel--no {
  background: #f7f4f4;
  border: 1px solid var(--border-light);
}

.qualifier-panel-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.qualifier-panel--yes .qualifier-panel-title {
  color: #4a7a3a;
}

.qualifier-panel--no .qualifier-panel-title {
  color: var(--text-3);
}

.qualifier-panel .qualifier-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qualifier-panel .qualifier-list li {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
}

.qualifier-panel--yes .qualifier-list li::before {
  content: '✓';
  font-size: 0.875rem;
  color: #5a8a4a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.qualifier-panel--no .qualifier-list li::before {
  content: '×';
  font-size: 1rem;
  color: var(--text-3);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1.4;
}

/* --- Pillars: Icon above number --- */
.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--accent-faint);
  border-radius: 13px;
  color: var(--accent);
  margin-bottom: 10px;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

/* Make pillar number more decorative (lighter) when icon is present */
.pillar-item .pillar-number {
  opacity: 0.1;
  margin-bottom: 4px;
}

/* Pillar cards inside white sections: warm background for contrast */
.section--white .pillar-item {
  background: var(--surface-warm);
  border-color: var(--border);
}

/* Icon background: stronger rose-pale so it pops on warm card */
.section--white .pillar-icon {
  background: var(--accent-pale);
}

/* --- Video Placeholder: styled empty state --- */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(150deg, var(--surface-warm) 0%, var(--accent-pale) 100%);
  color: var(--accent);
}

.video-placeholder p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-3);
}

/* === HOME REDESIGN — Responsive overrides === */

@media (max-width: 767px) {
  /* Trust strip: tighter stat padding */
  .hero-stat {
    padding: 0 clamp(14px, 3.5vw, 28px);
  }

  .hero-stat-divider {
    height: 28px;
  }

  /* Steps: hide icon on mobile (row layout has step-number circle) */
  .step-icon {
    display: none;
  }

  /* Bio: stack vertically */
  .bio-redesigned {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-pull-quote {
    border-left: none;
    border-top: 3px solid var(--accent-pale);
    padding-left: 0;
    padding-top: 24px;
  }

  /* Qualifier panels: stack */
  .qualifier-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Trust strip: stack on very small screens */
  .hero-trust-inner {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    width: 100%;
    padding: 0;
  }
}

/* 28. Reduced Motion */
@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;
  }

  .reveal,
  .reveal--left,
  .reveal--scale {
    opacity: 1;
    transform: none;
  }
}
