/* =========================
   Brand Fonts
========================= */
@font-face {
  font-family: "Antic Didone";
  src: url("../../font/AnticDidone-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../../MODELOS/DSMODEL01/assets/UcC73FwrK3iLTeHuS_nVMrMxCp50Sj_1ab1ad55902b.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Design Tokens
========================= */
:root {
  --font-brand: "Antic Didone", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --color-forest-950: #08260f;
  --color-forest-800: #123a22;
  --color-forest-600: #285939;
  --color-linen-50: #fffdf8;
  --color-linen-100: #fbf7ed;
  --color-linen-200: #f3eadc;
  --color-copper-500: #c3863d;
  --color-copper-600: #af7042;
  --color-white-soft: rgba(255, 253, 248, 0.92);
  --color-white-muted: rgba(255, 253, 248, 0.72);
  --color-border-light: rgba(255, 253, 248, 0.28);
  --color-border-dark: rgba(8, 38, 15, 0.14);

  --container-wide: 1440px;
  --header-height: 86px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 48px rgba(8, 38, 15, 0.16);
  --transition-base: 260ms ease;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================
   Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-linen-50);
  background: var(--color-forest-950);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(195, 134, 61, 0.55);
  outline-offset: 4px;
}

.container-wide {
  width: min(calc(100% - 32px), var(--container-wide));
  margin-inline: auto;
}

/* =========================
   Navbar
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(8, 38, 15, 0.08);
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(22px);
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  border-color: rgba(8, 38, 15, 0.12);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 34px rgba(8, 38, 15, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: var(--space-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: max-content;
}

.brand-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand-name {
  color: var(--color-forest-950);
  font-family: var(--font-brand);
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 34px);
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-menu a {
  position: relative;
  color: rgba(8, 38, 15, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-copper-500);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--color-forest-950);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(8, 38, 15, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.62);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  border-radius: var(--radius-pill);
  background: var(--color-forest-950);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  width: 100%;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(195, 134, 61, 0.24), transparent 28%),
    linear-gradient(135deg, var(--color-forest-950), var(--color-forest-800));
}

.hero-media,
.hero-video,
.hero-end-image,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-video {
  z-index: 2;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1200ms var(--ease-out), filter 1200ms var(--ease-out);
}

.hero-end-image {
  z-index: 1;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.01);
}

.hero.is-video-ended .hero-video {
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}

.hero-fallback {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(8, 38, 15, 0.18), rgba(8, 38, 15, 0.68)),
    radial-gradient(circle at 30% 20%, rgba(216, 231, 240, 0.28), transparent 30%),
    radial-gradient(circle at 72% 62%, rgba(195, 134, 61, 0.26), transparent 34%),
    linear-gradient(135deg, #0b2b17 0%, #1c4a2c 46%, #d4a15d 120%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 38, 15, 0.28) 0%, rgba(8, 38, 15, 0.46) 48%, rgba(8, 38, 15, 0.72) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46));
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 80%, transparent);
}

.hero-content {
  width: min(calc(100% - 32px), 1120px);
  margin-inline: auto;
  padding-top: var(--header-height);
  text-align: center;
}

.hero-title {
  max-width: 1020px;
  margin: 0 auto;
  color: var(--color-linen-50);
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 4.3vw, 4.3rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
  animation: heroTitleIn 900ms var(--ease-out) both;
}

.hero-title span {
  color: var(--color-copper-500);
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: var(--space-8);
  padding: 0 var(--space-8);
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: var(--radius-pill);
  color: var(--color-forest-950);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 44px rgba(8, 38, 15, 0.2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  animation: heroTitleIn 900ms var(--ease-out) 160ms both;
}

.hero-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, var(--color-copper-500), #2f9d94 48%, var(--color-forest-800));
  opacity: 0;
  transform: translateX(-104%);
  transition: transform 520ms var(--ease-out), opacity 260ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--color-linen-50);
  box-shadow: 0 22px 54px rgba(8, 38, 15, 0.28);
  transform: translateY(-2px);
}

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.hero-cta:active {
  transform: translateY(0) scale(0.98);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::after {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(var(--color-linen-50), var(--color-linen-50)) center 14px / 1px 12px no-repeat,
    rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(14px);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* =========================
   About Section
========================= */
.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 11vw, 150px) 0;
  color: var(--color-forest-950);
  background:
    radial-gradient(circle at 18% 22%, rgba(195, 134, 61, 0.16), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(47, 157, 148, 0.12), transparent 30%),
    linear-gradient(180deg, var(--color-linen-100), var(--color-linen-200));
}

