:root {
  --khaki: #8f6528;
  --khaki-light: #c9a05f;
  --khaki-pale: #f4ecdd;
  --baby-blue: #8a5a2b;
  --baby-blue-pale: #f0e4d0;
  --accent-bright: #dcae5c;
  --brown: #3a2818;
  --brown-soft: #6b4f3d;
  --cream: #b7c188;
  --white: #ffffff;
  --text: #3a2e22;
  --shadow: 0 12px 30px rgba(74, 51, 39, 0.10);
  --shadow-lg: 0 20px 45px rgba(74, 51, 39, 0.16);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scrollbar-color: var(--khaki) var(--khaki-pale); scrollbar-width: thin; }

::selection { background: var(--khaki); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--khaki-pale); }
::-webkit-scrollbar-thumb { background: var(--khaki); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brown); }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Ultra-thin decorative page frame */
body::after {
  content: "";
  position: fixed;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  z-index: 99;
  pointer-events: none;
}

/* Fixed page-wide background video */
.site-bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.site-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: rgba(54, 33, 16, 0.76);
}

h1, h2, h3 {
  font-family: 'Bodoni Moda', serif;
  color: var(--brown);
  line-height: 1.2;
}
h1, h2 { font-style: italic; letter-spacing: 0.01em; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 12px;
}
.eyebrow.center { display: block; text-align: center; }
h2.center { text-align: center; margin-bottom: 48px; }
h2.center::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--khaki);
  margin: 16px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--brown);
  color: var(--white);
}
.btn-primary:hover { background: var(--brown-soft); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn:active { transform: scale(0.96); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Staggered grid reveal */
.process-grid > *:nth-child(1),
.why-grid > *:nth-child(1),
.pricing-grid > *:nth-child(1),
.stats-grid > *:nth-child(1) { transition-delay: 0.05s; }
.process-grid > *:nth-child(2),
.why-grid > *:nth-child(2),
.pricing-grid > *:nth-child(2),
.stats-grid > *:nth-child(2) { transition-delay: 0.15s; }
.process-grid > *:nth-child(3),
.why-grid > *:nth-child(3),
.pricing-grid > *:nth-child(3),
.stats-grid > *:nth-child(3) { transition-delay: 0.25s; }
.process-grid > *:nth-child(4),
.why-grid > *:nth-child(4),
.pricing-grid > *:nth-child(4),
.stats-grid > *:nth-child(4) { transition-delay: 0.35s; }

/* Page entrance curtain */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 200;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.page-curtain.is-hidden { opacity: 0; }

/* Copy-to-clipboard toast */
.copyable { cursor: pointer; position: relative; }
.copy-toast {
  position: absolute;
  top: -30px;
  left: 0;
  background: var(--brown);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
}
.copy-toast.show { opacity: 1; transform: translateY(0); }

/* Header — transparent at top, translucent brown once scrolled */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(58, 40, 24, 0.72);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.logo-text,
.main-nav:not(.open) a {
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.main-nav:not(.open) a:hover { color: var(--accent-bright); }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-self: start;
  grid-column: 1;
  min-width: 0;
}
.logo-text {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.15;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.logo:hover .logo-text { color: var(--accent-bright); }
.logo-text.light { color: var(--white); }
.logo-text small { color: var(--khaki); font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 0.72rem; }
.logo-text.light small { color: var(--accent-bright); }
.main-nav {
  display: flex;
  gap: 24px;
  justify-self: center;
  grid-column: 2;
}
.main-nav a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.header-actions { display: flex; align-items: center; gap: 14px; justify-self: end; grid-column: 3; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, var(--accent-bright), var(--khaki-light));
  color: var(--brown);
  box-shadow: 0 8px 20px rgba(220,174,92,0.35);
}
.header-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-cta:hover {
  background: linear-gradient(120deg, var(--khaki-light), var(--accent-bright));
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(220,174,92,0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
}
.hero-center {
  position: relative;
  z-index: 1;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stars { color: var(--khaki); letter-spacing: 2px; }
.exclusive-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  text-decoration: none;
}
.scroll-cue-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.scroll-cue-arrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1;
  animation: scroll-arrow-bounce 1.8s ease-in-out infinite;
}
.scroll-cue:hover .scroll-cue-label,
.scroll-cue:hover .scroll-cue-arrow { color: var(--accent-bright); }
@keyframes scroll-arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* Hero title */
.neon-text {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 4rem);
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  cursor: default;
}
.neon-line { display: block; }
.letter { display: inline-block; transition: transform 0.15s ease-out, text-shadow 0.15s ease-out; will-change: transform; }

/* Direct address — breaks the fourth wall */
.direct-note {
  padding: 90px 0;
  text-align: center;
}
.direct-eyebrow {
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.direct-text {
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 500;
  max-width: 780px;
  margin: 0 auto 32px;
  line-height: 1.45;
}
.direct-text span { color: var(--accent-bright); }
.direct-eyebrow-sub { margin-top: -8px; margin-bottom: 22px; }
.direct-body { max-width: 680px; margin: 0 auto; }
.direct-body p { color: rgba(255,255,255,0.82); font-size: 1.02rem; line-height: 1.75; margin-bottom: 16px; }
.direct-body p:last-child { margin-bottom: 0; }
.direct-closing {
  color: var(--accent-bright);
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 1.2rem;
  max-width: 680px;
  margin: 26px auto 32px;
  line-height: 1.5;
}

/* Stats */
.stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(54, 33, 16, 0) 0%,
    rgba(54, 33, 16, 0.22) 35%,
    rgba(54, 33, 16, 0.22) 100%
  );
  padding: 54px 0 80px;
}
.stats-grid { position: relative; z-index: 2; }
.stats-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.stats-wave-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: stats-wave-scroll 13s linear infinite;
}
.stats-wave-track svg { display: block; width: 50%; height: 100%; flex-shrink: 0; }
@keyframes stats-wave-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .stats-wave-track { animation: none; }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-bright);
}
.stat-label { color: var(--baby-blue-pale); font-size: 0.85rem; margin-top: 6px; opacity: 0.85; }

