/* ============================================================
   Nesta REAL ESTATE – Design System
   Brand: Forest Green · Nesta Gold (#f1a22a) · Black Onyx · Warm Ivory
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Brand colours */
  --black: #050505;
  --green-dark: #1d2c25;
  --green: #385237;
  --green-mid: #4a6b47;
  --green-bright: #759564;
  --green-light: rgba(56, 82, 55, 0.14);

  --gold: #f1a22a;
  --gold-light: #ffd36a;
  --gold-pale: rgba(241, 162, 42, 0.18);
  --gold-gradient: linear-gradient(135deg, #f1a22a 0%, #fff0a6 50%, #f1a22a 100%);

  --marble: #f7f0e3;
  --marble-dark: #efe1c8;
  --surface: #fffaf0;

  --text: #1a2418;
  --text-mid: #2d4530;
  --muted: #5a6e56;
  --on-dark: rgba(255, 250, 240, 0.92);
  --on-dark-muted: rgba(255, 250, 240, 0.64);
  --border: rgba(29, 44, 37, 0.12);
  --border-gold: rgba(241, 162, 42, 0.38);
  --border-green: rgba(56, 82, 55, 0.28);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  /* Misc */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.20);
  --shadow-gold: 0 8px 32px rgba(241, 162, 42, 0.28);
  --trans: 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--marble);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* ── Gold divider line ──────────────────────────────────────── */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1rem auto 0;
}

/* ── Utility: screen reader only ───────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background-color var(--trans);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(241, 162, 42, 0.42);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold-pale);
  color: #fff;
  transform: translateY(-2px);
}

.btn--green {
  background-color: var(--green);
  color: #fff;
  box-shadow: 0 8px 28px rgba(29, 44, 37, 0.45);
}

.btn--green:hover {
  background-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(56, 82, 55, 0.55);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--full {
  width: 100%;
  text-align: center;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
}

.site-header--transparent {
  background: transparent;
}

.site-header--solid {
  background: rgba(248, 246, 241, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
  min-width: 0;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.logo__image {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--green);
  text-transform: uppercase;
}

.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Nav */
.nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
}

.nav__list a {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: color var(--trans), background var(--trans);
  color: var(--green);
}

.nav__list a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

/* Nav CTA */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--green);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.nav__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  width: 100%;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid rgba(241, 162, 42, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.language-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: transparent;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans);
}

.language-switcher__button:hover,
.language-switcher__button.is-active {
  background: var(--gold-gradient);
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(241, 162, 42, 0.24);
}

.site-header--hero .language-switcher {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(241, 162, 42, 0.38);
}

.site-header--hero .language-switcher__button {
  color: rgba(255, 255, 255, 0.88);
}

.site-header--hero .language-switcher__button:hover,
.site-header--hero .language-switcher__button.is-active {
  color: var(--green-dark);
}

.translate-hidden,
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body {
  top: 0 !important;
}

/* header over hero: white items */
.site-header--hero .logo__name {
  color: #fff;
}

.site-header--hero .logo__tagline {
  color: var(--gold-light);
}

.site-header--hero .nav__list a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header--hero .nav__list a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-header--hero .nav__toggle span {
  background-color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__bg.is-loaded {
  transform: scale(1);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(29, 44, 37, 0.94) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(circle at 85% 20%, rgba(56, 82, 55, 0.28), transparent 40%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 6rem;
  padding-top: 10rem;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: flex-end;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-gradient);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fffaf0;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 2.5rem;
  max-width: 44ch;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero metrics */
.hero-metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-metrics__item dt {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}

.hero-metrics__item dd {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.3rem;
}

/* Hero side panel */
.hero-panel {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(241, 162, 42, 0.32);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: 300px;
  max-width: 320px;
}

.hero-form__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}

.hero-form__group {
  margin-bottom: 1rem;
}

.hero-form__group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.hero-form__group input,
.hero-form__group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(241, 162, 42, 0.32);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 0.88rem;
  transition: border-color var(--trans), background var(--trans);
}

.hero-form__group input:focus,
.hero-form__group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.13);
}

.hero-form__group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form__group select option {
  background: var(--green-dark);
  color: #fff;
}

.hero-form__submit {
  margin-top: 0.5rem;
}

.hero-form__note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0.75rem 0 0;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.props-hero,
.experience-hero,
.prop-detail-hero,
.page-video-header {
  overflow: hidden;
}

