/* ============================================
   LÍA CATSITTER — Design System & Styles
   Cuidadora Profesional de Mascotas · Dos Hermanas, Sevilla
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-bg:           #FCFAF7;
  --color-bg-alt:       #F4F0EB;
  --color-bg-card:      #FFFFFF;
  /* Brand palette: plum, sage and gold. All other tones are neutrals or tints. */
  --color-accent:       #718A74;
  --color-accent-dark:  #4F6C54;
  --color-accent-light: #E7EEE8;
  --color-warm:         #C49A52;
  --color-warm-dark:    #956F32;
  --color-warm-light:   #F5EEDF;
  --color-plum:         #4A2D53;
  --color-plum-dark:    #33203B;
  --color-plum-light:   #EFE8F0;
  --color-plum-btn:     #4A2D53;
  --color-plum-btn-hover:#33203B;
  --color-lavender:     #4A2D53;
  --color-lavender-light:#EFE8F0;
  --color-text:         #302831;
  --color-text-soft:    #655D65;
  --color-text-muted:   #928B92;
  --color-border:       #E6E0D8;
  --color-border-hover: #CFC6CE;
  --color-white:        #FFFFFF;
  --color-overlay:      rgba(35, 30, 26, 0.65);
  --color-star:         #C49A52;

  /* Typography */
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:   'DM Serif Display', Georgia, serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Sizing */
  --max-width:  1200px;
  --header-h:   72px;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 6px rgba(43,39,36,.05), 0 1px 2px rgba(43,39,36,.03);
  --shadow-md:   0 6px 18px rgba(43,39,36,.07), 0 2px 6px rgba(43,39,36,.04);
  --shadow-lg:   0 14px 36px rgba(43,39,36,.10), 0 4px 10px rgba(43,39,36,.05);
  --shadow-xl:   0 22px 52px rgba(43,39,36,.14), 0 8px 18px rgba(43,39,36,.06);

  /* Transitions */
  --ease:        cubic-bezier(.35, 0, .15, 1);
  --duration:    280ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--color-accent-dark); }

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

ul, ol { list-style: none; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--color-text-soft);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
  max-width: 620px;
  line-height: 1.65;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(113,138,116,.35);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(113,138,116,.45);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-accent-dark);
  border: 2px solid var(--color-accent);
}
.btn--secondary:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}

.btn--plum {
  background: var(--color-plum-btn);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(74,45,83,.32);
  font-weight: 700;
}
.btn--plum:hover {
  background: var(--color-plum-btn-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--warm {
  background: var(--color-warm);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(196,154,82,.35);
}
.btn--warm:hover {
  background: var(--color-warm-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn [data-lucide],
.header__nav [data-lucide],
.sticky-contact-bar [data-lucide],
.whatsapp-fab [data-lucide] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(252,250,247,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--duration) var(--ease);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
}
.header__logo-name {
  line-height: 1.1;
  font-weight: 700;
}
.header__logo-sub {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav a {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: width var(--duration) var(--ease);
}
.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--color-accent);
}

.header__cta {
  padding: 9px 20px;
  font-size: 0.86rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  z-index: 1001;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--header-h) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero__greeting {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero__name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__role {
  font-size: 1.12rem;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  font-size: 0.95rem;
  color: var(--color-text-soft);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.hero__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-sm);
  background: var(--color-accent-light);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  width: fit-content;
  max-width: 100%;
}
.hero__price-amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-accent-dark);
}
.hero__price-unit {
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-soft);
  transition: all var(--duration) var(--ease);
}
.badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}
.badge--accent {
  background: var(--color-lavender-light);
  border-color: transparent;
  color: var(--color-lavender);
}
.badge--accent svg { color: var(--color-lavender); }

.badge--warm {
  background: var(--color-warm-light);
  border-color: transparent;
  color: var(--color-warm-dark);
}
.badge--warm svg { color: var(--color-warm-dark); }

.languages {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.language-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--color-warm-light);
  border: 1px solid rgba(196,154,82,.2);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-warm-dark);
}
.language-tag .flag-svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xs);
}

.hero__photo-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero__photo-wrap::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 10px);
  border: 2px dashed var(--color-accent);
  opacity: .25;
  pointer-events: none;
}

/* ---------- Reference Profile Card Layout (Sobre Mí) ---------- */
.about-split {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  position: relative;
}