/* About */
.about { padding: 90px 0; background: rgba(206,198,187,0.78); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-photo { position: relative; perspective: 900px; }
.photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--khaki) 0%, var(--baby-blue) 100%);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}
.photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: var(--brown-soft); margin-bottom: 14px; }
.about-highlights { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.about-highlights li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--brown); }
.highlight-icon { font-size: 1.2rem; }

/* Service Areas */
.service-areas {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(255,255,255,0.35), transparent 45%),
    rgba(201,190,177,0.78);
}
.service-areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 52px;
}
.service-area-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(74,51,39,0.06);
  flex: 1 1 300px;
  max-width: 340px;
}
@media (max-width: 640px) {
  .service-area-card { max-width: 100%; }
}
.service-area-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--khaki-light), var(--accent-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-area-card:hover::before { transform: scaleX(1); }
.service-area-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--khaki-light), var(--khaki));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(143,101,40,0.28);
  margin-bottom: 22px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}
.service-icon svg { width: 28px; height: 28px; }
.service-area-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 14px 28px rgba(143,101,40,0.38); }
.service-area-card h3 { font-size: 1.15rem; margin-bottom: 12px; letter-spacing: 0.01em; }
.service-area-card > p { color: var(--brown-soft); font-size: 0.93rem; line-height: 1.6; margin-bottom: 18px; }
.service-area-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.service-area-tags li {
  background: rgba(220,174,92,0.12);
  border: 1px solid rgba(220,174,92,0.45);
  color: var(--khaki);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.service-area-card:hover .service-area-tags li { background: var(--accent-bright); color: var(--white); border-color: var(--accent-bright); }
.service-area-details { margin-top: auto; border-top: 1px solid rgba(74,51,39,0.08); padding-top: 18px; }
.service-area-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
  list-style: none;
}
.service-area-details summary::-webkit-details-marker { display: none; }
.service-area-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--khaki);
  color: var(--khaki);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.service-area-toggle svg { width: 14px; height: 14px; }
.service-area-details[open] .service-area-toggle { transform: rotate(45deg); background: var(--khaki); color: var(--white); }
.service-area-details[open] summary { margin-bottom: 18px; }
.service-area-detail-group { margin-bottom: 14px; }
.service-area-detail-group:last-child { margin-bottom: 0; }
.service-area-detail-group h4 { font-size: 0.86rem; margin-bottom: 4px; color: var(--brown); font-family: 'Manrope', sans-serif; font-weight: 700; }
.service-area-detail-group p { font-size: 0.84rem; color: var(--brown-soft); margin: 0; }

