/* ════════════════════════════════════════════
   BELLANOVA ESTÉTICA — MAIN STYLESHEET
   ════════════════════════════════════════════ */

:root {
  --white:        #FAFAF8;
  --offwhite:     #F2F0EC;
  --charcoal:     #1A1A1A;
  --charcoal-mid: #2C2C2C;
  --charcoal-soft:#5A5A58;
  --gold:         #C8A84B;
  --gold-light:   #E2C97E;
  --gold-pale:    #F7F0DC;
  --warm-gray:    #8C8882;
  --border:       rgba(26,26,26,0.09);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-stamp:   'Bebas Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.gold-rule {
  display: inline-block; width: 40px; height: 1px;
  background: var(--gold); vertical-align: middle; margin-right: 12px;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(250,250,248,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-logo {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--charcoal); text-decoration: none;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--charcoal-soft); transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.btn-book {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  background: var(--charcoal); color: var(--white); padding: 10px 22px;
  border-radius: 2px; transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-book:hover { background: var(--gold); transform: translateY(-1px); }
.btn-outline {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  border: 1.5px solid var(--charcoal); color: var(--charcoal); padding: 9px 18px;
  border-radius: 2px; transition: all 0.2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 2px;
  overflow: hidden; flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; padding: 7px 11px;
  background: none; border: none; cursor: pointer;
  color: var(--charcoal-soft); transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--charcoal); color: var(--white); }
.lang-btn:not(.active):hover { color: var(--gold); }
.lang-divider { width: 1px; height: 20px; background: var(--border); }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px; /* offset fixed nav */
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vh, 56px) clamp(24px, 4vw, 70px) clamp(28px, 4vh, 56px) clamp(24px, 6vw, 90px);
  background: var(--white);
  /* warm ambient glow behind text */
  background-image:
    radial-gradient(ellipse 80% 55% at 10% 50%, rgba(200,168,75,0.08) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}
.hero-left::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--gold); opacity: 0.3;
}

/* decorative corner ornament */
.hero-ornament {
  position: absolute; top: 14px; right: 20px;
  pointer-events: none; user-select: none; opacity: 0.6;
}

/* Google rating badge */
.hero-rating {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid rgba(200,168,75,0.35);
  border-radius: 2px; padding: 6px 12px;
  width: fit-content; text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-rating:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(200,168,75,0.18); }
.hero-rating-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; }
/* half-star: last star is 50% gold, 50% faded */
.star-half {
  background: linear-gradient(to right, var(--gold) 55%, rgba(200,168,75,0.22) 55%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-rating-text {
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--charcoal-soft);
}

/* ── hero groups ── */
.hero-top  { display: flex; flex-direction: column; gap: clamp(10px, 1.5vh, 16px); animation: fadeUp 0.8s ease both; }
.hero-main { display: flex; flex-direction: column; animation: fadeUp 0.8s 0.1s ease both; }
.hero-bottom-bar { animation: fadeUp 0.8s 0.45s ease both; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  font-weight: 300; line-height: 1.05;
  color: var(--charcoal); margin-bottom: 8px;
}
.hero-headline em {
  font-style: italic; color: var(--gold);
  text-shadow: 0 0 60px rgba(200,168,75,0.22);
}

.hero-sub-stamp {
  font-family: var(--font-stamp);
  font-size: clamp(1.3rem, 2.4vw, 2.7rem);
  letter-spacing: 0.14em; color: var(--charcoal-mid);
  margin-bottom: clamp(16px, 2.5vh, 26px);
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-desc {
  font-size: 0.92rem; font-weight: 300; line-height: 1.75;
  color: var(--charcoal-soft); max-width: 420px;
  margin-bottom: clamp(18px, 2.5vh, 34px);
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-stats {
  display: flex; gap: 32px;
  padding-top: clamp(16px, 2vh, 24px);
  border-top: 1px solid var(--border);
}
.hero-stats > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.1rem;
  font-weight: 300; color: var(--charcoal); line-height: 1;
}
.stat-num sup { font-size: 0.85rem; color: var(--gold); }
.stat-label {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--warm-gray); margin-top: 4px;
}
.stat-icon {
  font-size: 1.5rem; color: var(--gold); line-height: 1.4;
}

/* scroll indicator — sits inside hero-bottom-bar, below the stats */
.hero-scroll-hint {
  display: flex; flex-direction: column; align-items: center;
  margin-top: clamp(10px, 1.5vh, 18px);
  opacity: 0.4; pointer-events: none;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(0.55); transform-origin: top; }
}