/* The Reference Profile Card with Plum Top Banner */
.profile-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow var(--duration) var(--ease);
  z-index: 10;
}
.profile-card:hover {
  box-shadow: var(--shadow-xl);
}

/* State when hiding before gallery */
.profile-card.card--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Card Header Banner */
.profile-card__header {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  z-index: 2;
  background: var(--color-plum);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 8px 16px rgba(51,32,59,.12);
}

.profile-card__avatar-img {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.profile-card__header-info {
  display: flex;
  flex-direction: column;
}

.profile-card__header-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 2px;
}

.profile-card__header-loc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}

.profile-card__header-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-warm-light);
  margin-top: 4px;
}

/* Card Body */
.profile-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.profile-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.profile-card__label {
  font-weight: 700;
  color: var(--color-plum);
  font-size: 0.92rem;
}

.profile-card__flags {
  display: flex;
  gap: 8px;
  align-items: center;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  background: var(--color-white);
}

.flag-img {
  width: 28px;
  height: 19px;
  object-fit: cover;
  display: block;
}

.flag-svg {
  width: 28px;
  height: 19px;
  display: block;
}

.profile-card__extras-icons {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.extra-badge {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-plum);
  transition: transform var(--duration) var(--ease);
}
.extra-badge:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}
.extra-badge svg {
  width: 20px;
  height: 20px;
}
.extra-badge [data-lucide] {
  width: 20px;
  height: 20px;
}

.profile-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: var(--space-xs) 0;
}

.profile-card__training {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-card__training-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-plum);
  font-weight: 700;
}

.profile-card__training-text {
  font-size: 0.84rem;
  color: var(--color-text-soft);
  line-height: 1.55;
}

.profile-card__cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 8px 12px;
  background: var(--color-plum-light);
  border-radius: var(--radius-md);
  margin-top: 4px;
}

.profile-card__cert-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-plum);
}

.profile-card__cert-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-plum-dark);
}
.profile-card__cert-seal svg {
  width: 24px;
  height: 24px;
  color: var(--color-plum);
}

.profile-card__btn {
  width: 100%;
  padding: 12px 20px;
  margin-top: var(--space-xs);
}

/* About Content Column */
.about-story {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-story p {
  color: var(--color-text-soft);
  line-height: 1.85;
  font-size: 1.02rem;
}

.about__highlight {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}
.about__highlight svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.about__highlight p {
  margin: 0;
  font-weight: 500;
  color: var(--color-accent-dark);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about__vegan-box {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-warm-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warm);
}
.about__vegan-box-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--color-warm-dark);
}
.about__vegan-box-icon [data-lucide] {
  width: 24px;
  height: 24px;
}
.about__vegan-box p {
  margin: 0;
  color: var(--color-warm-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.stat {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.stat__number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  line-height: 1;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  margin-top: var(--space-xs);
  font-weight: 500;
}

/* ---------- Services Accordion ---------- */
.services-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-acc-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}
.service-acc-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.service-acc-item.active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.service-acc-trigger {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: var(--space-md);
  background: none;
  cursor: pointer;
}

.service-acc-trigger-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.service-acc-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}
.service-acc-icon [data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--color-accent-dark);
}
.service-acc-item:hover .service-acc-icon {
  transform: scale(1.06);
}

.service-acc-title-group {
  display: flex;
  flex-direction: column;
}

.service-acc-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.service-acc-sub {
  font-size: 0.86rem;
  color: var(--color-text-soft);
  margin-top: 2px;
}

.service-acc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}
.service-acc-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  transition: transform var(--duration) var(--ease);
}
.service-acc-item.active .service-acc-arrow {
  background: var(--color-accent);
}
.service-acc-item.active .service-acc-arrow svg {
  color: white;
  transform: rotate(180deg);
}

.service-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.service-acc-content-inner {
  padding: 0 var(--space-xl) var(--space-xl) calc(var(--space-xl) + 48px + var(--space-md));
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.75;
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-md);
}
.service-acc-content-inner ul {
  margin-top: var(--space-sm);
  padding-left: var(--space-md);
}
.service-acc-content-inner li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.service-acc-content-inner li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ---------- Calculator ---------- */
.calculator {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-width: 720px;
  margin: 0 auto;
}

.calculator__row {
  margin-bottom: var(--space-xl);
}

.calculator__label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-size: 0.96rem;
}