.props-hero__bg,
.experience-hero__bg,
.prop-detail-hero__bg {
  z-index: 0;
}

.props-hero__vignette,
.experience-hero__vignette,
.prop-detail-hero__vignette {
  z-index: 1;
}

.props-hero__inner,
.experience-hero__inner,
.prop-detail-hero__content,
.page-video-header > .container {
  position: relative;
  z-index: 2;
}

.page-video-header {
  position: relative;
}

.page-video-header__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(29, 44, 37, 0.82) 0%, rgba(0, 0, 0, 0.34) 100%),
    radial-gradient(circle at 15% 80%, rgba(56, 82, 55, 0.22), transparent 45%);
}

.page-video-header .section-eyebrow,
.page-video-header .section__title,
.page-video-header .section__subtitle {
  color: #fff;
}

.page-video-header .section__title em {
  color: var(--gold-light);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section {
  padding: 6rem 0;
}

.section--sm {
  padding: 4rem 0;
}

.section--dark {
  background: var(--green-dark);
  color: var(--on-dark);
}

.section--mid {
  background: var(--green);
  color: var(--on-dark);
}

.section--marble {
  background: var(--marble);
}

.section--marble-dark {
  background: var(--marble-dark);
}

.section--surface {
  background: var(--surface);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
}

.section-eyebrow--dark {
  color: var(--gold-light);
}

.section-eyebrow--dark::before {
  opacity: 0.8;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-dark);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.section__title--light {
  color: #fff;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__title--light em {
  color: var(--gold-light);
}

.section__subtitle {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 55ch;
  line-height: 1.8;
  margin: 0;
}

.section__subtitle--light {
  color: var(--on-dark-muted);
}

/* ============================================================
   COLLECTION CARDS  (property cards)
   ============================================================ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.collection-card__image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card__image {
  transform: scale(1.06);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  transition: opacity var(--trans);
}

.collection-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: var(--green-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.collection-card__wish {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
}

.collection-card__wish:hover {
  background: rgba(255, 255, 255, 0.25);
}

.collection-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  border-top: 2px solid var(--gold-pale);
}

.collection-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 0 0 0.35rem;
}

.collection-card__location {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.collection-card__location::before {
  content: '✦';
  font-size: 0.5rem;
  color: var(--gold);
}

.collection-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}

.collection-card__link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 1px;
  transition: color var(--trans), border-color var(--trans);
}

.collection-card__link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.services-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.services-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(241, 162, 42, 0.38);
  border-radius: 999px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(241, 162, 42, 0.22);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: background var(--trans), border-color var(--trans);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(201, 168, 76, 0.45);
}

.service-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.75rem;
}

.service-card__copy {
  font-size: 0.88rem;
  color: var(--on-dark-muted);
  line-height: 1.75;
  margin: 0;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(241, 162, 42, 0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 1.5rem;
}

.pillar {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(241, 162, 42, 0.22);
  position: relative;
}

.pillar:last-child {
  border-right: none;
}

.pillar__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(241, 162, 42, 0.22);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}

.pillar__copy {
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.destination-card__image-wrapper {
  position: absolute;
  inset: 0;
}

.destination-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-card__image {
  transform: scale(1.07);
}

.destination-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.destination-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.destination-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.4rem;
}

.destination-card__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.destination-card:hover .destination-card__copy {
  max-height: 80px;
}

/* ============================================================
   STEPS SECTION
   ============================================================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.steps__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steps__badge {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}

.steps__content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
}

.steps__content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   CONTACT CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 38%, var(--gold) 100%);
  padding: 4rem 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.35rem;
}

.cta-band__text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    radial-gradient(circle at 0% 0%, rgba(241, 162, 42, 0.14), transparent 55%),
    radial-gradient(circle at 100% 80%, rgba(56, 82, 55, 0.35), transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--green-dark) 55%, var(--green) 100%);
  color: var(--on-dark);
  padding-top: 4rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand__logo {
  width: 140px;
  margin-bottom: 1rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.footer-brand__tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.25rem;
}

.footer-brand__text {
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  line-height: 1.8;
  margin: 0;
}

.site-footer__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.25rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__list li {
  font-size: 0.88rem;
  color: var(--on-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Footer form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-form__row label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-form__row input,
.footer-form__row select {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(241, 162, 42, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.85rem;
  transition: border-color var(--trans);
}

.footer-form__row input:focus,
.footer-form__row select:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-form__row select option {
  background: var(--green-dark);
}

/* Footer bottom */
.site-footer__bottom {
  padding: 1.5rem 0 2rem;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--trans);
}

