/* ==========================================================================
   Villa Marie — Luxury Tuscan Retreat
   Design system: warm ivory ground, deep olive ink, antique gold accents.
   Type: Cormorant Garamond (display) + Jost (text/labels)
   ========================================================================== */

:root {
  --ivory:      #f7f3ec;
  --cream:      #efe7d9;
  --white:      #fffdf8;
  --ink:        #272a20;
  --ink-soft:   #4d5142;
  --olive:      #3c4233;
  --olive-deep: #2c3126;
  --gold:       #ab8a5c;
  --gold-soft:  #c9b18c;
  --terra:      #a9694b;
  --line:       rgba(60, 66, 51, .16);
  --line-light: rgba(255, 253, 248, .25);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-text:    "Jost", "Avenir Next", "Helvetica Neue", sans-serif;

  --pad: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--gold-soft); color: var(--olive-deep); }

/* ------------------------------------------------------------------ type */

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

h1 em, h2 em, h3 em, .display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.display-xl { font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: .01em; }
.display-lg { font-size: clamp(2.4rem, 5vw, 4rem); }
.display-md { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.display-sm { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.kicker::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.kicker--center::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}

.muted { color: var(--ink-soft); }

/* ------------------------------------------------------------ structure */

.container       { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad); }
.container-wide  { max-width: 1480px; margin: 0 auto; padding: 0 var(--pad); }
.section         { padding: var(--section) 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--olive  { background: var(--olive-deep); color: #e8e4d8; }
.section--olive h2, .section--olive h3 { color: var(--white); }
.section--olive .muted { color: rgba(232,228,216,.72); }

.center { text-align: center; }
.center .kicker { justify-content: center; }

.measure { max-width: 44rem; }
.measure-c { max-width: 44rem; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------- header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .45s ease, box-shadow .45s ease, transform .4s ease;
}
.site-header .bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem var(--pad);
  max-width: 1480px;
  margin: 0 auto;
  transition: padding .45s ease;
}
.site-header.scrolled {
  background: rgba(39, 42, 32, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,253,248,.08);
}
.site-header.scrolled .bar { padding-top: .85rem; padding-bottom: .85rem; }

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  z-index: 102;
}
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand .brand-sub {
  font-size: .6rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: .35rem;
}

.nav-desktop { display: flex; align-items: center; gap: 2.2rem; }
.nav-desktop > .nav-item { position: relative; }
.nav-desktop > .nav-item > a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,253,248,.88);
  padding: .6rem 0;
  display: inline-block;
  position: relative;
}
.nav-desktop > .nav-item > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: .2rem;
  width: 100%;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav-desktop > .nav-item > a:hover::after,
.nav-desktop > .nav-item.active > a::after { transform: scaleX(1); transform-origin: left; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 230px;
  background: var(--olive-deep);
  border: 1px solid rgba(255,253,248,.1);
  padding: .9rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a {
  display: block;
  padding: .5rem 1.6rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,253,248,.78);
  transition: color .25s, padding-left .25s;
}
.dropdown a:hover { color: var(--gold-soft); padding-left: 2rem; }

.btn-nav {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,253,248,.45);
  padding: .7rem 1.5rem;
  transition: background .3s, border-color .3s, color .3s;
}
.btn-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--olive-deep); }

/* burger — pinned to the header edge, independent of flex layout */
.burger {
  display: none;
  z-index: 102;
  background: none;
  border: 0;
  cursor: pointer;
  width: 34px;
  height: 22px;
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all .35s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; }
.burger span:nth-child(3) { top: 100%; }
body.menu-open .burger span:nth-child(1) { top: 50%; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: var(--olive-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease;
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .2rem; max-width: 560px; margin: 0 auto; width: 100%; }
.mobile-menu .mm-group { border-bottom: 1px solid rgba(255,253,248,.12); padding: 1rem 0; }
.mobile-menu .mm-group > a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  display: block;
}
.mobile-menu .mm-sub { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: .5rem; }
.mobile-menu .mm-sub a {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero--inner { min-height: 72svh; }
.hero--short { min-height: 58svh; }

.hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero .hero-media img,
.hero .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(28,31,23,.42) 0%, rgba(28,31,23,.06) 36%, rgba(28,31,23,.62) 100%);
}