/* Process */
.process { padding: 90px 0; background: rgba(197,184,167,0.78); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  --mx: 50%; --my: 50%;
}
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(200px circle at var(--mx) var(--my), rgba(79,92,48,0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.process-card:hover::before { opacity: 1; }
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.process-num {
  display: inline-block;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--baby-blue);
  -webkit-text-stroke: 1.5px var(--khaki);
  margin-bottom: 14px;
}
.process-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-card p { font-size: 0.9rem; color: var(--brown-soft); }

/* Pricing */
.tools { padding: 90px 0; background: rgba(201,190,177,0.78); }
.tools-intro { text-align: center; color: var(--brown-soft); max-width: 520px; margin: -28px auto 40px; }
.services { padding: 90px 0; background: rgba(206,198,187,0.78); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.25s ease;
  --mx: 50%; --my: 50%;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(79,92,48,0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured {
  border-color: var(--khaki);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--khaki);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pricing-desc { color: var(--brown-soft); font-size: 0.9rem; margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.pricing-features li { font-size: 0.9rem; color: var(--brown); }
.pricing-note { text-align: center; margin-top: 36px; color: var(--brown-soft); font-size: 0.88rem; }

/* Package detail pages */
.package-hero { padding: 150px 0 70px; text-align: center; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 22px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--accent-bright); }
.package-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  margin: 6px 0 18px;
}
.package-hero .lead {
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
}
.includes-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.includes-card .pricing-features { margin-bottom: 0; }
.includes-card .pricing-features li { font-size: 1rem; }
.package-cross {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Calculation tools */
.tool-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tool-tab {
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--brown);
  background: transparent;
  color: var(--brown);
  font-weight: 600;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.tool-tab:hover { background: rgba(58,40,24,0.08); }
.tool-tab.is-active { background: var(--brown); color: var(--white); }
.tool-panel { max-width: 480px; margin: 0 auto; }
.tool-result {
  max-width: 480px;
  margin: 24px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}
.tool-result-value {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.tool-result-label { color: var(--brown-soft); font-size: 0.92rem; margin-bottom: 18px; }
.tool-result-text { color: var(--brown-soft); font-size: 0.9rem; margin-bottom: 18px; }

/* Why */
.why { padding: 90px 0; background: rgba(201,190,177,0.78); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card { text-align: center; padding: 10px; }
.why-grid.three-items,
.process-grid.three-items {
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 0 auto;
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-8deg); box-shadow: var(--shadow-lg); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--brown-soft); }

/* Reviews */
.reviews { padding: 90px 0; background: rgba(201,190,177,0.78); }
.reviews-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.reviews-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card-slot {
  min-height: 250px;
  display: flex;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(74,51,39,0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
}
.review-card.entering { opacity: 0; transform: translateX(14px); }
.review-card::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: 'Bodoni Moda', serif;
  font-size: 5rem;
  color: rgba(58,40,24,0.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.review-card > * { position: relative; z-index: 1; }
.review-reply {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(58,40,24,0.06);
  border-left: 3px solid var(--khaki);
  border-radius: 8px;
}
.review-reply-label { font-size: 0.78rem; font-weight: 600; color: var(--khaki); margin-bottom: 4px; }
.review-reply p:last-child { font-size: 0.85rem; color: var(--brown-soft); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.carousel-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(58,40,24,0.25);
  background: transparent;
  color: var(--brown);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.carousel-arrow:hover { background: var(--brown); color: var(--white); }
.review-cta-panel {
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  --mx: 50%; --my: 50%;
}
.review-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(255,255,255,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.review-cta-panel:hover::before { opacity: 1; }
.review-cta-icon { font-size: 1.8rem; margin-bottom: 6px; transition: transform 0.3s ease; }
.review-cta-panel:hover .review-cta-icon { transform: scale(1.2) rotate(10deg); }
.review-cta-panel h3 { color: var(--white); font-size: 1.2rem; }
.review-cta-panel p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 18px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--khaki);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Bodoni Moda', serif;
  flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--brown); font-size: 0.95rem; }
.review-stars { color: var(--khaki); letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.92rem; color: var(--brown-soft); }
.reviews-more {
  text-align: center;
  margin-top: 32px;
  color: var(--brown-soft);
  font-weight: 500;
  font-size: 0.92rem;
}
.reviews-more a,
.pricing-note a {
  position: relative;
  color: var(--khaki);
  text-decoration: none;
  font-weight: 600;
}
.reviews-more a::after,
.pricing-note a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--khaki);
  transition: width 0.25s ease;
}
.reviews-more a:hover::after,
.pricing-note a:hover::after { width: 100%; }

/* FAQ */
.faq { padding: 90px 0; background: rgba(197,184,167,0.78); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--brown);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(58,40,24,0.05); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--khaki);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p { padding: 0 24px 22px; color: var(--brown-soft); font-size: 0.92rem; }

/* Appointment */
.appointment { padding: 90px 0; background: rgba(206,198,187,0.78); }
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.appointment-info h2 { font-size: 2rem; margin: 4px 0 16px; }
.appointment .exclusive-tag {
  background: rgba(58,40,24,0.08);
  border-color: rgba(58,40,24,0.25);
  color: var(--brown);
}

/* Contact */
.contact { padding: 90px 0; background: rgba(201,190,177,0.78); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-lead { color: var(--brown-soft); margin-bottom: 24px; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--brown); }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--khaki-pale);
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--khaki-pale);
  resize: vertical;
  transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--khaki);
  background: var(--white);
}
.form-submit { width: 100%; text-align: center; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--brown-soft); opacity: 0.85; margin-top: -6px; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--brown-soft); }
.contact-list a { color: var(--brown-soft); text-decoration: none; }
.contact-list a:hover { color: var(--khaki); }
.contact-icon { font-size: 1.2rem; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 480px;
}

