@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================================
   Green Paradise — Editorial / cinematic
   Bone paper · charcoal ink · amber-ember accent · Fraunces display
   ========================================================= */

:root {
  --bone:        #EDE6D3;
  --bone-deep:   #E2D9C2;
  --paper:       #F4EFE0;
  --ink:         #1A1614;
  --ink-2:       #2E2823;
  --ink-3:       #5C544B;
  --ink-4:       #8A8275;
  --rule:        rgba(26, 22, 20, 0.14);
  --rule-strong: rgba(26, 22, 20, 0.32);
  --ember:       #C77D2A;
  --ember-deep:  #A6611A;
  --moss:        #475040;
  --shadow:      0 24px 60px rgba(26, 22, 20, 0.22);
  --shadow-sm:   0 8px 24px rgba(26, 22, 20, 0.10);
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1440px;
  --gut: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.16, 0.84, 0.32, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(rgba(26,22,20,0.025) 1px, transparent 1px),
    radial-gradient(rgba(26,22,20,0.018) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ember); color: var(--bone); }

/* ---------- LOADER ---------- */
body.is-loading { overflow: hidden; }
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
  color: var(--bone);
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 14px;
  opacity: 0;
  animation: loader-in 700ms var(--ease) 120ms forwards;
}
.loader__mark { font-style: italic; opacity: 0.6; color: var(--ember); }
.loader__bar {
  width: 200px; height: 1px;
  background: rgba(237, 230, 211, 0.16);
  position: relative; overflow: hidden;
  opacity: 0;
  animation: loader-in 700ms var(--ease) 280ms forwards;
}
.loader__bar span {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 30%;
  background: var(--ember);
  animation: loader-bar 1.4s var(--ease) infinite;
}
@keyframes loader-in { to { opacity: 1; } }
@keyframes loader-bar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.rule { display: block; height: 1px; background: var(--rule); border: 0; }

/* ---------- TYPE ---------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.92;
  font-variation-settings: 'opsz' 144;
  text-wrap: balance;
}
.display-xl { font-size: clamp(64px, 12vw, 200px); }
.display-lg { font-size: clamp(56px, 9vw, 144px); }
.display-md { font-size: clamp(40px, 6vw, 96px); }
.serif { font-family: var(--serif); font-weight: 400; }
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 300; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-3);
}
.num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-4);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 22px var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--bone);
  mix-blend-mode: normal;
  transition: background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(237, 230, 211, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--ink);
  border-bottom-color: var(--rule);
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 10px;
}
.nav__brand-mark { font-style: italic; opacity: 0.7; }
.nav__links {
  display: flex; gap: 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity 200ms var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav__cta:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.nav.is-scrolled .nav__cta:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media video, .hero__media img {
  width: 100%; height: 115%;
  object-fit: cover;
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.40) 35%, rgba(0,0,0,0.78) 100%),
    linear-gradient(180deg, rgba(26,22,20,0) 60%, var(--bone) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  padding: 0 var(--gut) clamp(60px, 10vh, 120px);
  z-index: 2;
  color: var(--bone);
}
.hero__meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  margin-bottom: 28px;
}
.hero__location {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hero__location::before {
  content: ''; width: 24px; height: 1px; background: currentColor;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
.hero__bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 32ch;
  line-height: 1.45;
  opacity: 0.92;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: gap 300ms var(--ease);
}
.hero__cta:hover { gap: 24px; }
.hero__cta-arrow { width: 28px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.hero__cta-arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
/* ---------- SECTION FRAMING ---------- */
.section { position: relative; padding: clamp(80px, 12vh, 160px) 0; }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink .eyebrow { color: var(--ink-4); }
.section__head {
  margin-bottom: clamp(48px, 7vw, 96px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.section__head-text { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.section__head-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144;
}
.section__head-text h2 em { font-style: italic; }

/* ---------- ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
  padding-top: clamp(60px, 8vw, 120px);
}
.about__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-cap {
  position: absolute; bottom: 16px; left: 16px;
  color: var(--bone);
  font-family: var(--serif); font-style: italic;
  font-size: 14px;
  background: rgba(26,22,20,0.45);
  padding: 6px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about__copy {
  display: flex; flex-direction: column; gap: 32px;
  padding-top: 40px;
}
.about__lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.about__lede em { font-style: italic; color: var(--ember-deep); }
.about__body { font-size: 17px; line-height: 1.7; color: var(--ink-2); max-width: 56ch; }
.about__body p + p { margin-top: 1em; }
.about__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.pillar { display: flex; flex-direction: column; gap: 6px; }
.pillar__num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ember); }
.pillar__title { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.pillar__desc { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

/* ---------- BUNGALOWS — editorial split rows ---------- */
.bungalows { display: flex; flex-direction: column; }
.bungalow-row {
  display: grid;
  grid-template-columns: 6fr 6fr;
  align-items: stretch;
  min-height: 75vh;
  border-top: 1px solid var(--rule);
}
.bungalow-row:last-child { border-bottom: 1px solid var(--rule); }
.bungalow-row:nth-child(even) { direction: rtl; }
.bungalow-row:nth-child(even) > * { direction: ltr; }
.bungalow-row__media {
  overflow: hidden;
  background: var(--ink);
}
.bungalow-row__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.bungalow-row:hover .bungalow-row__media img { transform: scale(1.05); }
.bungalow-row__body {
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 28px;
  position: relative;
}
.bungalow-row__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ember);
  display: flex; align-items: center; gap: 12px;
}
.bungalow-row__index::after {
  content: ''; width: 48px; height: 1px; background: var(--rule-strong);
}
.bungalow-row__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144;
}
.bungalow-row__name em { font-style: italic; }
.bungalow-row__desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 44ch;
}
.bungalow-row__specs {
  display: flex; gap: 32px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.bungalow-row__spec {
  display: flex; flex-direction: column; gap: 2px;
}
.bungalow-row__spec-val {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.bungalow-row__foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.bungalow-row__price-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 4vw, 56px);
}
.bungalow-row__price-unit {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
}
.bungalow-row__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ember);
  margin-top: 4px;
}
.link-quiet {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap 300ms var(--ease);
}
.link-quiet:hover { gap: 22px; }