.hero-content {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 9rem var(--pad) clamp(3rem, 7vh, 5.5rem);
}
.hero-content .kicker { color: var(--gold-soft); }
.hero-content h1 { color: var(--white); }
.hero-content .hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: rgba(255,253,248,.85);
  margin-top: 1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-size: .62rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,253,248,.7);
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 4rem;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* -------------------------------------------------------------- buttons */

.btn {
  display: inline-block;
  font-family: var(--font-text);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .35s, color .35s, border-color .35s;
}
.btn:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: var(--white); }

.btn--light { color: var(--white); border-color: rgba(255,253,248,.55); }
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--olive-deep); }

.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--olive-deep); }
.btn--solid:hover { background: var(--white); border-color: var(--white); color: var(--olive-deep); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: .35rem;
  transition: gap .3s ease, color .3s;
}
.link-more::after { content: "→"; color: var(--gold); transition: transform .3s; }
.link-more:hover { color: var(--gold); }
.link-more:hover::after { transform: translateX(5px); }

/* ---------------------------------------------------------------- split */

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  position: relative;
  overflow: hidden;
}
.split-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.split-media .frame:hover img { transform: scale(1.045); }
.split-media .accent {
  position: absolute;
  z-index: -1;
  inset: auto -1.4rem -1.4rem auto;
  width: 62%;
  height: 62%;
  border: 1px solid var(--gold-soft);
}
.split-media .tall { aspect-ratio: 4 / 5; }
.split-media .wide { aspect-ratio: 4 / 3; }

.split-body h2 { margin-bottom: 1.4rem; }
.split-body p + p { margin-top: 1.1rem; }
.split-body .link-more, .split-body .btn { margin-top: 2.2rem; }

/* ---------------------------------------------------------------- cards */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }

.card { display: block; position: relative; }
.card .card-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.card .card-media.landscape { aspect-ratio: 4 / 3; }
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.6,.2,1), filter .6s;
}
.card:hover .card-media img { transform: scale(1.05); }
.card .card-body { padding: 1.6rem 0 0; }
.card .card-body h3 { margin-bottom: .5rem; }
.card .card-body p { font-size: .98rem; color: var(--ink-soft); }
.card .card-tag {
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.card .card-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: .3rem;
}

/* full-bleed photo band with caption */
.band {
  position: relative;
  min-height: 64svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (hover: none) { .band { background-attachment: scroll; } }
.band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,31,23,.1) 30%, rgba(28,31,23,.66) 100%);
}
.band .band-content { width: 100%; max-width: 1180px; margin: 0 auto; padding: 5rem var(--pad) 4rem; }
.band h2 { color: var(--white); }
.band p { color: rgba(255,253,248,.85); max-width: 38rem; }

/* ---------------------------------------------------------------- stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  text-align: center;
  padding: 2.6rem 1rem;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--olive);
  line-height: 1;
}
.stat .stat-num sup { font-size: .45em; color: var(--gold); }
.stat .stat-label {
  margin-top: .8rem;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------ amenities */

.amenities {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 5rem);
}
.amenities li {
  list-style: none;
  break-inside: avoid;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: .9rem;
  font-size: .98rem;
}
.amenities li::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
}
.amenities li small { color: var(--ink-soft); font-size: .85em; }

/* ----------------------------------------------------------- room cards */