/* ─── HERO RIGHT ─── */
.hero-right {
  display: grid; grid-template-rows: 60% 40%; grid-template-columns: 1fr 1fr;
  background: var(--charcoal); overflow: hidden; position: relative;
  animation: fadeIn 1s 0.2s ease both;
}
.hero-img-main { grid-row: 1/2; grid-column: 1/3; position: relative; overflow: hidden; }
.hero-img-main img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 7s ease;
}
.hero-img-main:hover img { transform: scale(1.05); }
/* cinematic gradient overlay on main image */
.hero-img-main::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(26,26,26,0.22) 0%, transparent 45%),
    linear-gradient(to top, rgba(26,26,26,0.45) 0%, transparent 40%);
}
.hero-img-thumb {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-img-thumb:first-of-type { border-right: 1px solid rgba(255,255,255,0.07); }
.hero-img-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease; filter: brightness(0.82);
}
.hero-img-thumb:hover img { transform: scale(1.07); filter: brightness(0.96); }
/* thumb identity panels */
.thumb-identity {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.08) 60%, transparent 100%);
  transition: background 0.35s;
}
.hero-img-thumb:hover .thumb-identity {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.thumb-identity--right { align-items: flex-end; text-align: right; }
.thumb-icon { font-size: 0.88rem; color: var(--gold); margin-bottom: 5px; line-height: 1; }
.thumb-name {
  font-family: var(--font-stamp); font-size: 1.1rem;
  letter-spacing: 0.22em; color: var(--white); line-height: 1;
}
.thumb-tag {
  font-size: 0.55rem; color: rgba(255,255,255,0.48);
  letter-spacing: 0.13em; margin-top: 5px; text-transform: uppercase;
  transition: color 0.3s;
}
.hero-img-thumb:hover .thumb-tag { color: rgba(255,255,255,0.72); }

/* gold "&" connector at the seam */
.hero-right-connector {
  position: absolute; left: 50%; top: 60%;
  transform: translate(-50%, -50%);
  z-index: 20; pointer-events: none;
  display: flex; flex-direction: column; align-items: center;
}
.connector-line { width: 1px; height: 16px; background: rgba(200,168,75,0.45); }
.connector-amp {
  font-family: var(--font-display); font-size: 0.82rem; font-style: italic;
  color: var(--gold); width: 32px; height: 32px; border-radius: 50%;
  background: var(--charcoal-mid); border: 1px solid rgba(200,168,75,0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(200,168,75,0.15);
}
.hero-est {
  position: absolute; top: 18px; right: 18px; z-index: 1;
  font-family: var(--font-stamp); font-size: 0.62rem; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.65); background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px); padding: 5px 10px; border-radius: 2px;
}

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--charcoal); padding: 15px 0;
  overflow: hidden; position: relative;
}
/* gradient edge fading — premium feel */
.marquee-strip::before,
.marquee-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--charcoal), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--charcoal), transparent);
}
.marquee-inner {
  display: flex; animation: marquee 24s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-stamp); font-size: 0.82rem; letter-spacing: 0.26em;
  color: rgba(255,255,255,0.32); padding: 0 26px; flex-shrink: 0;
}
.marquee-item.gold { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION HEADERS ─── */
.section-label {
  display: flex; align-items: center;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem,3.8vw,3.3rem);
  font-weight: 300; line-height: 1.15; color: var(--charcoal);
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 0.91rem; font-weight: 300; line-height: 1.75;
  color: var(--charcoal-soft); max-width: 520px; margin-top: 14px;
}