/* ---------- GALLERY — cinematic strip ---------- */
.gallery { padding: 0; }
.gallery__head { padding: clamp(80px, 10vw, 140px) var(--gut) 48px; }
.gallery__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 32vh;
  gap: 2px;
  padding: 0 var(--gut);
}
.gallery__cell {
  overflow: hidden;
  background: var(--bone-deep);
  position: relative;
  cursor: zoom-in;
  border: 0;
  padding: 0;
}
.gallery__cell img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1000ms var(--ease);
}
/* Bento layout — 9 cells in 3x4 grid */
.gallery__cell:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.gallery__cell:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.gallery__cell:nth-child(6) { grid-column: 2 / span 2; grid-row: 3; }
.gallery__cell:hover img { transform: scale(1.06); }
.gallery__cap {
  position: absolute;
  bottom: 16px; left: 18px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(26,22,20,0.5);
  padding: 5px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* ---------- REVIEWS ---------- */
.reviews__head { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 40px; margin-bottom: 80px; padding-bottom: 28px; border-bottom: 1px solid var(--rule); }
.reviews__big {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(120px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144;
  display: flex; align-items: baseline; gap: 12px;
}
.reviews__big-out { font-size: 0.18em; color: var(--ink-3); font-style: italic; }
.reviews__big-stars { display: flex; gap: 4px; margin-top: 12px; }
.reviews__big-stars svg { fill: var(--ember); }
.reviews__count { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-3); text-align: right; max-width: 18ch; }
.reviews__grid {
  column-count: 3;
  column-gap: 40px;
}
.review {
  break-inside: avoid;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.review p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review p::before { content: '"'; font-size: 1.4em; color: var(--ember); margin-right: 2px; }
.review p::after { content: '"'; color: var(--ember); }
.review__by { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); display: flex; gap: 12px; align-items: center; }
.review__by::before { content: '—'; color: var(--ember); }

/* ---------- RESERVATION ---------- */
.reservation { background: var(--ink); color: var(--bone); }
.reservation .section__head { border-color: rgba(237,230,211,0.18); }
.reservation__lede {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1; letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 56px;
  font-variation-settings: 'opsz' 144;
}
.reservation__lede em { font-style: italic; color: var(--ember); }
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(237, 230, 211, 0.18);
}
.field {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 28px;
  border-right: 1px solid rgba(237, 230, 211, 0.18);
  border-bottom: 1px solid rgba(237, 230, 211, 0.18);
  position: relative;
}
.field:nth-child(2n) { border-right: 0; }
.field--full { grid-column: 1 / -1; border-right: 0; }
.field__label {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.005em;
  padding: 4px 0;
  outline: none;
  width: 100%;
  color-scheme: dark;
}
.field textarea { resize: vertical; min-height: 60px; line-height: 1.4; font-family: var(--sans); font-size: 16px; font-weight: 300; }
.field select {
  cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-4) 50%), linear-gradient(135deg, var(--ink-4) 50%, transparent 50%);
  background-position: calc(100% - 16px) 18px, calc(100% - 10px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field select option {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  padding: 10px;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(0.4) saturate(2) hue-rotate(5deg);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 200ms var(--ease);
}
.field input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.field input[type="date"]::-webkit-datetime-edit { color: var(--bone); }
.field input::placeholder, .field textarea::placeholder { color: rgba(237, 230, 211, 0.32); }
.field--err input, .field--err select, .field--err textarea { color: var(--ember); }
.field__err { position: absolute; right: 28px; bottom: 24px; font-size: 11px; color: var(--ember); letter-spacing: 0.16em; text-transform: uppercase; }
.form__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.form__submit {
  padding: 28px;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  transition: background 240ms var(--ease), color 240ms var(--ease), opacity 240ms var(--ease);
  border: 0;
}
.form__submit:disabled { opacity: 0.6; cursor: progress; }
.form__submit--wa { background: #128C7E; color: #fff; }
.form__submit--wa:hover:not(:disabled) { background: #075E54; color: #fff; }
.form__submit--wa svg { display: block; }
.form__submit--email { background: var(--ember); color: var(--ink); }
.form__submit--email:hover:not(:disabled) { background: var(--bone); color: var(--ink); }
.form__submit-arrow { width: 30px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.form__submit-arrow::after { content: ''; position: absolute; right: 0; top: -4px; width: 9px; height: 9px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.form__error {
  grid-column: 1 / -1;
  padding: 18px 28px;
  background: rgba(199, 80, 80, 0.12);
  color: #E89B9B;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 700px) {
  .form__actions { grid-template-columns: 1fr; }
}
.form__success {
  grid-column: 1 / -1;
  padding: 80px 28px;
  text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.form__success h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.025em; }
.form__success em { font-style: italic; color: var(--ember); }
.form__success p { color: rgba(237, 230, 211, 0.6); }

/* ---------- CONTACT / FOOTER ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.contact__col { padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 80px); }
.contact__col + .contact__col { border-left: 1px solid var(--rule); }
.contact__h { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: -0.02em; margin-bottom: 24px; }
.contact__h em { font-style: italic; }
.contact__map { aspect-ratio: 4/3; background: #E2D9C2; position: relative; overflow: hidden; }
.contact__map iframe { width: 100%; height: 100%; display: block; border: 0; }
.contact__list { font-size: 17px; line-height: 1.8; color: var(--ink-2); }
.contact__list dt { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-4); margin-top: 16px; }
.contact__list dt:first-child { margin-top: 0; }
.contact__list dd { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); }
.contact .link-quiet { margin-top: 24px; display: inline-flex; }

.footer {
  background: var(--ink); color: var(--bone);
  padding: clamp(60px, 7vw, 100px) var(--gut) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(237, 230, 211, 0.16);
}
.footer__brand-big { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 6vw, 88px); line-height: 0.95; letter-spacing: -0.025em; font-variation-settings: 'opsz' 144; }
.footer__brand-big em { font-style: italic; color: var(--ember); }
.footer__intro { color: rgba(237, 230, 211, 0.6); margin-top: 24px; max-width: 34ch; }
.footer__col h4 { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 22px; margin-bottom: 18px; color: var(--ember); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li, .footer__col a { color: rgba(237, 230, 211, 0.72); font-size: 14px; }
.footer__col a:hover { color: var(--ember); }
.footer__social-icons {
  display: flex; gap: 20px; align-items: center;
  margin-top: 4px;
}
.footer__social-icons a {
  color: var(--bone-deep);
  opacity: 0.65;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 200ms var(--ease), opacity 200ms var(--ease);
}
.footer__social-icons a:hover { color: var(--ember); opacity: 1; }
.footer__social-icons svg { display: block; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 16px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(237, 230, 211, 0.5);
}

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: clamp(20px, 4vw, 32px);
  right: clamp(20px, 4vw, 32px);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #128C7E;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 80;
  box-shadow: 0 8px 28px rgba(18, 140, 126, 0.45), 0 4px 12px rgba(26, 22, 20, 0.22);
  transition: transform 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}
.whatsapp-fab:hover {
  background: #075E54;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(7, 94, 84, 0.55), 0 6px 16px rgba(26, 22, 20, 0.28);
}
.whatsapp-fab:active { transform: translateY(0) scale(0.98); }
.whatsapp-fab svg { display: block; position: relative; z-index: 2; }
.whatsapp-fab__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #128C7E;
  opacity: 0.5;
  animation: wa-pulse 2.4s var(--ease) infinite;
  z-index: 1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 600px) {
  .whatsapp-fab { width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(10,8,6,0.96); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 5vh 6vw; animation: fade 300ms var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 100%; max-height: 90vh; }
.lightbox__btn { position: absolute; color: var(--bone); width: 48px; height: 48px; border: 1px solid rgba(237,230,211,0.3); display: flex; align-items: center; justify-content: center; font-size: 22px; transition: background 200ms var(--ease); background: transparent; }
.lightbox__btn:hover { background: rgba(237,230,211,0.1); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .about, .contact, .footer__top { grid-template-columns: 1fr; }
  .contact__col + .contact__col { border-left: 0; border-top: 1px solid var(--rule); }
  .bungalow-row { grid-template-columns: 1fr; min-height: 0; }
  .bungalow-row:nth-child(even) { direction: ltr; background: rgba(199, 125, 42, 0.06); }
  .bungalow-row__media { aspect-ratio: 4/3; }
  .gallery__strip {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 36vh;
    padding: 0 calc(var(--gut) / 2);
  }
  .gallery__cell:nth-child(3),
  .gallery__cell:nth-child(6) { grid-column: auto; grid-row: auto; }
  .gallery__cell:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .form { grid-template-columns: 1fr; }
  .field, .field:nth-child(2n) { border-right: 0; }
  .reviews__grid { column-count: 1; }
  .reviews__head { grid-template-columns: 1fr; }
  .reviews__count { text-align: left; }
}
