:root {
  --forest: #0f1f1a;
  --forest-deep: #050806;
  --olive: #5a6a3b;
  --arena: #e7e0d3;
  --piedra: #bdaf9a;
  --terracota: #c66e4a;
  --gold: #c9a46a;
  --gold-soft: #e5bf75;
  --ivory: #fff8ea;
  --sand: #c9a46a;
  --stone: rgba(255, 248, 234, 0.72);
  --shadow: rgba(0, 0, 0, 0.52);
  --hero-image: url("./assets/hero-rancho-cinematico.webp");
  --header-height: 112px;
  --font-heading: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  --font-body: Montserrat, Lato, Avenir, Helvetica, Arial, sans-serif;
  --tracking-soft: 0.08em;
  --tracking-wide: 0.14em;
  --heading-tight: -0.025em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--forest-deep);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(201, 164, 106, 0.32);
  color: var(--ivory);
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

body:not(.is-loaded) .brand,
body:not(.is-loaded) .main-nav a,
body:not(.is-loaded) .nav-cta,
body:not(.is-loaded) .hero-kicker,
body:not(.is-loaded) .hero h1,
body:not(.is-loaded) .hero-subtitle,
body:not(.is-loaded) .hero-actions,
body:not(.is-loaded) .stat {
  opacity: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: var(--header-height);
  grid-template-columns: 188px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 54px 18px;
  transition:
    background 260ms ease,
    min-height 260ms ease,
    padding 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 84px;
  padding-top: 16px;
  padding-bottom: 14px;
  background: rgba(6, 10, 7, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  animation: fade-slide-down 900ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand img {
  display: block;
  width: clamp(118px, 9vw, 150px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
}

.main-nav,
.nav-cta,
.button,
.stat > span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  color: rgba(255, 248, 234, 0.9);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 11px;
  animation: fade-slide-down 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.main-nav a:nth-child(1) {
  animation-delay: 180ms;
}

.main-nav a:nth-child(2) {
  animation-delay: 230ms;
}

.main-nav a:nth-child(3) {
  animation-delay: 280ms;
}

.main-nav a:nth-child(4) {
  animation-delay: 330ms;
}

.main-nav a:nth-child(5) {
  animation-delay: 380ms;
}

.main-nav a:nth-child(6) {
  animation-delay: 430ms;
}

.main-nav a:nth-child(7) {
  animation-delay: 480ms;
}

.main-nav a:nth-child(8) {
  animation-delay: 530ms;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

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

.nav-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(201, 154, 77, 0.86);
  color: var(--gold-soft);
  font-size: 11px;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
  animation: fade-slide-down 780ms 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: #1b1208;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  padding: var(--header-height) 5vw 40px;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation:
    hero-reveal 1400ms ease-out both,
    slow-drift 18s 1400ms ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 24% 44%, rgba(198, 110, 74, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(5, 8, 6, 0.76) 0%, rgba(5, 8, 6, 0.44) 39%, rgba(5, 8, 6, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.28) 0%, transparent 34%, rgba(5, 8, 6, 0.82) 100%);
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46));
}

.hero-content {
  align-self: center;
  width: min(760px, 100%);
  margin-top: clamp(68px, 12vh, 132px);
  margin-bottom: clamp(18px, 3vh, 34px);
}

.hero-kicker {
  margin: 0 0 22px;
  color: rgba(225, 196, 134, 0.86);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  animation: fade-slide-up 850ms 540ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fffdf6;
  font-family: var(--font-heading);
  font-size: clamp(60px, 8.4vw, 136px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 22px 46px rgba(0, 0, 0, 0.48);
  animation: title-reveal 1100ms 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1::after {
  display: block;
  width: 140px;
  height: 1px;
  margin: 34px 0 30px;
  content: "";
  background: linear-gradient(90deg, transparent 0, var(--gold) 22%, var(--gold) 78%, transparent 100%);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 248, 234, 0.92);
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
  animation: fade-slide-up 820ms 940ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  animation: fade-slide-up 820ms 1080ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 34px;
  border: 1px solid rgba(255, 248, 234, 0.34);
  font-size: 11px;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  border-color: var(--sand);
  background: var(--sand);
  color: #23180b;
}

.button-secondary {
  color: var(--ivory);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 248, 234, 0.74);
  background: rgba(255, 248, 234, 0.09);
}

.section-kicker,
.intro .section-kicker,
.weekend-copy .section-kicker,
.stay-copy .section-kicker,
.facilities-heading .section-kicker,
.living-copy .section-kicker,
.story-heading .section-kicker,
.gallery-heading .section-kicker,
.location-copy .section-kicker,
.faq-heading .section-kicker,
.contact-copy .section-kicker {
  letter-spacing: var(--tracking-wide);
}

.intro h2,
.weekend-copy h2,
.stay-copy h2,
.facilities-heading h2,
.living-copy h2,
.story-heading h2,
.gallery-heading h2,
.location-copy h2,
.faq-heading h2,
.contact-copy h2,
.form-heading h3 {
  font-family: var(--font-heading);
  letter-spacing: var(--heading-tight);
}

.experience-card h3,
.timeline-item h3,
.stay-highlight strong,
.facility-card h3,
.living-item h3,
.story-step h3,
.distance-card span,
.map-card strong,
.faq-item summary span {
  font-family: var(--font-heading);
  letter-spacing: -0.015em;
}

.intro-copy > p:last-child,
.weekend-text,
.stay-text,
.facilities-heading p:last-child,
.living-text,
.story-heading p:last-child,
.gallery-heading p,
.location-text,
.location-regions,
.faq-heading p,
.faq-item p,
.contact-text {
  font-weight: 400;
  letter-spacing: -0.01em;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.hero-stats {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(4, 1fr);
  align-self: end;
  justify-self: center;
  margin-top: 8px;
  color: var(--ivory);
}

.stat {
  display: grid;
  min-height: 126px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 0 28px;
  border-left: 1px solid rgba(201, 154, 77, 0.62);
  text-align: center;
  animation: stat-rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.stat:nth-child(1) {
  animation-delay: 1240ms;
}

.stat:nth-child(2) {
  animation-delay: 1340ms;
}

.stat:nth-child(3) {
  animation-delay: 1440ms;
}

.stat:nth-child(4) {
  animation-delay: 1540ms;
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.stat .count {
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.stat small {
  font-family: inherit;
  font-size: 42%;
}

.stat > span:last-child {
  color: rgba(255, 248, 234, 0.82);
}

.stat-icon {
  display: inline-grid;
  width: 46px;
  height: 38px;
  place-items: center;
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: end;
  padding: clamp(82px, 10vw, 150px) 8vw;
  background: var(--arena);
  color: var(--forest);
}

.intro-copy {
  max-width: 760px;
}

.intro .section-kicker {
  margin: 0 0 14px;
  color: #a57833;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro h2 {
  margin: 0 0 22px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
}

.intro-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(16, 32, 23, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.experience-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(201, 164, 106, 0.22);
  background:
    linear-gradient(145deg, rgba(15, 31, 26, 0.96), rgba(5, 8, 6, 0.94)),
    var(--forest);
  color: var(--ivory);
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.experience-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.experience-card:hover,
.experience-card:focus-within {
  border-color: rgba(201, 164, 106, 0.54);
  box-shadow: 0 28px 64px rgba(5, 8, 6, 0.22);
  transform: translate3d(0, -8px, 0);
}

.experience-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 18% 10%, rgba(201, 164, 106, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.experience-card:hover::before,
.experience-card:focus-within::before {
  opacity: 1;
}

.experience-card::after {
  position: absolute;
  right: -36px;
  bottom: -54px;
  width: 142px;
  height: 142px;
  content: "";
  border: 1px solid rgba(201, 164, 106, 0.25);
  border-radius: 72px 72px 0 0;
  transition:
    opacity 260ms ease,
    transform 320ms ease;
}

.experience-card:hover::after,
.experience-card:focus-within::after {
  opacity: 0.85;
  transform: translate3d(-12px, -10px, 0);
}

.experience-card i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 28px;
  transition:
    color 260ms ease,
    transform 260ms ease;
}

.experience-card:hover i,
.experience-card:focus-within i {
  color: var(--gold-soft);
  transform: translate3d(0, -4px, 0) scale(1.06);
}

.experience-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.05;
}

.experience-card p {
  position: relative;
  max-width: 31ch;
  margin: 0;
  color: rgba(255, 248, 234, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.weekend-wedding {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background:
    radial-gradient(circle at 12% 26%, rgba(201, 164, 106, 0.18), transparent 30%),
    linear-gradient(135deg, #08110e 0%, var(--forest) 58%, #050806 100%);
  color: var(--ivory);
}

.weekend-wedding::before {
  position: absolute;
  top: 8%;
  right: -80px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(201, 164, 106, 0.18);
  border-radius: 132px 132px 0 0;
}

.weekend-media {
  position: relative;
  min-height: 680px;
}

.weekend-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 164, 106, 0.32);
  background: #0b120f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.weekend-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.weekend-photo:hover img {
  transform: scale(1.04);
}

.weekend-photo-main {
  inset: 0 14% 8% 0;
  border-radius: 220px 220px 0 0;
}

.weekend-photo-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 42%;
}

.weekend-copy {
  position: relative;
  z-index: 1;
}

.weekend-copy .section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.weekend-copy h2 {
  max-width: 780px;
  margin: 0 0 26px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.4vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.weekend-text {
  max-width: 680px;
  margin: 0 0 42px;
  color: rgba(255, 248, 234, 0.74);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.75;
}

.weekend-timeline {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
  border-top: 1px solid rgba(201, 164, 106, 0.28);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 0.9fr) minmax(220px, 1.4fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 164, 106, 0.22);
}

.timeline-item::before {
  position: absolute;
  top: 31px;
  left: 92px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 164, 106, 0.12);
}

.timeline-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
}

.timeline-item p {
  margin: 0;
  color: rgba(255, 248, 234, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.weekend-cta {
  width: fit-content;
}

.stay-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background:
    linear-gradient(90deg, rgba(231, 224, 211, 0.96), rgba(231, 224, 211, 0.86)),
    var(--arena);
  color: var(--forest);
}

.stay-section::before {
  position: absolute;
  top: -80px;
  left: -90px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(201, 164, 106, 0.28);
  border-radius: 132px 132px 0 0;
}

.stay-copy {
  position: relative;
  z-index: 1;
}

.stay-copy .section-kicker {
  margin: 0 0 16px;
  color: #a57833;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-copy h2 {
  max-width: 760px;
  margin: 0 0 26px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.4vw, 94px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.stay-text {
  max-width: 650px;
  margin: 0 0 38px;
  color: rgba(15, 31, 26, 0.74);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.78;
}

.stay-highlights {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 34px;
  border-top: 1px solid rgba(165, 120, 51, 0.26);
  border-bottom: 1px solid rgba(165, 120, 51, 0.26);
}

.stay-highlight {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 112px;
  padding: 22px 18px;
  border-left: 1px solid rgba(165, 120, 51, 0.22);
}

.stay-highlight:first-child {
  border-left: 0;
}

.stay-highlight strong {
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.stay-highlight span {
  color: rgba(15, 31, 26, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.stay-cta {
  width: fit-content;
}

.stay-media {
  position: relative;
  min-height: 660px;
}

.stay-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 164, 106, 0.48);
  background: #d7c8af;
  box-shadow: 0 28px 70px rgba(15, 31, 26, 0.2);
}

.stay-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.stay-photo:hover img {
  transform: scale(1.04);
}

.stay-photo-main {
  inset: 0 0 10% 10%;
  border-radius: 240px 240px 0 0;
}

.stay-photo-room {
  bottom: 0;
  left: 0;
  width: 46%;
  height: 38%;
}

.facilities-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background: #f4efe4;
  color: var(--forest);
}

.facilities-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.facilities-heading .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -18px;
  color: #a57833;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.facilities-heading h2 {
  max-width: 920px;
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 106px);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.facilities-heading p:last-child {
  margin: 0;
  color: rgba(15, 31, 26, 0.68);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.facilities-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.facilities-hero {
  min-height: 660px;
  overflow: hidden;
  margin: 0;
  border-radius: 280px 280px 0 0;
  background: var(--forest);
}

.facilities-hero img,
.facilities-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.facilities-hero:hover img,
.facilities-gallery figure:hover img {
  transform: scale(1.04);
}

.facilities-list {
  display: grid;
  align-content: stretch;
  border-top: 1px solid rgba(165, 120, 51, 0.24);
}

.facility-item {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 156px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(165, 120, 51, 0.24);
}

.facility-item span {
  color: #a57833;
  font-size: 12px;
  font-weight: 700;
}

.facility-item h3 {
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 400;
}

.facility-item p {
  max-width: 44ch;
  margin: 0;
  color: rgba(15, 31, 26, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.facilities-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  margin-top: 16px;
}

.facilities-gallery figure {
  min-height: 320px;
  overflow: hidden;
  margin: 0;
  background: var(--forest);
}

.facilities-gallery figure:first-child {
  border-radius: 160px 160px 0 0;
}

.living-ranch {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 164, 106, 0.16), transparent 28%),
    linear-gradient(135deg, #050806 0%, var(--forest) 56%, #091511 100%);
  color: var(--ivory);
}

.living-ranch::before {
  position: absolute;
  left: -120px;
  bottom: -170px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(201, 164, 106, 0.18);
  border-radius: 166px 166px 0 0;
}

.living-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.living-copy .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.living-copy h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 106px);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.living-text {
  margin: 0;
  color: rgba(255, 248, 234, 0.72);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.78;
}

.living-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.living-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(201, 164, 106, 0.28);
  padding: 0 16px;
  color: rgba(255, 248, 234, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.living-composition {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: 360px 300px;
  gap: 16px;
}

.living-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 164, 106, 0.26);
  background: #0a120f;
}

.living-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.living-photo:hover img {
  transform: scale(1.04);
}

.living-photo-main {
  grid-row: 1 / 3;
  border-radius: 220px 220px 0 0;
}

.living-photo-wide {
  border-radius: 0 180px 0 0;
}

.living-photo-small {
  width: min(58%, 440px);
}

.living-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(36px, 5vw, 64px);
  border-top: 1px solid rgba(201, 164, 106, 0.24);
  border-bottom: 1px solid rgba(201, 164, 106, 0.24);
}

.living-item {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 210px;
  padding: 34px 28px;
  border-left: 1px solid rgba(201, 164, 106, 0.2);
}

.living-item:first-child {
  border-left: 0;
}

.living-item i {
  color: var(--gold);
  font-size: 28px;
}

.living-item h3 {
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 400;
}

.living-item p {
  margin: 0;
  color: rgba(255, 248, 234, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.story-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background:
    linear-gradient(180deg, rgba(231, 224, 211, 0.98), rgba(244, 239, 228, 0.96)),
    var(--arena);
  color: var(--forest);
}

.story-section::before {
  position: absolute;
  right: -120px;
  top: -130px;
  width: 310px;
  height: 310px;
  content: "";
  border: 1px solid rgba(165, 120, 51, 0.24);
  border-radius: 156px 156px 0 0;
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.story-heading .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -18px;
  color: #a57833;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.story-heading p:last-child {
  margin: 0;
  color: rgba(15, 31, 26, 0.68);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.story-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 18px;
  border-top: 1px solid rgba(165, 120, 51, 0.28);
  border-bottom: 1px solid rgba(165, 120, 51, 0.28);
}

.story-timeline::before {
  position: absolute;
  top: 52px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(165, 120, 51, 0.2);
}

.story-step {
  position: relative;
  min-height: 250px;
  padding: 34px 28px;
  border-left: 1px solid rgba(165, 120, 51, 0.22);
}

.story-step:first-child {
  border-left: 0;
}

.story-step::before {
  position: absolute;
  top: 46px;
  left: 28px;
  width: 13px;
  height: 13px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(201, 164, 106, 0.15);
}

.story-step span {
  display: block;
  margin-bottom: 58px;
  color: #a57833;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-step h3 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 400;
}

.story-step p {
  margin: 0;
  color: rgba(15, 31, 26, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.story-photo {
  overflow: hidden;
  margin: 0;
  min-height: 560px;
  background: var(--forest);
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.story-photo:hover img {
  transform: scale(1.035);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background:
    radial-gradient(circle at 12% 14%, rgba(201, 164, 106, 0.15), transparent 28%),
    linear-gradient(135deg, #050806 0%, #0a1713 50%, var(--forest) 100%);
  color: var(--ivory);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-bottom: 26px;
}

.gallery-heading .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.gallery-heading p:last-child {
  margin: 0;
  color: rgba(255, 248, 234, 0.7);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.gallery-filters span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(201, 164, 106, 0.28);
  padding: 0 16px;
  color: rgba(255, 248, 234, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 190px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 164, 106, 0.22);
  background: #0b120f;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 760ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: rgba(255, 248, 234, 0.92);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.05);
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 220px 220px 0 0;
}

.gallery-card-tall {
  grid-row: span 2;
  border-radius: 160px 160px 0 0;
}

.gallery-card-wide {
  grid-column: span 2;
}

.location-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background:
    linear-gradient(90deg, rgba(231, 224, 211, 0.98), rgba(244, 239, 228, 0.94)),
    var(--arena);
  color: var(--forest);
}

.location-section::before {
  position: absolute;
  left: -120px;
  top: -120px;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(165, 120, 51, 0.2);
  border-radius: 152px 152px 0 0;
}

.location-copy {
  position: relative;
  z-index: 1;
}

.location-copy .section-kicker {
  margin: 0 0 16px;
  color: #a57833;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-copy h2 {
  max-width: 760px;
  margin: 0 0 26px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.4vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.location-text,
.location-regions {
  max-width: 680px;
  margin: 0;
  color: rgba(15, 31, 26, 0.7);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.distance-grid {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 38px 0 28px;
  border-top: 1px solid rgba(165, 120, 51, 0.26);
  border-bottom: 1px solid rgba(165, 120, 51, 0.26);
}

.distance-card {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 112px;
  padding: 22px 18px;
  border-left: 1px solid rgba(165, 120, 51, 0.22);
}

.distance-card:first-child {
  border-left: 0;
}

.distance-card span {
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
}

.distance-card p {
  margin: 0;
  color: rgba(15, 31, 26, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.location-actions .button-secondary {
  border-color: rgba(15, 31, 26, 0.32);
  color: var(--forest);
}

.location-actions .button-secondary:hover,
.location-actions .button-secondary:focus-visible {
  border-color: rgba(15, 31, 26, 0.56);
  background: rgba(15, 31, 26, 0.08);
}

.location-map {
  position: relative;
  min-height: 620px;
}

.map-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(165, 120, 51, 0.34);
  border-radius: 260px 260px 0 0;
  background: var(--forest);
  box-shadow: 0 28px 70px rgba(15, 31, 26, 0.18);
}

.map-panel::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.18), transparent 34%, rgba(5, 8, 6, 0.22)),
    linear-gradient(90deg, rgba(15, 31, 26, 0.2), transparent 44%, rgba(15, 31, 26, 0.2));
}

.map-panel::after {
  position: absolute;
  z-index: 2;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(201, 164, 106, 0.22);
  border-radius: 240px 240px 0 0;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.94) sepia(0.08);
  transform: scale(1.02);
  transform-origin: center;
}

.map-pin {
  display: inline-grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1b1208;
  font-size: 25px;
  box-shadow: 0 0 0 12px rgba(201, 164, 106, 0.16);
}

.map-card {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 42px);
  left: clamp(22px, 3vw, 42px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(201, 164, 106, 0.32);
  background: rgba(5, 8, 6, 0.78);
  color: var(--ivory);
  backdrop-filter: blur(16px);
}

.map-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.1;
}

.map-card span {
  color: rgba(255, 248, 234, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card a {
  padding: 13px 18px;
  border: 1px solid rgba(201, 164, 106, 0.5);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.map-card a:hover,
.map-card a:focus-visible {
  border-color: var(--gold-soft);
  background: var(--gold);
  color: #1b1208;
}

.map-route,
.map-place,
.map-place-main,
.map-place-top,
.map-place-left,
.map-place-right {
  display: none;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
  padding: clamp(84px, 10vw, 148px) 8vw;
  background:
    linear-gradient(180deg, rgba(231, 224, 211, 0.98), rgba(244, 239, 228, 0.98)),
    var(--arena);
  color: var(--forest);
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-heading .section-kicker {
  margin: 0 0 16px;
  color: #a57833;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-heading h2 {
  max-width: 620px;
  margin: 0 0 24px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.faq-heading p {
  max-width: 560px;
  margin: 0;
  color: rgba(15, 31, 26, 0.68);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid rgba(165, 120, 51, 0.25);
}

.faq-item {
  border-bottom: 1px solid rgba(165, 120, 51, 0.25);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 28px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}

.faq-item summary i {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(165, 120, 51, 0.35);
  border-radius: 50%;
  color: #a57833;
  font-size: 13px;
  transition:
    transform 260ms ease,
    background 260ms ease,
    color 260ms ease;
}

.faq-item[open] summary i {
  background: var(--gold);
  color: #1b1208;
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 760px;
  margin: -10px 0 30px;
  color: rgba(15, 31, 26, 0.68);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: start;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) 8vw;
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 164, 106, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(15, 31, 26, 0.96), rgba(5, 8, 6, 1)),
    var(--forest-deep);
  color: var(--ivory);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.86), rgba(5, 8, 6, 0.68)),
    var(--hero-image) center / cover;
  opacity: 0.18;
  filter: saturate(0.7);
}

.anchor-target {
  position: absolute;
  top: calc(var(--header-height) * -1);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 720px;
}

.contact-copy .section-kicker {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-copy h2 {
  margin: 0 0 26px;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.contact-text {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.contact-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-reasons span {
  padding: 11px 15px;
  border: 1px solid rgba(201, 164, 106, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.05);
  color: rgba(255, 248, 234, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(201, 164, 106, 0.28);
  background: rgba(255, 248, 234, 0.92);
  color: var(--forest);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.form-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.form-heading span {
  color: #a57833;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-family: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.05;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  color: rgba(15, 31, 26, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 31, 26, 0.14);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.68);
  color: var(--forest);
  font: inherit;
  font-size: 14px;
  padding: 15px 16px;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(165, 120, 51, 0.7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 164, 106, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: rgba(15, 31, 26, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-note {
  margin: 12px 0 0;
  color: rgba(15, 31, 26, 0.5);
  font-size: 11px;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(280px, 1.3fr) minmax(160px, 0.7fr);
  gap: 34px;
  align-items: end;
  padding: 52px 8vw 40px;
  border-top: 1px solid rgba(201, 164, 106, 0.18);
  background: #020403;
  color: rgba(255, 248, 234, 0.72);
}

.footer-brand img {
  width: 112px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-links a,
.footer-actions a {
  color: rgba(255, 248, 234, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.footer-links a:hover,
.footer-actions a:hover,
.footer-links a:focus-visible,
.footer-actions a:focus-visible {
  color: var(--gold-soft);
}

.footer-actions {
  justify-content: flex-end;
}

.footer-copy {
  grid-column: 1 / -1;
  color: rgba(255, 248, 234, 0.42);
}

.floating-whatsapp {
  position: fixed;
  z-index: 9;
  right: 28px;
  bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border: 1px solid rgba(201, 164, 106, 0.42);
  background: rgba(5, 8, 6, 0.82);
  color: var(--ivory);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp i {
  color: var(--gold-soft);
  font-size: 22px;
}

.floating-whatsapp span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  border-color: var(--gold-soft);
  background: rgba(15, 31, 26, 0.94);
}

.back-to-top {
  position: fixed;
  z-index: 9;
  right: 28px;
  bottom: max(92px, calc(env(safe-area-inset-bottom) + 82px));
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(201, 164, 106, 0.42);
  border-radius: 50%;
  background: rgba(5, 8, 6, 0.82);
  color: var(--gold-soft);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--gold-soft);
  background: var(--gold);
  color: #1b1208;
}

.mobile-cta-bar {
  position: fixed;
  z-index: 11;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 106, 0.38);
  background: rgba(5, 8, 6, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.mobile-cta-bar a {
  display: grid;
  flex: 1;
  min-height: 54px;
  place-items: center;
  color: var(--ivory);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-cta-bar a:first-child {
  background: var(--gold);
  color: #1b1208;
}

@keyframes slow-drift {
  from {
    transform: scale(1.02) translate3d(-6px, -4px, 0);
  }

  to {
    transform: scale(1.06) translate3d(8px, 5px, 0);
  }
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes fade-slide-down {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }

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

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

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

@keyframes title-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes stat-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

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

@keyframes card-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -3px, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 148px 1fr auto;
    gap: 18px;
    padding-inline: 28px;
  }

  .main-nav {
    gap: 20px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 86px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
  }

  .brand img {
    width: 104px;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 248, 234, 0.34);
    background: rgba(0, 0, 0, 0.16);
    color: var(--ivory);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 11;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    padding: 92px 28px 42px;
    background: rgba(5, 8, 6, 0.94);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

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

  .main-nav a {
    font-size: 17px;
  }

  .hero {
    min-height: 100svh;
    padding: 110px 22px 22px;
    background-position: 54% center;
  }

  .hero::before {
    background-position: 54% center;
  }

  .hero-content {
    margin-top: clamp(42px, 7vh, 72px);
    margin-bottom: 22px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(48px, 15vw, 76px);
  }

  .hero h1::after {
    margin: 24px 0;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 154, 77, 0.36);
  }

  .stat {
    min-height: 108px;
    padding: 16px 10px;
    border-left: 0;
  }

  .stat:nth-child(even) {
    border-left: 1px solid rgba(201, 154, 77, 0.36);
  }

  .intro {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 76px 22px;
  }

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

  .experience-card {
    min-height: 210px;
  }

  .weekend-wedding {
    grid-template-columns: 1fr;
    padding: 76px 22px;
  }

  .weekend-media {
    min-height: 540px;
    order: 2;
  }

  .weekend-copy {
    order: 1;
  }

  .weekend-photo-main {
    inset: 0 0 22% 0;
  }

  .weekend-photo-small {
    width: 58%;
    height: 36%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 28px;
  }

  .timeline-item::before {
    top: 30px;
    left: 0;
  }

  .weekend-cta {
    width: 100%;
  }

  .stay-section {
    grid-template-columns: 1fr;
    padding: 76px 22px;
  }

  .stay-highlights {
    grid-template-columns: 1fr;
  }

  .stay-highlight,
  .stay-highlight:first-child {
    border-left: 0;
    border-top: 1px solid rgba(165, 120, 51, 0.18);
  }

  .stay-highlight:first-child {
    border-top: 0;
  }

  .stay-cta {
    width: 100%;
  }

  .stay-media {
    min-height: 540px;
  }

  .stay-photo-main {
    inset: 0 0 20% 0;
  }

  .stay-photo-room {
    width: 58%;
    height: 34%;
  }

  .facilities-section {
    padding: 76px 22px;
  }

  .facilities-heading,
  .facilities-showcase,
  .facilities-gallery {
    grid-template-columns: 1fr;
  }

  .facilities-heading .section-kicker {
    margin-bottom: 0;
  }

  .facilities-hero {
    min-height: 520px;
    border-radius: 220px 220px 0 0;
  }

  .facilities-gallery figure {
    min-height: 260px;
  }

  .living-ranch {
    padding: 76px 22px;
  }

  .living-copy,
  .living-composition,
  .living-strip {
    grid-template-columns: 1fr;
  }

  .living-copy .section-kicker {
    margin-bottom: 0;
  }

  .living-composition {
    grid-template-rows: auto;
  }

  .living-photo {
    min-height: 320px;
  }

  .living-photo-main {
    grid-row: auto;
    border-radius: 180px 180px 0 0;
  }

  .living-photo-wide {
    border-radius: 0;
  }

  .living-photo-small {
    width: 100%;
  }

  .living-item,
  .living-item:first-child {
    border-left: 0;
    border-top: 1px solid rgba(201, 164, 106, 0.18);
  }

  .living-item:first-child {
    border-top: 0;
  }

  .story-section {
    padding: 76px 22px;
  }

  .story-heading,
  .story-timeline {
    grid-template-columns: 1fr;
  }

  .story-heading .section-kicker {
    margin-bottom: 0;
  }

  .story-timeline::before {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .story-step,
  .story-step:first-child {
    min-height: auto;
    padding: 28px 0 28px 34px;
    border-left: 0;
    border-top: 1px solid rgba(165, 120, 51, 0.2);
  }

  .story-step:first-child {
    border-top: 0;
  }

  .story-step::before {
    top: 34px;
    left: 0;
  }

  .story-step span {
    margin-bottom: 18px;
  }

  .story-photo {
    min-height: 360px;
  }

  .gallery-section {
    padding: 76px 22px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .gallery-heading .section-kicker {
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-card-large,
  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card-large,
  .gallery-card-tall {
    border-radius: 170px 170px 0 0;
  }

  .location-section {
    grid-template-columns: 1fr;
    padding: 76px 22px;
  }

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

  .distance-card,
  .distance-card:first-child {
    border-left: 0;
    border-top: 1px solid rgba(165, 120, 51, 0.18);
  }

  .distance-card:first-child {
    border-top: 0;
  }

  .location-actions {
    display: grid;
  }

  .location-map {
    min-height: 520px;
  }

  .map-panel {
    border-radius: 210px 210px 0 0;
  }

  .map-panel::after {
    border-radius: 192px 192px 0 0;
  }

  .map-card {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .map-pin {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .map-card a {
    width: fit-content;
  }

  .faq-section {
    grid-template-columns: 1fr;
    padding: 76px 22px;
  }

  .faq-heading {
    position: static;
  }

  .faq-item summary {
    gap: 18px;
    padding: 24px 0;
  }

  .faq-item summary i {
    width: 34px;
    height: 34px;
  }

  .map-place-left {
    left: 8%;
  }

  .map-place-right {
    right: 6%;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 76px 22px;
  }

  .contact-direct {
    display: grid;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 44px 22px 34px;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    display: none;
  }

  .back-to-top {
    right: 18px;
    bottom: max(82px, calc(env(safe-area-inset-bottom) + 72px));
    width: 48px;
    height: 48px;
    z-index: 12;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 98px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 18px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 8, 6, 0.78) 0%, rgba(5, 8, 6, 0.46) 58%, rgba(5, 8, 6, 0.2) 100%),
      linear-gradient(180deg, rgba(5, 8, 6, 0.48) 0%, transparent 30%, rgba(5, 8, 6, 0.9) 100%);
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(43px, 16vw, 62px);
  }

  .hero-subtitle {
    max-width: 280px;
  }

  .stat strong {
    font-size: 31px;
  }

  .stat > span:last-child {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  body:not(.is-loaded) .brand,
  body:not(.is-loaded) .main-nav a,
  body:not(.is-loaded) .nav-cta,
  body:not(.is-loaded) .hero-kicker,
  body:not(.is-loaded) .hero h1,
  body:not(.is-loaded) .hero-subtitle,
  body:not(.is-loaded) .hero-actions,
  body:not(.is-loaded) .stat {
    opacity: 1;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