/* ─── FAMILY INTRO ─── */
.family-intro { padding: clamp(80px,10vw,130px) 0; background: var(--offwhite); }
.family-intro .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.family-intro-img {
  position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 4/5;
}
.family-intro-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 5s ease;
}
.family-intro-img:hover img { transform: scale(1.04); }
.family-intro-img::before {
  content: ''; position: absolute; inset: 14px;
  border: 1px solid var(--gold); border-radius: 2px;
  pointer-events: none; z-index: 1; opacity: 0.3;
}
.family-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px;
}
.pillar {
  padding: 20px 22px; background: var(--white);
  border: 1px solid var(--border); border-radius: 2px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.1);
}
.pillar-icon { margin-bottom: 9px; display: flex; align-items: center; }
.pillar-title {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 5px;
}
.pillar-desc {
  font-size: 0.78rem; font-weight: 300; line-height: 1.6; color: var(--charcoal-soft);
}
/* ── SVG Icon System ── */
.icon-svg                         { display: inline-block; flex-shrink: 0; }
.pillar-icon .icon-svg            { width: 26px; height: 26px; color: var(--gold); }
.pricing-cat-icon .icon-svg       { width: 20px; height: 20px; color: var(--gold); }
.location-detail > span           { flex-shrink: 0; }
.location-detail > span .icon-svg { width: 15px; height: 15px; color: var(--gold); }
.loc-btn .icon-svg                { width: 13px; height: 13px; }
.btn-outline .icon-svg            { width: 13px; height: 13px; }

/* ─── SERVICES ─── */
.services { padding: clamp(80px,10vw,130px) 0; background: var(--white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; flex-wrap: wrap; gap: 24px;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.service-card {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer; background: var(--charcoal);
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease; filter: brightness(0.72);
}
.service-card:hover img { transform: scale(1.06); filter: brightness(0.45); }
.service-card-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.service-card-tag {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px;
}
.service-card-title {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 5px;
}
.service-card-price {
  font-size: 0.76rem; font-weight: 400; color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
/* "Book" pill that slides up on hover */
.service-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal); background: var(--gold);
  padding: 7px 14px; border-radius: 2px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-card-cta { opacity: 1; transform: translateY(0); }

/* ─── PRICING TABLE ─── */
.pricing-section { padding: 48px 0 clamp(80px,10vw,130px); background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px;
}
.pricing-category { border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.pricing-cat-header {
  background: var(--charcoal); padding: 16px 22px;
  display: flex; align-items: center; gap: 10px;
}
.pricing-cat-icon { display: inline-flex; align-items: center; }
.pricing-cat-name {
  font-family: var(--font-stamp); font-size: 0.98rem;
  letter-spacing: 0.18em; color: var(--white);
}
.pricing-items { padding: 6px 0; }
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 22px; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--gold-pale); }
.pricing-name { font-size: 0.81rem; font-weight: 400; color: var(--charcoal); }
.pricing-price {
  font-size: 0.76rem; font-weight: 600; color: var(--gold);
  white-space: nowrap; margin-left: 12px;
}

/* ─── GALLERY ─── */
.gallery { padding: clamp(80px,10vw,120px) 0; background: var(--offwhite); }
.gallery-header { text-align: center; margin-bottom: 50px; }
.gallery-header .section-label { justify-content: center; }
.gallery-mosaic {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-template-rows: 280px 280px; gap: 3px;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.gallery-tile { position: relative; overflow: hidden; background: var(--charcoal); }
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease, filter 0.4s; filter: brightness(0.82);
}
.gallery-tile:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery-tile.tall { grid-row: span 2; }
.gallery-tile.wide { grid-column: span 2; }
.gallery-label {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.88);
  background: rgba(0,0,0,0.45); padding: 4px 9px; border-radius: 2px;
}