.about-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(8, 38, 15, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 15, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.about-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.02fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
}

.about-photos {
  position: relative;
  min-height: clamp(430px, 46vw, 610px);
}

.photo-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(38vw, 285px);
  margin: 0;
  padding: clamp(8px, 1.1vw, 14px);
  border: 1px solid rgba(8, 38, 15, 0.1);
  border-radius: 4px;
  background: var(--color-linen-50);
  box-shadow: 0 28px 70px rgba(8, 38, 15, 0.16);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.photo-card::after {
  display: block;
  height: clamp(18px, 2vw, 30px);
  content: "";
}

.photo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.96) contrast(1.02);
}

.photo-card:hover {
  box-shadow: 0 34px 86px rgba(8, 38, 15, 0.22);
  z-index: 5;
}

.photo-card-one {
  z-index: 1;
  transform: translate(-92%, -44%) rotate(-10deg);
}

.photo-card-two {
  z-index: 3;
  transform: translate(-50%, -51%) rotate(1deg);
}

.photo-card-three {
  z-index: 2;
  transform: translate(-8%, -43%) rotate(10deg);
}

.photo-card-one:hover {
  transform: translate(-94%, -48%) rotate(-6deg);
}

.photo-card-two:hover {
  transform: translate(-50%, -56%) rotate(0deg);
}

.photo-card-three:hover {
  transform: translate(-6%, -48%) rotate(6deg);
}

.about-content {
  max-width: 620px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  color: var(--color-copper-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.about-content h2 {
  margin: 0;
  color: var(--color-forest-950);
  font-family: var(--font-brand);
  font-size: clamp(2.08rem, 4.48vw, 4.96rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-wrap: balance;
}

.about-content p {
  max-width: 560px;
  margin: var(--space-8) 0 0;
  color: rgba(8, 38, 15, 0.68);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.78;
}

/* =========================
   Options Section
========================= */
.options-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 168px) 0;
  color: var(--color-forest-950);
  background:
    radial-gradient(circle at 50% 0%, rgba(195, 134, 61, 0.1), transparent 32%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 56%, #fbf7ed 100%);
}

.options-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(8, 38, 15, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 15, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.options-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at center, rgba(255, 253, 248, 0.92) 0%, rgba(255, 253, 248, 0.82) 34%, rgba(255, 253, 248, 0.42) 68%, rgba(255, 253, 248, 0.18) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.86), transparent 24%, transparent 76%, rgba(255, 253, 248, 0.86));
}

.options-photo-marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.options-photo-track {
  display: flex;
  width: max-content;
  animation: optionsMarquee 54s linear infinite;
  will-change: transform;
}

.options-photo-set {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  padding-right: clamp(18px, 2.4vw, 34px);
}

.marquee-photo {
  width: clamp(170px, 17vw, 270px);
  margin: 0;
  padding: clamp(7px, 0.8vw, 12px);
  border: 1px solid rgba(8, 38, 15, 0.08);
  border-radius: 5px;
  background: var(--color-linen-50);
  box-shadow: 0 22px 58px rgba(8, 38, 15, 0.13);
  opacity: 0.65;
  filter: saturate(0.86) contrast(0.96) blur(0.4px);
  transition: opacity 520ms var(--ease-out), filter 520ms var(--ease-out), box-shadow 520ms var(--ease-out);
}

.marquee-photo::after {
  display: block;
  height: 22px;
  content: "";
}

.marquee-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}

.marquee-photo:nth-child(3n + 1) {
  transform: translateY(-54px) rotate(-3deg);
}

.marquee-photo:nth-child(3n + 2) {
  transform: translateY(48px) rotate(2deg);
}

.marquee-photo:nth-child(3n) {
  transform: translateY(-4px) rotate(-1deg);
}

.options-section:hover .marquee-photo {
  opacity: 1;
  filter: saturate(1) contrast(1.02) blur(0);
  box-shadow: 0 28px 72px rgba(8, 38, 15, 0.2);
}

