:root {
  --sage: #7c8b6f;
  --sage-dark: #5c6b50;
  --lavender: #a99bc7;
  --terracotta: #c98a5e;
  --cream: #faf6f0;
  --cream-2: #f3ece1;
  --ink: #2e2a26;
  --ink-soft: #5c564f;
  --line: rgba(46, 42, 38, 0.1);
  --shadow: 0 20px 50px -20px rgba(92, 75, 50, 0.25);
  --radius: 22px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  font-size: 1.02rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(92, 107, 80, 0.6);
  position: relative;
  z-index: 1;
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(92, 107, 80, 0.6);
  z-index: -1;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(92, 107, 80, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(92, 107, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 107, 80, 0); }
}
.btn--primary:hover { background: var(--sage); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--small { padding: 10px 22px; font-size: 0.85rem; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-block;
  margin-top: 22px;
  font-weight: 500;
  color: var(--sage-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Announcement bar */
.announce {
  background: linear-gradient(90deg, var(--sage-dark) 0%, #4a5940 55%, var(--sage-dark) 100%);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  align-self: center;
  border: 2px solid var(--terracotta);
}
.logo__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--ink); }

.nav-cta { display: inline-flex; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 150px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(169, 155, 199, 0.28), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(201, 138, 94, 0.22), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(124, 139, 111, 0.2), transparent 45%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .eyebrow { text-align: center; }
.hero__subtitle {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 22px 0 34px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__stats {
  display: flex;
  gap: 50px;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sage-dark);
}
.hero__stats span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Hero — modo día (por defecto, antes de que cargue el JS) */
.hero, .hero__bg, .hero .eyebrow, .hero h1, .hero__subtitle,
.hero__stats strong, .hero__stats span, .hero .btn--ghost {
  transition: background 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

/* Hero — modo noche */
.hero--night { background: #1b2420; }
.hero--night .hero__bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(169, 155, 199, 0.3), transparent 45%),
    radial-gradient(circle at 82% 12%, rgba(227, 197, 107, 0.12), transparent 40%),
    linear-gradient(160deg, #1c2620 0%, #212f27 55%, #241d2c 100%);
}
.hero--night .eyebrow { color: #e3c56b; }
.hero--night h1 { color: #f7f3ec; }
.hero--night .hero__subtitle { color: rgba(247, 243, 236, 0.72); }
.hero--night .hero__stats strong { color: #e3c56b; }
.hero--night .hero__stats span { color: rgba(247, 243, 236, 0.55); }
.hero--night .btn--ghost { border-color: rgba(247, 243, 236, 0.55); color: #f7f3ec; }
.hero--night .btn--ghost:hover { background: #f7f3ec; color: var(--ink); }

/* Hero — escena animada (estrellas, luna, sol, flores, colinas) */
.hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Estrellas (solo visibles de noche) */
.hero__stars {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero--night .hero__stars { opacity: 1; }
.hero__star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  animation: star-twinkle var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.6); }
}

/* Estrellas fugaces (solo de noche, aparecen a intervalos irregulares) */
.hero__shooting-stars {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero--night .hero__shooting-stars { opacity: 1; }
.hero__shooting-star {
  position: absolute;
  transform: rotate(var(--angle));
}
.hero__shooting-star-head {
  position: relative;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: shooting-star var(--duration) linear infinite;
  animation-delay: var(--delay);
}
.hero__shooting-star-head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85));
  transform: translateY(-50%);
}
@keyframes shooting-star {
  0% { opacity: 0; transform: translateX(0); }
  1% { opacity: 1; }
  6% { opacity: 1; transform: translateX(260px); }
  9% { opacity: 0; transform: translateX(280px); }
  100% { opacity: 0; transform: translateX(280px); }
}

/* Luna */
.hero__moon {
  position: absolute;
  top: 6%;
  right: 6%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fdf6e3 0%, #eadfae 55%, #cdb877 100%);
  box-shadow: 0 0 45px 12px rgba(253, 246, 227, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: moon-float 7s ease-in-out infinite;
}
.hero--night .hero__moon { opacity: 1; transform: translateY(0); }
.hero__moon-crater {
  position: absolute;
  border-radius: 50%;
  background: rgba(180, 160, 110, 0.35);
}
.hero__moon-crater--1 { width: 14px; height: 14px; top: 16px; left: 14px; }
.hero__moon-crater--2 { width: 9px; height: 9px; top: 40px; left: 34px; }
.hero__moon-crater--3 { width: 7px; height: 7px; top: 22px; left: 42px; }
@keyframes moon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sol */
.hero__sun {
  position: absolute;
  top: 5%;
  right: 8%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe9a8 0%, #f3b562 70%);
  box-shadow: 0 0 0 14px rgba(255, 210, 140, 0.18), 0 0 60px 20px rgba(255, 200, 120, 0.35);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: sun-pulse 5s ease-in-out infinite;
}
.hero--day .hero__sun { opacity: 1; transform: scale(1); }
@keyframes sun-pulse {
  0%, 100% { box-shadow: 0 0 0 14px rgba(255, 210, 140, 0.18), 0 0 60px 20px rgba(255, 200, 120, 0.35); }
  50% { box-shadow: 0 0 0 20px rgba(255, 210, 140, 0.12), 0 0 80px 30px rgba(255, 200, 120, 0.45); }
}

/* Nubes (solo de día, van derivando lentamente) */
.hero__clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__cloud {
  position: absolute;
  left: -20%;
  width: 90px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.8s ease;
  animation: cloud-drift linear infinite;
}
.hero--day .hero__cloud { opacity: 0.85; }
.hero__cloud::before,
.hero__cloud::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.hero__cloud::before { width: 50px; height: 50px; top: -24px; left: 10px; }
.hero__cloud::after { width: 36px; height: 36px; top: -16px; right: 10px; }

.hero__cloud--1 { top: 10%; transform: scale(0.85); animation-duration: 46s; animation-delay: -6s; }
.hero__cloud--2 { top: 22%; transform: scale(1.05); animation-duration: 62s; animation-delay: -28s; }
.hero__cloud--3 { top: 4%; transform: scale(0.7); animation-duration: 38s; animation-delay: -18s; }

@keyframes cloud-drift {
  from { left: -20%; }
  to { left: 120%; }
}

/* Colinas */
.hero__hills {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 140px;
}
.hero__hill--back { fill: var(--sage); opacity: 0.35; }
.hero__hill--front { fill: var(--sage-dark); opacity: 0.55; }
.hero--night .hero__hill--back { fill: #2a3a30; opacity: 0.7; }
.hero--night .hero__hill--front { fill: #1c2620; opacity: 0.9; }

/* Botón de prueba día/noche (temporal) */
.dev-toggle {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 90;
  background: #fff;
  border: 2px dashed var(--terracotta);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.dev-toggle:hover { background: var(--cream-2); }

/* Showcase (carrusel del espacio) */
.showcase {
  position: relative;
  width: 100%;
  height: clamp(360px, 55vw, 560px);
  overflow: hidden;
  background: var(--ink);
}
.showcase__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
.showcase__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.showcase__slide img,
.showcase__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 18, 16, 0.75) 0%, rgba(20, 18, 16, 0) 45%);
}
.showcase__caption {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  max-width: 80%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.showcase__arrow:hover { 
  background: rgba(255, 255, 255, 0.45); 
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.showcase__arrow--prev { left: 20px; }
.showcase__arrow--next { right: 20px; }
.showcase__dots {
  position: absolute;
  right: 28px;
  bottom: 30px;
  z-index: 1;
  display: flex;
  gap: 8px;
}
.showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.showcase__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* Marquee */
.marquee {
  background: linear-gradient(120deg, var(--sage-dark) 0%, #4a5940 50%, #5c6b50 100%);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee__track span {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about { padding: 110px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about__media { position: relative; }
.about__blob {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  position: relative;
}
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}
.about__badge span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.3;
}

.about__content p { color: var(--ink-soft); margin-top: 18px; max-width: 520px; }
.about__list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
}
.about__list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* Section head */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-head .section-sub { margin: 0 auto; }

/* Services */
.services { padding: 100px 0; background: linear-gradient(160deg, var(--cream-2) 0%, #eee3d3 55%, var(--cream-2) 100%); }

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tab-btn:hover { border-color: var(--sage); }
.tab-btn.active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.service-panel { display: none; max-width: 720px; margin: 0 auto; opacity: 0; }
.service-panel.active { display: block; animation: fadeInPanel 0.5s forwards; }
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.services__action { text-align: center; margin-top: 50px; }
.service-panel__note {
  text-align: center;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.price-list {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 10px 36px;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
}
.price-list__item,
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 14px;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 12px;
  margin: 4px 0;
}
.price-list li:hover {
  background: var(--cream-2);
  transform: scale(1.02);
}
.price-list li:not(:last-child) { border-bottom: 1px solid var(--line); }
.price-list li:hover:not(:last-child) { border-bottom-color: transparent; }
.price-list__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}
.price-list__name em {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
}
.price-list__dots { display: none; }
.price-list__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #45532e;
  white-space: nowrap;
}

/* Gallery */
.gallery { padding: 100px 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: none;
  padding: 0;
  background: var(--ink);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gallery__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  background: rgba(20, 18, 16, 0.15);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  transition: background 0.2s ease;
  pointer-events: none;
}
.gallery__item:hover .gallery__play { background: rgba(20, 18, 16, 0.05); }
.gallery__note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 18, 16, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__content {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #000;
}
.lightbox__video {
  width: 100%;
  max-height: 80vh;
  display: block;
}

/* Benefits */
.benefits { padding: 110px 0; }
.benefits__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.benefits__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.benefit h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.benefit p { color: var(--ink-soft); font-size: 0.92rem; }
.benefit::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 4px;
  margin-bottom: 12px;
}
.benefits__media { display: flex; justify-content: center; }
.benefits__circle {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}

/* Testimonials */
.testimonials {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--sage-dark) 0%, #4a5940 45%, #665b52 85%, var(--terracotta) 150%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,138,94,0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonials .eyebrow { color: rgba(255, 255, 255, 0.85); }
.testimonials h2 { color: #fff; margin-bottom: 50px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.testi {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}
.testi:hover {
  transform: translateY(-12px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}
.testi__icon { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 2rem; 
  margin-bottom: 24px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, background 0.4s ease;
}
.testi:hover .testi__icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.25);
}
.testi h3 { 
  font-family: var(--font-display); 
  color: #fff; 
  margin-bottom: 14px; 
  font-size: 1.4rem;
}
.testi p { 
  font-size: 0.98rem; 
  line-height: 1.65; 
  color: rgba(255, 255, 255, 0.9); 
}

/* Contact */
.contact { padding: 110px 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact__list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); }
.contact__list a { color: var(--sage-dark); font-weight: 500; border-bottom: 1px solid currentColor; }

.contact__map {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--cream);
}
.contact__form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { position: relative; display: flex; flex-direction: column; }
.field label { 
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.95rem; 
  color: var(--ink-soft); 
  font-weight: 400; 
  transition: all 0.2s ease;
  pointer-events: none;
  background: var(--cream);
  padding: 0 4px;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  padding: 24px 16px 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.field select { padding: 18px 16px 8px; }
.field textarea { padding-top: 24px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124, 139, 111, 0.15);
}

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field select:valid ~ label {
  top: 4px;
  font-size: 0.7rem;
  color: var(--sage-dark);
  font-weight: 500;
}
.form-note { font-size: 0.85rem; color: var(--sage-dark); min-height: 18px; }

/* Instagram */
.instagram { padding: 110px 0; background: var(--cream); }
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.instagram__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow);
}
.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram__item:hover img {
  transform: scale(1.08);
}
.instagram__item:hover .instagram__overlay {
  opacity: 1;
}
.instagram__action {
  text-align: center;
  margin-top: 50px;
}

/* Footer */
.footer { background: linear-gradient(160deg, var(--ink) 0%, #241f1a 60%, #2a2117 100%); color: rgba(255,255,255,0.85); padding: 70px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .logo__text { color: #fff; }
.footer__brand .logo__text small { color: rgba(255,255,255,0.5); }
.footer__brand p { margin-top: 14px; color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 280px; }
.footer__col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: rgba(255,255,255,0.5); }
.footer__col a { display: block; margin-bottom: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.footer__col a:hover { color: #fff; }
.footer__bottom { text-align: center; padding: 22px 0; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
  z-index: 90;
  transition: transform 0.25s ease;
}
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(92, 107, 80, 0.6);
  z-index: -1;
  animation: pulse-glow 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* Responsive */
@media (max-width: 900px) {
  .about__inner, .benefits__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: left; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .benefits__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .instagram__grid { grid-template-columns: 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 30px; }
  .price-list { padding: 4px 20px; }
  .price-list__name { font-size: 1.1rem; }
  .price-list__price { font-size: 1rem; }
  .service-tabs { gap: 8px; }
  .tab-btn { padding: 10px 16px; font-size: 0.8rem; }
  .hero__moon, .hero__sun { width: 46px; height: 46px; top: 3%; right: 5%; }
  .dev-toggle { left: 12px; bottom: 12px; font-size: 0.75rem; padding: 8px 14px; }
  .showcase { height: 70vw; }
  .showcase__caption { font-size: 1rem; left: 18px; bottom: 18px; max-width: 70%; }
  .showcase__arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .showcase__arrow--prev { left: 10px; }
  .showcase__arrow--next { right: 10px; }
  .showcase__dots { right: 16px; bottom: 16px; }

  .header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
}