.calculator__range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: var(--color-bg-alt);
  border-radius: 4px;
  outline: none;
}
.calculator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  background: var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(113,138,116,.4);
  border: 2px solid white;
}
.calculator__range::-moz-range-thumb {
  width: 26px; height: 26px;
  background: var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
}

.calculator__value {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-top: var(--space-sm);
}

.calculator__radios {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.radio-card {
  flex: 1;
  min-width: 100px;
}
.radio-card input { display: none; }
.radio-card label {
  display: block;
  padding: 12px 14px;
  background: var(--color-bg-alt);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  user-select: none;
}
.radio-card input:checked + label {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}

.calculator__total {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-warm-light));
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}
.calculator__total-label {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}
.calculator__total-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  line-height: 1.1;
}
.calculator__total-note {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin-top: var(--space-xs);
}

.calculator__action {
  text-align: center;
  margin-top: var(--space-xl);
}
.calculator__action .btn {
  width: 100%;
  max-width: 440px;
  padding: 15px 28px;
}

/* ---------- Training ---------- */
.training__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.training__text p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  font-size: 1.02rem;
}

.training__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.training__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.training__item-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.training__item-icon [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--color-accent-dark);
}
.training__item-text {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
}
.training__item-desc {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  font-weight: 400;
  margin-top: 2px;
}

.training__badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-lavender-light);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  border: 1px solid rgba(74,45,83,.15);
}
.training__badge svg {
  width: 46px;
  height: 46px;
  color: var(--color-lavender);
  flex-shrink: 0;
}
.training__badge-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-lavender);
  line-height: 1.3;
}
.training__badge-sub {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin-top: 2px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-soft);
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ---------- Reviews with Real Avatars ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card__quote {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-lg);
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--color-accent-light);
  line-height: 1;
  pointer-events: none;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
}
.review-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-star);
  fill: var(--color-star);
}

.review-card__text {
  color: var(--color-text-soft);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-accent-light);
  background: var(--color-bg-alt);
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-text);
}
.review-card__date {
  font-size: 0.82rem;
  color: var(--color-accent-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-card__date::before {
  content: '✓';
  color: var(--color-accent);
}

/* ---------- FAQ Section ---------- */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.faq-item:hover {
  border-color: var(--color-accent);
}
.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  gap: var(--space-md);
  background: none;
}
.faq-trigger svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}
.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-content-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.75;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,39,36,.35) 100%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn .3s var(--ease);
}
.lightbox.active { display: flex; }

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: background var(--duration) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.3); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  transition: background var(--duration) var(--ease);
}
.lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__nav--prev { left: var(--space-lg); }
.lightbox__nav--next { right: var(--space-lg); }

/* ---------- Sticky "Add-to-cart" Contact Bar ---------- */
.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px var(--space-lg);
  z-index: 990;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  opacity: 0;
}
.sticky-contact-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-contact-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.sticky-contact-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.sticky-contact-bar__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent-light);
  flex-shrink: 0;
}

.sticky-contact-bar__info {
  display: flex;
  flex-direction: column;
}

.sticky-contact-bar__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.2;
}

.sticky-contact-bar__details {
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.sticky-contact-bar__btn {
  padding: 10px 24px;
  font-size: 0.92rem;
  flex-shrink: 0;
}

/* ---------- WhatsApp Confirmation Popup Modal ---------- */
.wa-confirm-modal {
  max-width: 460px;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.wa-confirm-icon {
  width: 64px;
  height: 64px;
  background: #E6F8EE;
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}
.wa-confirm-icon svg {
  width: 36px;
  height: 36px;
}

.wa-confirm-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.wa-confirm-desc {
  font-size: 0.94rem;
  color: var(--color-text-soft);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
}

.wa-confirm-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.wa-confirm-actions .btn {
  width: 100%;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, var(--color-accent-dark) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .section-title { color: white; }
.cta-section .section-subtitle { color: rgba(255,255,255,.85); }

.cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.cta__actions .btn--primary {
  background: white;
  color: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.cta__actions .btn--primary:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
}

.cta__actions .btn--secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.6);
}
.cta__actions .btn--secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
  color: white;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,.65);
  padding: var(--space-2xl) 0;
  padding-bottom: calc(var(--space-2xl) + 60px); /* Spacing for sticky bottom bar */
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(255,255,255,.65);
  font-size: 0.88rem;
}
.footer__links a:hover { color: white; }