.options-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1120px);
  margin-inline: auto;
  text-align: center;
}

.options-container .section-eyebrow {
  justify-content: center;
}

.options-container .section-eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.options-title {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  color: var(--color-forest-950);
  font-family: var(--font-brand);
  font-size: clamp(2.35rem, 5.4vw, 6.1rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-wrap: balance;
}

.rotating-line {
  position: relative;
  display: block;
  min-height: 1.06em;
  color: var(--color-copper-600);
}

.rotating-word {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(7px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out), filter 620ms var(--ease-out);
}

.rotating-word.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.options-container p {
  max-width: 884px;
  margin: var(--space-8) auto 0;
  color: rgba(8, 38, 15, 0.64);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

.section-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: var(--space-8);
  padding: 0 var(--space-8);
  border: 1px solid rgba(8, 38, 15, 0.1);
  border-radius: var(--radius-pill);
  color: var(--color-linen-50);
  background: var(--color-forest-950);
  box-shadow: 0 18px 44px rgba(8, 38, 15, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.section-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, var(--color-copper-500), #2f9d94 48%, var(--color-forest-800));
  opacity: 0;
  transform: translateX(-104%);
  transition: transform 520ms var(--ease-out), opacity 260ms ease;
}

.section-cta:hover,
.section-cta:focus-visible {
  box-shadow: 0 22px 54px rgba(8, 38, 15, 0.22);
  transform: translateY(-2px);
}

.section-cta:hover::before,
.section-cta:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.section-cta:active {
  transform: translateY(0) scale(0.98);
}

/* =========================
   Reviews Section
========================= */
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 158px) 0;
  color: var(--color-linen-50);
  background:
    radial-gradient(circle at 12% 12%, rgba(195, 134, 61, 0.22), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(47, 157, 148, 0.16), transparent 28%),
    linear-gradient(135deg, var(--color-forest-950), var(--color-forest-800));
}

.reviews-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.reviews-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.reviews-header .section-eyebrow {
  color: var(--color-copper-500);
}

.reviews-header h2 {
  max-width: 780px;
  margin: 0;
  color: var(--color-linen-50);
  font-family: var(--font-brand);
  font-size: clamp(2.35rem, 5.3vw, 5.9rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-wrap: balance;
}

.rating-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.rating-panel article {
  padding: var(--space-6);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.1);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.rating-panel span {
  display: block;
  color: var(--color-white-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rating-panel strong {
  display: block;
  margin-top: var(--space-3);
  color: var(--color-linen-50);
  font-family: var(--font-brand);
  font-size: clamp(1.52rem, 2.48vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.review-card {
  position: relative;
  min-height: 310px;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.82));
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.16);
  color: var(--color-forest-950);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.review-card::before {
  position: absolute;
  top: -32px;
  right: -22px;
  color: rgba(195, 134, 61, 0.16);
  content: "“";
  font-family: var(--font-brand);
  font-size: 9rem;
  line-height: 1;
}

.review-card::after {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  z-index: 2;
  min-height: 28px;
  padding: 0 var(--space-3);
  border: 1px solid rgba(8, 38, 15, 0.08);
  border-radius: var(--radius-pill);
  color: rgba(8, 38, 15, 0.68);
  background: rgba(255, 253, 248, 0.68);
  content: attr(data-platform);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 28px;
}

.review-card[data-platform="Airbnb"]::after {
  color: #ff385c;
  content: "Airbnb";
}

.review-card[data-platform="Booking.com"]::after {
  color: #003b95;
  content: "Booking.com";
}

.review-card:hover {
  border-color: rgba(195, 134, 61, 0.45);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.24);
  transform: translateY(-8px);
}

.review-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 12%, rgba(195, 134, 61, 0.22), transparent 28%),
    linear-gradient(145deg, #fffdf8, #f3eadc);
}

.review-card.compact {
  min-height: 250px;
}

.booking-card {
  background:
    radial-gradient(circle at 84% 10%, rgba(0, 53, 128, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(245, 249, 255, 0.88));
}

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

.review-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(8, 38, 15, 0.08);
  border-radius: 50%;
  color: var(--color-forest-950);
  background: linear-gradient(135deg, #f3eadc, #fffdf8);
  font-weight: 850;
  letter-spacing: 0.04em;
}

.review-avatar.soft-pink {
  color: #9a4a56;
  background: #fde5ea;
}

.review-avatar.soft-blue {
  color: #2668aa;
  background: #dcecff;
}

.review-avatar.image-tone {
  color: var(--color-linen-50);
  background: linear-gradient(135deg, var(--color-copper-500), var(--color-forest-600));
}

.review-avatar.dark-avatar {
  color: var(--color-linen-50);
  background: #1e2421;
}

.review-topline h3 {
  margin: 0;
  color: var(--color-forest-950);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.2;
}

.review-topline p {
  margin: 4px 0 0;
  color: rgba(8, 38, 15, 0.58);
  font-size: 0.86rem;
  line-height: 1.3;
}

.booking-score {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px 8px 8px 0;
  color: #ffffff;
  background: #003b95;
  box-shadow: 0 14px 28px rgba(0, 59, 149, 0.24);
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1;
}

.booking-categories {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-5);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(8, 38, 15, 0.1);
}

.booking-categories span {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding-bottom: var(--space-2);
  color: rgba(8, 38, 15, 0.76);
  font-size: 0.78rem;
  line-height: 1.2;
}

.booking-categories span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: var(--radius-pill);
  content: "";
  background: #003b95;
}