.room-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.room-card .room-media { overflow: hidden; aspect-ratio: 3 / 2; position: relative; }
.room-card .room-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.6,.2,1);
}
.room-card:hover .room-media img { transform: scale(1.05); }
.room-card .room-body { padding: 1.8rem 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; }
.room-card h3 { margin-bottom: .4rem; }
.room-card .room-floor {
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
.room-specs {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  font-size: .82rem;
  color: var(--ink-soft);
}
.room-specs span { display: inline-flex; align-items: center; gap: .5rem; }
.room-specs svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.4; }

/* -------------------------------------------------------------- gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery a.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.6,.2,1), opacity .4s;
}
.gallery a:hover img { transform: scale(1.06); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 31, 23, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: none;
  border: 0;
  color: rgba(255,253,248,.8);
  font-size: 2rem;
  font-family: var(--font-display);
  cursor: pointer;
  padding: 1rem;
  transition: color .3s;
  line-height: 1;
}
.lightbox button:hover { color: var(--gold-soft); }
.lightbox .lb-close { top: 1.2rem; right: 1.6rem; font-size: 2.4rem; }
.lightbox .lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-caption {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,253,248,.7);
}

/* --------------------------------------------------------------- quote */

.quote-block {
  position: relative;
  text-align: center;
  padding: var(--section) var(--pad);
  overflow: hidden;
}
.quote-block .leaves {
  position: absolute;
  width: clamp(280px, 36vw, 520px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}
.quote-block .leaves--tl { top: -6%; left: -4%; transform: scaleX(-1); }
.quote-block .leaves--br { bottom: -8%; right: -4%; }
.quote-block blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  max-width: 56rem;
  margin: 0 auto;
  color: var(--olive);
}
.quote-block cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-text);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ------------------------------------------------------------- cta band */

.cta-band {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: clamp(5rem, 11vw, 9rem) var(--pad);
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(34, 38, 28, .68);
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,253,248,.82); max-width: 36rem; margin: 0 auto 2.4rem; }

/* --------------------------------------------------------------- footer */

.site-footer {
  background: var(--olive-deep);
  color: rgba(232, 228, 216, .78);
  font-size: .92rem;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-text);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.site-footer .f-brand {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.site-footer .f-brand small {
  display: block;
  font-family: var(--font-text);
  font-size: .58rem;
  letter-spacing: .42em;
  color: var(--gold-soft);
  margin-top: .5rem;
}
.site-footer p.f-desc { margin-top: 1.4rem; max-width: 26rem; font-weight: 300; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer ul a { transition: color .25s; }
.site-footer ul a:hover { color: var(--gold-soft); }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer address a { color: var(--gold-soft); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,253,248,.1);
  padding: 1.6rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .76rem;
  letter-spacing: .08em;
  color: rgba(232,228,216,.5);
}
.socials { display: flex; gap: 1.1rem; }
.socials a { display: inline-flex; transition: color .25s; color: rgba(232,228,216,.7); }
.socials a:hover { color: var(--gold-soft); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

/* --------------------------------------------------------------- forms */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .55rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .95rem 1.1rem;
  outline: none;
  transition: border-color .3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }

.info-list { list-style: none; }
.info-list li {
  display: flex;
  gap: 1.1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-list .label {
  flex: none;
  width: 9rem;
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ------------------------------------------------------------- features */

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.feature-row .feature h3 { margin-bottom: .7rem; }
.feature-row .feature p { font-size: .96rem; color: var(--ink-soft); }
.feature-row .f-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  transform: rotate(45deg);
}
.feature-row .f-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.3; transform: rotate(-45deg); }

/* breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,253,248,.66);
  margin-bottom: 1.2rem;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span::before { content: "·"; margin-right: .7rem; color: var(--gold-soft); }

/* map */
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--line);
  filter: saturate(.8);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------- reveal anim */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .hero-media img, .hero .hero-media video { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1020px) {
  .nav-desktop { display: none; }
  .burger { display: block; }
  .site-footer .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .grid-3, .feature-row { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .amenities { columns: 1; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}

@media (max-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .site-footer .footer-main { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .info-list .label { width: 7rem; }
}