/* ─── ABOUT ─── */
.about {
  padding: clamp(80px,10vw,130px) 0; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.about::before {
  content: '2009'; position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%); font-family: var(--font-stamp);
  font-size: clamp(180px,18vw,260px); color: rgba(255,255,255,0.022);
  line-height: 1; pointer-events: none;
}
.about .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.about-img {
  position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 3/4;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; filter: grayscale(15%);
}
.about-img::after {
  content: ''; position: absolute; top: -10px; right: -10px;
  width: 55%; height: 55%;
  border-top: 1px solid var(--gold); border-right: 1px solid var(--gold);
  pointer-events: none; opacity: 0.35;
}
.about-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gold); font-family: var(--font-stamp);
  font-size: 0.72rem; letter-spacing: 0.22em; text-align: center;
  color: var(--charcoal); padding: 10px 16px;
}
.about-text .section-label { color: var(--gold-light); }
.about-text .section-h2 { color: var(--white); }
.about-text .section-h2 em { color: var(--gold-light); }
.about-text .section-sub { color: rgba(255,255,255,0.5); }
.about-quote {
  margin: 34px 0; padding: 0 0 0 22px; border-left: 2px solid var(--gold);
}
.about-quote p {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 300;
  font-style: italic; line-height: 1.55; color: rgba(255,255,255,0.78);
}
.about-quote cite {
  display: block; margin-top: 10px; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}
.about-milestones {
  display: flex; gap: 0; margin-top: 42px; padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.09);
  align-items: flex-start;
}
.milestone-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.09);
}
.milestone-item:first-child { padding-left: 0; align-items: flex-start; text-align: left; }
.milestone-item:last-child { border-right: none; }
.milestone-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.milestone-word { font-size: 1.6rem; }
.milestone-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 6px;
}
.milestone-icon { font-size: 1.6rem; color: var(--gold-light); line-height: 1.3; }
.milestone-word { font-size: 1.5rem; color: var(--gold-light); letter-spacing: 0.06em; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: clamp(80px,10vw,130px) 0; background: var(--offwhite); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-label { justify-content: center; }

/* aggregate rating row */
.reviews-aggregate {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 9px 20px;
  background: var(--white); border: 1px solid var(--border); border-radius: 2px;
}
.agg-stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 2px; }
.agg-score {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 300;
  color: var(--charcoal); line-height: 1;
}
.agg-divider { color: var(--border); font-size: 1rem; }
.agg-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--warm-gray);
}

/* ─── CAROUSEL ─── */
.reviews-carousel {
  position: relative; max-width: 820px; margin: 0 auto;
}
.carousel-track-wrap { overflow: hidden; border-radius: 2px; }
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card-lg {
  min-width: 100%; position: relative;
  background: var(--white); border: 1px solid var(--border);
  padding: clamp(36px,5vw,64px) clamp(36px,6vw,80px);
  text-align: center;
}
.review-quote-bg {
  position: absolute; top: 18px; left: 28px;
  font-family: var(--font-display); font-size: 8rem; line-height: 0.7;
  color: var(--gold); opacity: 0.08; pointer-events: none; user-select: none;
}
.review-card-lg .review-stars {
  color: var(--gold); font-size: 0.88rem; letter-spacing: 4px; margin-bottom: 22px;
}
.review-card-lg .review-text {
  font-family: var(--font-display); font-size: clamp(1.08rem,2.2vw,1.38rem);
  font-style: italic; font-weight: 300; line-height: 1.7;
  color: var(--charcoal); margin-bottom: 30px;
}
.review-author-row {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.review-avatar-lg {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-stamp); font-size: 0.88rem; color: var(--gold);
}
.review-name-lg { font-size: 0.86rem; font-weight: 600; color: var(--charcoal); text-align: left; }
.review-meta { font-size: 0.68rem; color: var(--warm-gray); margin-top: 3px; text-align: left; }
.review-platform {
  margin-left: 12px; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); border: 1px solid rgba(200,168,75,0.25);
  padding: 4px 9px; border-radius: 2px; white-space: nowrap;
}

/* arrow buttons */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  cursor: pointer; font-size: 1.5rem; color: var(--charcoal-soft); line-height: 1;
  display: flex; align-items: center; justify-content: center; z-index: 5;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover {
  border-color: var(--gold); color: var(--gold);
  box-shadow: 0 4px 18px rgba(200,168,75,0.15);
}
.carousel-btn--prev { left: -62px; }
.carousel-btn--next { right: -62px; }

/* dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 26px;
}
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%; padding: 0; border: none;
  background: rgba(26,26,26,0.15); cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.35); }

.google-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 44px; font-size: 0.77rem; font-weight: 500; letter-spacing: 0.1em;
  color: var(--charcoal-soft); text-decoration: none; transition: color 0.2s;
}
.google-link:hover { color: var(--gold); }

/* ─── LOCATIONS ─── */
.locations { padding: clamp(80px,10vw,130px) 0; background: var(--white); }
.locations-header { margin-bottom: 52px; }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.location-card {
  border: 1px solid var(--border); border-radius: 2px;
  overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s;
}
.location-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(200,168,75,0.08);
}
.location-map {
  height: 210px; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.location-info { padding: 28px; }
.location-tag {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale); display: inline-block;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 14px;
}
.location-name {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 300;
  color: var(--charcoal); margin-bottom: 18px;
}
.location-detail {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.82rem; color: var(--charcoal-soft); margin-bottom: 11px; line-height: 1.5;
}
.location-detail strong {
  display: block; font-weight: 600; color: var(--charcoal);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px;
}
.location-actions { display: flex; gap: 9px; margin-top: 22px; flex-wrap: wrap; }
.loc-btn {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; padding: 10px 16px;
  border-radius: 2px; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.loc-btn-primary { background: var(--charcoal); color: var(--white); }
.loc-btn-primary:hover { background: var(--gold); }
.loc-btn-ghost { border: 1px solid var(--border); color: var(--charcoal-soft); }
.loc-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  margin-top: 52px; border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden;
}
.contact-form-header {
  background: var(--charcoal); padding: 26px 34px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.contact-form-title {
  font-family: var(--font-display); font-size: 1.55rem;
  font-weight: 300; color: var(--white);
}
.contact-form-title em { font-style: italic; color: var(--gold-light); }
.contact-form-body { padding: 34px; background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--charcoal-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 0.87rem;
  border: 1px solid var(--border); border-radius: 2px;
  padding: 11px 15px; background: var(--offwhite);
  color: var(--charcoal); outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-submit {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--charcoal); color: var(--white); border: none;
  padding: 13px 34px; border-radius: 2px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--gold); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer { background: var(--charcoal-mid); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; padding: 60px 0 48px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 600; color: var(--white); margin-bottom: 11px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline {
  font-size: 0.77rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.38); max-width: 230px;
}
.footer-socials { display: flex; gap: 9px; margin-top: 22px; }
.social-icon {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.42);
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.42);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.22); font-weight: 300; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a {
  font-size: 0.66rem; color: rgba(255,255,255,0.22);
  text-decoration: none; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.33); text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.44); }
.wa-float svg { width: 24px; height: 24px; fill: white; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero { height: auto; min-height: unset; grid-template-columns: 1fr; }
  .hero-left { height: auto; padding: 36px 24px 40px; justify-content: flex-start; gap: 28px; }
  .hero-left::after { display: none; }
  .hero-ornament { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-stats { gap: 20px; padding-top: 20px; }
  .hero-right { height: 65vw; }
  .family-intro .wrap, .about .wrap { grid-template-columns: 1fr; gap: 44px; }
  .family-intro-img { aspect-ratio: 16/9; }
  .about-img { aspect-ratio: 16/9; max-height: 360px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .carousel-btn--prev { left: -48px; }
  .carousel-btn--next { right: -48px; }
  .locations-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-tile.tall, .gallery-tile.wide { grid-row: auto; grid-column: auto; }
  .gallery-tile { aspect-ratio: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .carousel-btn { display: none; }
  .services-grid, .pricing-grid, .family-pillars { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .about-milestones { gap: 0; }
  .milestone-item { padding: 0 12px; }
  .milestone-num { font-size: 1.8rem; }
  .milestone-word { font-size: 1.1rem; }
  .nav-cta .btn-outline { display: none; }
}