.booking-title {
  position: relative;
  z-index: 1;
  margin: var(--space-5) 0 0;
  color: var(--color-forest-950);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

.review-stars {
  position: relative;
  z-index: 1;
  margin-top: var(--space-5);
  color: var(--color-copper-600);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.review-stars span {
  margin-left: var(--space-2);
  color: rgba(8, 38, 15, 0.54);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.review-text {
  position: relative;
  z-index: 1;
  margin: var(--space-5) 0 0;
  color: rgba(8, 38, 15, 0.78);
  font-size: 1rem;
  line-height: 1.66;
}

/* =========================
   Gallery Section
========================= */
.gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 160px) 0;
  color: var(--color-forest-950);
  background:
    radial-gradient(circle at 18% 18%, rgba(195, 134, 61, 0.13), transparent 30%),
    linear-gradient(180deg, var(--color-linen-100), #ffffff 54%, var(--color-linen-200));
}

.gallery-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(8, 38, 15, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 15, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.gallery-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1440px);
  margin-inline: auto;
}

.gallery-header {
  width: min(100%, 920px);
  margin: 0 auto clamp(42px, 6vw, 76px);
  text-align: center;
}

.gallery-header .section-eyebrow {
  justify-content: center;
}

.gallery-header .section-eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.gallery-header h2 {
  margin: 0;
  color: var(--color-forest-950);
  font-family: var(--font-brand);
  font-size: clamp(2.35rem, 5.2vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-wrap: balance;
}

.gallery-header p {
  max-width: 720px;
  margin: var(--space-6) auto 0;
  color: rgba(8, 38, 15, 0.64);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.72;
}

.gallery-slider {
  position: relative;
  min-height: clamp(430px, 46vw, 620px);
  overflow: hidden;
  padding: var(--space-10) 0;
}

.gallery-slider::before,
.gallery-slider::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(16vw, 180px);
  pointer-events: none;
  content: "";
}

.gallery-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-linen-100), transparent);
}

.gallery-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-linen-100), transparent);
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: clamp(360px, 40vw, 520px);
  padding-inline: calc(50% - min(38vw, 440px) / 2);
  transition: transform 760ms var(--ease-out);
  will-change: transform;
}

.gallery-slide {
  position: relative;
  flex: 0 0 clamp(190px, 22vw, 300px);
  margin: 0;
  padding: clamp(8px, 0.9vw, 13px);
  border: 1px solid rgba(8, 38, 15, 0.1);
  border-radius: 7px;
  background: var(--color-linen-50);
  box-shadow: 0 24px 62px rgba(8, 38, 15, 0.14);
  opacity: 0.5;
  filter: saturate(0.82) contrast(0.94) blur(0.45px);
  transform: scale(0.84);
  transition: flex-basis 760ms var(--ease-out), opacity 520ms var(--ease-out), filter 520ms var(--ease-out), transform 760ms var(--ease-out), box-shadow 520ms var(--ease-out);
}

.gallery-slide::after {
  display: block;
  height: clamp(18px, 2vw, 28px);
  content: "";
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
}