.footer__copy {
  font-size: 0.88rem;
}

/* ---------- Modal Base ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: var(--space-md);
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp .3s var(--ease);
  position: relative;
}

.modal__header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--color-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 2;
}
.modal__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
}
.modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-text-soft);
  transition: background var(--duration) var(--ease);
}
.modal__close:hover { background: var(--color-bg-alt); }

.modal__body {
  padding: var(--space-xl);
  font-size: 0.92rem;
  color: var(--color-text-soft);
  line-height: 1.75;
}
.modal__body h3 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.modal__body p { margin-bottom: var(--space-md); }
.modal__body ul { padding-left: var(--space-lg); margin-bottom: var(--space-md); }
.modal__body li { list-style: disc; margin-bottom: var(--space-xs); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: calc(var(--space-xl) + 50px);
  right: var(--space-xl);
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 980;
  transition: all var(--duration) var(--ease);
  color: white;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  color: white;
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Responsive Breakpoints ---------- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }
  .hero__photo-wrap {
    max-width: 340px;
    order: -1;
  }
  .hero__content {
    align-items: center;
  }
  .hero__greeting {
    justify-content: center;
  }
  .hero__meta {
    justify-content: center;
  }
  .hero__badges {
    justify-content: center;
  }
  .hero__actions {
    justify-content: center;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .profile-card {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { padding-left: 1.15rem; padding-right: 1.15rem; }
  .section { padding: clamp(2.75rem, 8vw, 4rem) 0; }
  .about-split { gap: 1.75rem; }
  body.has-sticky-contact { padding-bottom: 74px; }

  .header__inner {
    padding: 0 var(--space-md);
  }

  .header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 290px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--duration) var(--ease);
    gap: var(--space-md);
    z-index: 1000;
  }
  .header__nav.open { right: 0; }
  .header__nav a {
    font-size: 1.05rem;
    padding: 8px 0;
  }
  .header__nav .header__cta {
    margin-top: var(--space-md);
    width: 100%;
  }

  .menu-toggle { display: flex; }

  .hero {
    padding-top: calc(var(--header-h) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }
  .hero__photo-wrap {
    max-width: 280px;
  }
  .hero__name {
    font-size: 2.2rem;
  }
  .hero__role {
    font-size: 1rem;
  }
  .hero__price {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
  }
  .hero__actions .btn {
    width: 100%;
  }

  .profile-card {
    border-radius: var(--radius-lg);
  }
  .profile-card__header {
    top: calc(var(--header-h) + 8px);
    padding: 1rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .profile-card__avatar-img {
    width: 72px;
    height: 72px;
  }
  .profile-card__header-name { font-size: 1.35rem; }
  .profile-card__body {
    padding: 1rem;
    gap: 1rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .about-story { gap: 1rem; }

  /* Services accordion mobile adjustments */
  .service-acc-trigger {
    padding: var(--space-md);
  }
  .service-acc-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .service-acc-title {
    font-size: 1rem;
  }
  .service-acc-content-inner {
    padding: var(--space-md);
    padding-top: var(--space-sm);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .calculator {
    padding: var(--space-lg) var(--space-md);
  }
  .calculator__radios {
    flex-direction: column;
  }
  .radio-card {
    width: 100%;
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta__actions .btn {
    width: 100%;
  }

  .sticky-contact-bar {
    padding: 8px 1rem;
  }
  .sticky-contact-bar__inner { gap: 8px; }
  .sticky-contact-bar__left { min-width: 0; flex: 1; gap: 8px; }
  .sticky-contact-bar__avatar { width: 36px; height: 36px; }
  .sticky-contact-bar__info { min-width: 0; }
  .sticky-contact-bar__name {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-contact-bar__details {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-contact-bar__btn {
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .whatsapp-fab {
    display: none; /* Mobile uses the sticky bottom contact bar */
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  .footer__links {
    justify-content: center;
  }

  .lightbox__nav { display: none; }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section-title {
    font-size: 1.7rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
  }

  .hero__photo-wrap {
    max-width: 240px;
  }
  .hero__name {
    font-size: 1.95rem;
  }
  .hero__price-amount {
    font-size: 1.6rem;
  }
  .hero__price-unit {
    font-size: 0.85rem;
  }

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

  .faq-trigger {
    padding: var(--space-md);
    font-size: 0.96rem;
  }
  .faq-content-inner {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 0.9rem;
  }
}