/* WhatsApp float + back to top */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #D4A017;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 90;
}
.whatsapp-float:hover { transform: scale(1.08); background: #c4930f; }
.whatsapp-float svg { width: 28px; height: 28px; }

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 96px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Footer */
.site-footer {
  background: rgba(74,51,39,0.88);
  color: var(--baby-blue-pale);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand p { margin: 14px 0 18px; font-size: 0.88rem; opacity: 0.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--khaki); }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; }
.footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: var(--baby-blue-pale);
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: opacity 0.2s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: width 0.25s ease;
}
.footer-links a:hover { opacity: 1; }
.footer-links a:hover::after { width: 100%; }
.footer-contact p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  opacity: 0.7;
}
.footer-bottom .designed-by { margin-top: 6px; opacity: 0.85; }
.footer-bottom .designed-by a { color: var(--accent-bright); text-decoration: none; font-weight: 600; }
.footer-bottom .designed-by a:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: auto;
    width: min(280px, 78vw);
    margin-right: 0;
    background: rgba(58, 40, 24, 0.94);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    opacity: 0;
    transform: scale(0.92);
    transform-origin: top right;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.22s ease, transform 0.22s ease;
  }
  .main-nav.open { max-height: 480px; opacity: 1; transform: scale(1); overflow-y: auto; pointer-events: auto; }
  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.92);
    text-shadow: none;
  }
  .main-nav a:hover { color: var(--accent-bright); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .logo-text { font-size: 0.9rem; }
}

@media (max-width: 860px) {
  .about-grid, .contact-grid, .appointment-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid, .why-grid,
  .process-grid.three-items, .why-grid.three-items { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .reviews-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map { min-height: 320px; }
  .form-row-split { grid-template-columns: 1fr; }
  .package-hero { padding: 120px 0 50px; }
  .includes-card { padding: 28px 22px; }
  .carousel-arrow { width: 40px; height: 40px; }
}

@media (max-width: 600px) {
  .process-grid, .why-grid,
  .process-grid.three-items, .why-grid.three-items { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .tool-tab { padding: 10px 16px; font-size: 0.82rem; }
  .header-inner { padding: 12px 16px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .back-to-top { width: 40px; height: 40px; bottom: 18px; right: 78px; }
  body::after { inset: 6px; border-radius: 18px; }
}