.site-footer__links a:hover {
  color: var(--gold-light);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--left.is-visible,
.reveal--right.is-visible {
  transform: none;
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  /* move to below hero on small screens */
  .hero__metrics {
    gap: 1.5rem;
  }

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

  .destinations-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(241, 162, 42, 0.22);
  }

  .pillar:last-child {
    border-bottom: none;
  }

  .services-header {
    grid-template-columns: 1fr;
  }

  .services-tags {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 1rem;
  }

  .nav {
    gap: 0.75rem;
  }

  .nav__list a {
    font-size: 0.62rem;
    padding-inline: 0.5rem;
  }

  .nav__tools {
    gap: 0.65rem;
  }

  .nav__wordmark .btn {
    padding: 0.68rem 1.25rem;
    font-size: 0.68rem;
  }

  .language-switcher {
    gap: 0.2rem;
    padding: 0.2rem;
  }

  .language-switcher__button {
    padding: 0.32rem 0.45rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    align-items: center;
  }

  .nav {
    flex: 0 0 auto;
    flex-direction: row;
    justify-content: flex-end;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    width: min(320px, calc(100vw - 3rem));
    background: rgba(255, 250, 240, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--green);
    font-size: 0.72rem;
  }

  .site-header--hero .nav__list {
    background: rgba(0, 0, 0, 0.94);
  }

  .site-header--hero .nav__list a {
    color: rgba(255, 255, 255, 0.9);
  }

  .nav__toggle {
    display: flex;
    order: 2;
  }

  .nav__tools {
    width: auto;
  }

  .language-switcher__button span:last-child {
    display: none;
  }

  .nav__wordmark {
    display: none;
  }
}

@media (max-width: 560px) {
  .logo__wordmark {
    display: none;
  }

  .site-header__inner {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .site-header__inner {
    padding: 1rem 0;
  }

  .nav__cta {
    display: none;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(248, 246, 241, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    display: block;
  }

  .nav__toggle {
    display: flex;
  }

  .site-header--hero .nav__list {
    background: rgba(0, 0, 0, 0.97);
  }

  .site-header--hero .nav__list a {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__inner {
    padding-bottom: 4rem;
  }

  .hero-metrics {
    gap: 1.5rem;
  }

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

  .destinations-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .destinations-row {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Comparison styles removed - moved to comparar.php standalone tool */
.body--header-solid main { padding-top: 80px; }

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */
.experience-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.experience-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/villa-6.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.experience-hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(29, 44, 37, 0.92) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 20% 70%, rgba(241, 162, 42, 0.22), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(56, 82, 55, 0.3), transparent 40%);
}

.experience-hero__inner {
  position: relative;
  z-index: 2;
  padding: 10rem 0 5rem;
  max-width: 760px;
}

.experience-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.25rem;
}

.experience-hero__title em {
  color: var(--gold-light);
  font-style: italic;
}

.experience-hero__subtitle {
  max-width: 58ch;
  margin: 0 0 2.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.85;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.experience-card {
  min-height: 280px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 241, 0.95)),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.experience-card__number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.42);
  margin-bottom: 1.25rem;
}

.experience-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 0 0 0.8rem;
}

.experience-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

.experience-process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.experience-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.experience-process__steps li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(241, 162, 42, 0.22);
}

.experience-process__steps span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.experience-process__steps p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.reservation-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.reservation-highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.reservation-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-mid);
  font-size: 0.9rem;
}

.reservation-highlights li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.25rem;
}

.reservation-form {
  padding: 2rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.reservation-form,
.reservation-form__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservation-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.reservation-form__row {
  gap: 0.35rem;
}

.reservation-form__row label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.reservation-form__row input,
.reservation-form__row select,
.reservation-form__row textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--marble);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.reservation-form__row textarea {
  resize: vertical;
}

.reservation-form__row input:focus,
.reservation-form__row select:focus,
.reservation-form__row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.form-confirmation {
  margin: 0;
  color: var(--green);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .experience-grid,
  .experience-process,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .experience-process {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .experience-hero__inner {
    padding-bottom: 4rem;
  }

  .experience-process__steps li,
  .reservation-form__grid {
    grid-template-columns: 1fr;
  }

  .reservation-form {
    padding: 1.4rem;
  }
}