.gallery-slide.is-active {
  z-index: 2;
  flex-basis: min(38vw, 440px);
  opacity: 1;
  filter: saturate(1) contrast(1.02) blur(0);
  transform: scale(1);
  box-shadow: 0 34px 90px rgba(8, 38, 15, 0.24);
}

/* =========================
   Contact Section
========================= */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 156px) 0;
  color: var(--color-linen-50);
  background:
    radial-gradient(circle at 16% 18%, rgba(195, 134, 61, 0.28), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(47, 157, 148, 0.16), transparent 30%),
    linear-gradient(135deg, #061f0d 0%, var(--color-forest-950) 48%, var(--color-forest-800) 100%);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.contact-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.2fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy .section-eyebrow {
  color: var(--color-copper-500);
}

.contact-copy h2 {
  margin: 0;
  color: var(--color-linen-50);
  font-family: var(--font-brand);
  font-size: clamp(2.35rem, 5.2vw, 5.7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-wrap: balance;
}

.contact-copy p {
  max-width: 520px;
  margin: var(--space-8) 0 0;
  color: var(--color-white-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.76;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.contact-card {
  position: relative;
  min-height: 230px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 26px;
  color: var(--color-linen-50);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.13), rgba(255, 253, 248, 0.06));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  isolation: isolate;
  overflow: hidden;
  transition: transform 360ms var(--ease-out), border-color 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
}

.contact-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, rgba(195, 134, 61, 0.88), rgba(47, 157, 148, 0.7), rgba(255, 253, 248, 0.18));
  opacity: 0;
  transform: translateX(-105%) skewX(-8deg);
  transition: transform 680ms var(--ease-out), opacity 300ms ease;
}

.contact-card::after {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 50%;
  content: "";
  opacity: 0.5;
  transition: transform 520ms var(--ease-out), opacity 360ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(255, 253, 248, 0.34);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}

.contact-card:hover::before,
.contact-card:focus-visible::before {
  opacity: 1;
  transform: translateX(0) skewX(0deg);
}

.contact-card:hover::after,
.contact-card:focus-visible::after {
  opacity: 0.9;
  transform: translate(-18px, -18px) scale(1.12);
}

.contact-card-featured {
  grid-column: span 2;
  min-height: 260px;
  background:
    radial-gradient(circle at 80% 18%, rgba(195, 134, 61, 0.3), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.08));
}

