/* Base y variables */
:root {
  --color-ink: #233121;
  --color-muted: #687061;
  --color-paper: #fffaf1;
  --color-soft: #f5ecd9;
  --color-milk: rgba(255, 250, 241, 0.84);
  --color-green: #243623;
  --color-olive: #5f6f44;
  --color-gold: #9a5d13;
  --color-line: rgba(36, 54, 35, 0.12);
  --shadow-soft: 0 22px 70px rgba(36, 54, 35, 0.14);
  --shadow-card: 0 18px 46px rgba(36, 54, 35, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-pill: 999px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(154, 93, 19, 0.08), transparent 34rem),
    linear-gradient(180deg, #fff7e9 0%, #fbf5ea 42%, #f7f1e7 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  touch-action: pan-x pan-y;
}

body:not(.is-loaded) .site-header,
body:not(.is-loaded) .hero__content {
  opacity: 0;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.9rem, 5.8vw, 5rem);
  font-weight: 760;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 740;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.eyebrow {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px clamp(18px, 4vw, 42px);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-right: 0;
  border-left: 0;
  color: #fffaf1;
  background: rgba(21, 31, 19, 0.24);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header__inner {
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.12);
  background: rgba(21, 31, 19, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.brand span {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.46rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  border-radius: 0;
  padding: 8px 0;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f0c78d;
  background: transparent;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.language-switcher__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 22px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  filter: grayscale(1) saturate(0.2) brightness(1.25);
  line-height: 1;
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease, outline-color 180ms ease;
}

.language-switcher__button[data-lang-switch="es"] {
  background-image: url("../assets/flag-ar.svg");
}

.language-switcher__button[data-lang-switch="en"] {
  background-image: url("../assets/flag-us.svg");
}

.language-switcher__button img {
  display: none;
}

.language-switcher__button.is-active {
  filter: none;
  opacity: 1;
}

.language-switcher__button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.language-switcher__button:focus-visible {
  outline: 2px solid rgba(255, 250, 241, 0.58);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 14px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 250, 241, 0.12);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px max(clamp(22px, 4vw, 52px), calc((100vw - var(--max-width)) / 2 + 36px)) 72px;
  color: #fffaf1;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(21, 31, 19, 0.68), rgba(21, 31, 19, 0.28) 52%, rgba(21, 31, 19, 0.06)),
    linear-gradient(0deg, rgba(21, 31, 19, 0.44), rgba(21, 31, 19, 0.05) 46%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin-top: 60px;
  margin-left: 0;
  margin-right: auto;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 30px;
  color: var(--color-ink);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__content .eyebrow,
.hero__content h1,
.hero__content p,
.hero__actions {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: heroTextIn 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__content .eyebrow {
  animation-delay: 180ms;
}

.hero__content h1 {
  animation-delay: 300ms;
}

.hero__content p {
  animation-delay: 420ms;
}

.hero__actions {
  animation-delay: 560ms;
}

.hero__content .eyebrow {
  color: var(--color-gold);
  margin-bottom: 26px;
}

.hero__content p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(35, 49, 33, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fffaf1;
  background: rgba(52, 83, 49, 0.94);
  box-shadow: 0 16px 34px rgba(36, 54, 35, 0.24);
}

.button--primary img {
  width: 22px;
  height: 22px;
}

.button--secondary {
  color: var(--color-green);
  border-color: rgba(36, 54, 35, 0.42);
  background: rgba(255, 250, 241, 0.68);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  color: #fffaf1;
  border-color: var(--color-green);
  background: var(--color-green);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fffaf1;
  transform: translateX(-50%);
}

.hero__scroll span {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Secciones */
.section {
  padding: clamp(70px, 10vw, 126px) 20px;
}

.section__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.section__heading {
  margin-bottom: 24px;
}

.section__heading h2 {
  margin-top: 12px;
}

.intro {
  background: transparent;
}

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

.intro__item {
  isolation: isolate;
  overflow: hidden;
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
  background-clip: padding-box;
  box-shadow: var(--shadow-card);
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.intro__item span {
  color: var(--color-gold);
}

.intro__item:hover,
.intro__item:focus-within {
  border-color: rgba(154, 93, 19, 0.24);
  box-shadow: 0 26px 70px rgba(36, 54, 35, 0.18);
  transform: translate3d(0, -8px, 0) scale(1.018);
}

.intro__item:hover .intro__icon,
.intro__item:focus-within .intro__icon {
  color: #fffaf1;
  background: var(--color-gold);
  transform: rotate(-4deg) scale(1.08);
}

.intro__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(154, 93, 19, 0.1);
  transition: color 220ms ease, background 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.intro__item h3 {
  margin-top: 34px;
}

.intro__item p,
.copy-block p {
  margin-top: 16px;
  color: var(--color-muted);
}

.reviews {
  background: linear-gradient(180deg, rgba(231, 245, 244, 0.58), rgba(255, 250, 241, 0.2));
}

.reviews .section__heading {
  text-align: center;
}

.reviews .section__heading h2 {
  margin-inline: auto;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 760px) auto;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
}

.reviews-carousel__viewport {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(36, 54, 35, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  background-clip: padding-box;
  box-shadow: 0 18px 46px rgba(36, 54, 35, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(34px, 0, 0) scale(0.98);
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 260ms ease;
}

.review-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.review-card.is-leaving {
  opacity: 0;
  transform: translate3d(-34px, 0, 0) scale(0.98);
}

.review-card:hover,
.review-card:focus-within {
  border-color: rgba(95, 111, 68, 0.24);
  box-shadow: 0 28px 74px rgba(36, 54, 35, 0.16);
  transform: translate3d(0, -5px, 0) scale(1.012);
}

.review-card__stars {
  color: #9a5d13;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-card p {
  margin-top: 24px;
  color: var(--color-ink);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.42;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--color-muted);
}

.review-card__author span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--color-green);
  background: rgba(154, 93, 19, 0.1);
  font-weight: 900;
}

.review-card__author strong {
  display: block;
  color: var(--color-ink);
  line-height: 1.2;
}

.review-card__author small {
  display: block;
  margin-top: 2px;
  font-size: 0.83rem;
  font-weight: 800;
}

.reviews-carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(36, 54, 35, 0.14);
  border-radius: 50%;
  color: var(--color-green);
  background: rgba(255, 250, 241, 0.78);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background 200ms ease, transform 200ms ease;
}

.reviews-carousel__button:hover,
.reviews-carousel__button:focus-visible {
  background: #fffaf1;
  transform: scale(1.06);
}

.reviews-carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.reviews-carousel__dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 54, 35, 0.22);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.reviews-carousel__dot.is-active {
  background: var(--color-gold);
  transform: scale(1.28);
}

.split-layout,
.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.copy-block {
  max-width: 620px;
}

.copy-block h2 {
  margin-top: 12px;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 13px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  background: var(--color-paper);
  background-clip: padding-box;
  font-weight: 800;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--color-gold);
  background: rgba(154, 93, 19, 0.1);
}

.feature-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.media-card {
  isolation: isolate;
  overflow: hidden;
  border: 10px solid rgba(255, 250, 241, 0.72);
  border-radius: 38px;
  background: var(--color-soft);
  background-clip: padding-box;
  box-shadow: var(--shadow-soft);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  transition: transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.experience {
  background: rgba(255, 250, 241, 0.46);
}

/* Galería */
.gallery .section__heading {
  margin-bottom: clamp(22px, 4vw, 42px);
  text-align: center;
}

.gallery .eyebrow {
  max-width: 780px;
  margin: 0 auto;
  color: var(--color-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.gallery-carousel {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.carousel__stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 860px);
  margin: 0 auto;
  border: 8px solid rgba(255, 250, 241, 0.78);
  border-radius: 34px;
  background: var(--color-soft);
  background-clip: padding-box;
  box-shadow: var(--shadow-soft);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.carousel__stage:active {
  cursor: grabbing;
}

.carousel__figure {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vw, 640px);
  max-height: 68vh;
  overflow: hidden;
  cursor: zoom-in;
}

.carousel__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  display: block;
  object-fit: cover;
  transform: none;
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: zoom-in;
  will-change: opacity, transform;
}

.carousel__figure img.is-slide-exiting,
.lightbox__image.is-slide-exiting {
  opacity: 0;
  transform: translate3d(calc(var(--slide-direction, 1) * -34px), 0, 0) scale(0.985);
}

.carousel__figure img.is-slide-entering,
.lightbox__image.is-slide-entering {
  opacity: 0;
  transform: translate3d(calc(var(--slide-direction, 1) * 42px), 0, 0) scale(1.015);
}

.carousel__button {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 250, 241, 0.36);
  border-radius: 50%;
  color: #fffaf1;
  background: rgba(21, 31, 19, 0.44);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.carousel__button--prev {
  left: 18px;
}

.carousel__button--next {
  right: 18px;
}

.carousel__thumbs {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(7, minmax(92px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.carousel__thumb {
  min-width: 92px;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 18px;
  background: var(--color-soft);
  background-clip: padding-box;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.carousel__thumb.is-active {
  border-color: var(--color-gold);
}

.carousel__thumb img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(13, 20, 13, 0.82);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  touch-action: pan-y;
  transition: opacity 220ms ease;
  user-select: none;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__image {
  max-width: min(1120px, 96vw);
  max-height: 86vh;
  border: 8px solid rgba(255, 250, 241, 0.82);
  border-radius: 28px;
  background: var(--color-soft);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  object-fit: contain;
  cursor: grab;
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.lightbox__image:active {
  cursor: grabbing;
}

.lightbox__button {
  position: fixed;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 50%;
  color: #fffaf1;
  background: rgba(21, 31, 19, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox__button:hover,
.lightbox__button:focus-visible {
  background: rgba(36, 54, 35, 0.84);
  transform: translateY(-50%) scale(1.04);
}

.lightbox__button--prev {
  left: clamp(18px, 4vw, 56px);
}

.lightbox__button--next {
  right: clamp(18px, 4vw, 56px);
}

.lightbox__close {
  position: fixed;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.36);
  border-radius: 50%;
  color: #fffaf1;
  background: rgba(21, 31, 19, 0.58);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

/* Contacto */
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  color: #fffaf1;
  background:
    linear-gradient(90deg, rgba(21, 31, 19, 0.88), rgba(36, 54, 35, 0.72)),
    linear-gradient(0deg, rgba(36, 54, 35, 0.38), rgba(36, 54, 35, 0.38)),
    url("../images/contacto.jpg") center / cover no-repeat;
}

.contact::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(36, 54, 35, 0.18);
  content: "";
}

.contact .eyebrow {
  color: #f0c78d;
}

.contact-copy {
  display: grid;
  width: min(620px, 100%);
  min-height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-self: stretch;
  align-items: end;
}

.contact-copy__logo {
  width: min(clamp(150px, 15vw, 220px), 38vh);
  height: min(clamp(150px, 15vw, 220px), 38vh);
  flex: 0 0 auto;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.contact-copy .copy-block {
  width: 100%;
  margin-top: auto;
}

.contact .copy-block p,
.contact address a {
  color: rgba(255, 250, 241, 0.82);
}

.contact address {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-style: normal;
  font-weight: 900;
}

.contact address a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.1);
}

.contact-icon img,
.contact-icon svg {
  width: 17px;
  height: 17px;
}

.contact-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-form {
  display: grid;
  gap: 14px;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.1);
  background-clip: padding-box;
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-inline-size: 0;
  display: block;
  box-sizing: border-box;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 18px;
  padding: 14px 15px;
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.1);
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.contact-form input {
  height: 54px;
  line-height: 1.2;
}

.contact-form input[type="date"] {
  position: relative;
  min-height: 54px;
  color-scheme: dark;
}

.contact-form input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.2em;
  text-align: left;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  width: 22px;
  height: 22px;
  margin-left: 8px;
  cursor: pointer;
  filter: invert(1) sepia(1) saturate(0.2) brightness(1.8);
  opacity: 0.86;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(240, 199, 141, 0.34);
  border-color: #f0c78d;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 241, 0.6);
}

.form-status {
  min-height: 24px;
  color: #f0c78d;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  color: #fffaf1;
  background: transparent;
  box-shadow: 0 16px 34px rgba(31, 122, 59, 0.26);
  font-weight: 900;
}

.floating-whatsapp img {
  width: 58px;
  height: 58px;
}

/* Footer */
.site-footer {
  padding: 28px 20px 38px;
  color: var(--color-muted);
}

.site-footer__inner {
  width: min(var(--max-width), 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.site-footer__seo {
  width: 100%;
  margin-top: -6px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: right;
}

.brand--footer {
  color: var(--color-ink);
}

.brand--footer img {
  width: 48px;
  height: 48px;
}

/* Animaciones */
.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 34px), 0);
  transition:
    opacity 900ms ease,
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.intro__item,
.review-card,
.feature-list li,
.carousel__thumb {
  transition-delay: var(--reveal-delay, 0ms);
}

.intro__item,
.review-card {
  transition:
    opacity 900ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-list li,
.carousel__thumb {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease;
}

.reveal.is-visible .feature-list li,
.gallery-carousel.is-visible .carousel__thumb {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  .hero__media img,
  .media-card img,
  .carousel__figure img {
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .site-header {
    padding: 10px 16px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 1.22rem;
  }

  .language-switcher {
    justify-content: flex-end;
    gap: 8px;
    padding: 11px 16px 6px;
  }

  .language-switcher__button {
    width: 29px;
    height: 20px;
  }

  .nav-toggle {
    display: block;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
  }

  .site-nav {
    position: fixed;
    top: 62px;
    right: 16px;
    left: auto;
    width: min(224px, calc(100vw - 32px));
    display: grid;
    gap: 4px;
    overflow: hidden;
    padding: 10px 12px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    color: var(--color-ink);
    background: rgba(255, 250, 241, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
    text-align: left;
  }

  .site-nav .language-switcher {
    justify-content: flex-start;
    padding: 10px 12px 6px;
  }

  .intro__grid,
  .split-layout,
  .split-layout--reverse,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: auto;
    grid-template-rows: auto auto;
    gap: 28px;
  }

  .contact-copy__logo {
    width: 126px;
    height: 126px;
  }

  .split-layout--reverse .media-card {
    order: 2;
  }

  .split-layout--reverse .copy-block {
    order: 1;
  }

  .carousel__thumbs {
    grid-template-columns: repeat(7, 84px);
  }
}

@media (max-width: 640px) {
  .brand span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 86vh;
    padding: 86px 14px 34px;
    align-items: end;
  }

  .hero__content {
    margin-left: auto;
    margin-top: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(21, 31, 19, 0.34), rgba(21, 31, 19, 0.82));
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .section {
    padding-inline: 16px;
  }

  .intro__item {
    min-height: auto;
    padding: 24px;
  }

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

  .reviews-carousel__viewport {
    min-height: 410px;
  }

  .reviews-carousel__button {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .reviews-carousel__button--prev {
    left: 10px;
  }

  .reviews-carousel__button--next {
    right: 10px;
  }

  .review-card {
    padding: 28px 24px;
  }

  .media-card,
  .carousel__stage {
    border-radius: 28px;
  }

  .carousel__stage {
    border-width: 6px;
    background: #efe5d3;
  }

  .carousel__figure {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .carousel__figure img {
    aspect-ratio: auto;
  }

  .carousel__button {
    width: 38px;
    height: 38px;
    font-size: 1.55rem;
  }

  .lightbox__button {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .lightbox__button--prev {
    left: 10px;
  }

  .lightbox__button--next {
    right: 10px;
  }

  .carousel__button--prev {
    left: 10px;
  }

  .carousel__button--next {
    right: 10px;
  }

  .carousel__thumbs {
    grid-template-columns: repeat(7, 68px);
    gap: 8px;
  }

  .carousel__thumb {
    min-width: 68px;
    border-radius: 14px;
    border-width: 2px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