.contact-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 18px;
  color: var(--color-linen-50);
  background: rgba(255, 253, 248, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

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

.platform-icon {
  font-size: 1.35rem;
  font-weight: 900;
}

.platform-airbnb .platform-icon {
  color: #ff385c;
  background: rgba(255, 56, 92, 0.1);
}

.platform-booking .platform-icon {
  color: #ffffff;
  background: #003b95;
}

.contact-label,
.contact-card strong,
.contact-card small {
  position: relative;
  z-index: 1;
}

.contact-label {
  display: block;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: var(--space-3);
  color: var(--color-linen-50);
  font-size: clamp(0.76rem, 1.19vw, 1.02rem);
  font-weight: 800;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.contact-card small {
  display: block;
  margin-top: var(--space-4);
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.92rem;
  line-height: 1.58;
}

/* =========================
   Floating Actions
========================= */
.floating-actions {
  position: fixed;
  top: 50%;
  right: clamp(14px, 2vw, 28px);
  z-index: 30;
  display: grid;
  gap: var(--space-3);
  padding: var(--space-2);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 24px;
  background: rgba(8, 38, 15, 0.62);
  box-shadow: 0 18px 54px rgba(8, 38, 15, 0.26);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.floating-action {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 18px;
  color: var(--color-linen-50);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: none;
  font-size: 1.1rem;
  font-weight: 900;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.floating-action::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--color-copper-500), #2f9d94, var(--color-forest-800));
  opacity: 0;
  transform: translateX(-102%);
  transition: opacity 260ms ease, transform 520ms var(--ease-out);
}

.floating-action:hover,
.floating-action:focus-visible {
  border-color: rgba(255, 253, 248, 0.46);
  box-shadow: 0 20px 54px rgba(8, 38, 15, 0.32);
  transform: translateX(-6px) scale(1.04);
}

.floating-action:hover::before,
.floating-action:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.floating-action svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-airbnb {
  color: #ff6b82;
}

.floating-booking {
  color: #ffffff;
  background: rgba(0, 59, 149, 0.82);
}

/* =========================
   Animations
========================= */
@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes optionsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

/* =========================
   Responsive
========================= */
@media (max-width: 1120px) {
  .nav-menu {
    gap: var(--space-4);
  }

  .nav-menu a {
    font-size: 0.72rem;
  }
}

@media (max-width: 920px) {
  .reviews-header {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-featured {
    grid-column: span 2;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-content {
    max-width: 720px;
  }

  .about-photos {
    min-height: clamp(330px, 58vw, 480px);
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    padding: 15px var(--space-2);
    border-radius: 24px;
    background: rgba(8, 38, 15, 0.9);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition-base), transform var(--transition-base);
  }

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

  .nav-menu a {
    display: block;
    width: 100%;
    justify-self: stretch;
    color: var(--color-linen-50);
    padding: var(--space-5);
    border-bottom: 1px solid rgba(255, 253, 248, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.86rem;
    text-align: left;
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    color: var(--color-linen-50);
    background: rgba(255, 253, 248, 0.08);
  }

  .nav-menu a::after {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 74px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    max-width: 178px;
    font-size: 1.18rem;
    line-height: 0.96;
  }

  .hero-title {
    font-size: clamp(1.35rem, 6.5vw, 2.5rem);
    line-height: 0.96;
  }

  .hero-scroll {
    bottom: var(--space-6);
    font-size: 0;
  }

  .about-section {
    padding: 76px 0 88px;
  }

  .about-photos {
    min-height: 430px;
  }

  .photo-card {
    width: min(62vw, 230px);
    padding: 8px;
  }

  .photo-card::after {
    height: 18px;
  }

  .photo-card-one {
    transform: translate(-86%, -44%) rotate(-9deg);
  }

  .photo-card-two {
    transform: translate(-50%, -52%) rotate(1deg);
  }

  .photo-card-three {
    transform: translate(-14%, -44%) rotate(9deg);
  }

  .photo-card-one:hover {
    transform: translate(-88%, -48%) rotate(-6deg);
  }

  .photo-card-two:hover {
    transform: translate(-50%, -56%) rotate(0deg);
  }

  .photo-card-three:hover {
    transform: translate(-12%, -48%) rotate(6deg);
  }

  .about-content h2 {
    font-size: clamp(1.88rem, 9.6vw, 3.52rem);
  }

  .about-content p {
    margin-top: var(--space-6);
    font-size: 1rem;
  }

  .options-section {
    padding: 78px 0 92px;
  }

  .options-title {
    gap: var(--space-2);
    font-size: clamp(2.05rem, 10.5vw, 3.8rem);
  }

  .options-container p {
    margin-top: var(--space-6);
    font-size: 1rem;
  }

  .reviews-section {
    padding: 78px 0 92px;
  }

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

  .rating-panel strong {
    font-size: clamp(1.76rem, 9.6vw, 2.56rem);
  }

  .review-featured {
    grid-column: auto;
  }

  .review-card,
  .review-card.compact {
    min-height: auto;
  }

  .review-stars span {
    display: block;
    margin: var(--space-2) 0 0;
  }

  .booking-categories {
    grid-template-columns: 1fr;
  }

  .review-card::after {
    top: var(--space-4);
    right: var(--space-4);
  }

  .gallery-section {
    padding: 78px 0 94px;
  }

  .gallery-slider {
    min-height: 390px;
    padding: var(--space-6) 0;
  }

  .gallery-track {
    min-height: 330px;
    padding-inline: calc(50% - min(72vw, 260px) / 2);
  }

  .gallery-slide {
    flex-basis: min(54vw, 210px);
  }

  .gallery-slide.is-active {
    flex-basis: min(72vw, 260px);
  }

  .contact-section {
    padding: 78px 0 94px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: relative;
    top: auto;
  }

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

  .contact-card-featured {
    grid-column: auto;
  }

  .contact-card {
    min-height: auto;
  }

  .floating-actions {
    top: auto;
    right: 16px;
    bottom: 16px;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 22px;
    transform: none;
  }

  .floating-action {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .floating-action:hover,
  .floating-action:focus-visible {
    transform: translateY(-4px) scale(1.03);
  }
}
