/* =========================================================
   Northern Hotel — Coastal editorial
   Palette: sand · sea · terracotta · palm · gold
   ========================================================= */

:root {
  --sand-50:  #fbf6ec;
  --sand-100: #f5ecda;
  --sand-200: #ebdcb5;
  --sand-300: #d9c393;
  --sea-50:   #e7f1f4;
  --sea-200:  #8fc4d4;
  --sea-400:  #3d8aa2;
  --sea-600:  #1f5d75;
  --sea-deep: #0f3d4e;
  --terracotta:      #c45a3a;
  --terracotta-deep: #97412a;
  --palm:     #2f5e3d;
  --gold:     #d49546;
  --gold-soft:#e6b977;
  --ink:      #15262d;
  --ink-soft: #3a4d55;
  --line:     #d8c8a8;
  --line-faint: rgba(15, 61, 78, .12);

  --font-display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Manrope", system-ui, -apple-system, "Helvetica Neue", sans-serif;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;

  --shadow-s: 0 1px 2px rgba(15,61,78,.06), 0 4px 12px rgba(15,61,78,.06);
  --shadow-m: 0 8px 24px rgba(15,61,78,.10), 0 2px 6px rgba(15,61,78,.06);
  --shadow-l: 0 30px 60px -20px rgba(15,61,78,.30), 0 12px 24px -8px rgba(15,61,78,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.skip {
  position: absolute; left: -9999px;
  background: var(--sea-deep); color: var(--sand-50);
  padding: 10px 14px; border-radius: 4px;
}
.skip:focus { left: 10px; top: 10px; z-index: 1000; }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: clamp(16px, 4vw, 40px);
  padding: 16px var(--pad-x);
  background: rgba(251, 246, 236, .0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.is-scrolled {
  background: rgba(251, 246, 236, .94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--line-faint);
  padding-top: 10px; padding-bottom: 10px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--sea-deep);
  font-family: var(--font-display);
  font-weight: 500;
}
.brand-mark { width: 42px; height: auto; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  font-variation-settings: "opsz" 30, "SOFT" 0, "WONK" 0;
  letter-spacing: -.01em;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Light brand in hero (over dark image) */
.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav a,
.site-header:not(.is-scrolled) .lang,
.site-header:not(.is-scrolled) .menu-toggle span {
  color: #fdf8eb;
}
.site-header:not(.is-scrolled) .brand-sub { color: rgba(253,248,235,.78); }
.site-header:not(.is-scrolled) .brand-mark path,
.site-header:not(.is-scrolled) .brand-mark line { stroke: #fdf8eb; }

.site-nav {
  display: flex; gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
  font-size: 14px; font-weight: 500;
  letter-spacing: .02em;
}
.site-nav a {
  position: relative; padding: 6px 2px;
  transition: color .2s ease;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right .3s ease;
}
.site-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
}
.lang-btn {
  background: none; border: 0; padding: 4px 2px;
  color: inherit; opacity: .55;
  transition: opacity .2s ease;
}
.lang-btn.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.lang-btn:hover { opacity: 1; }
.lang-sep { opacity: .35; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--terracotta); color: #fff8ec;
  border-color: var(--terracotta);
  box-shadow: 0 6px 16px -8px rgba(196,90,58,.7);
}
.btn-primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.btn-outline {
  background: transparent; color: var(--sea-deep);
  border-color: var(--sea-deep);
}
.btn-outline:hover { background: var(--sea-deep); color: var(--sand-50); }
.btn-ghost {
  background: transparent; color: inherit;
  border-color: rgba(253,248,235,.45);
}
.btn-ghost:hover { background: rgba(253,248,235,.12); border-color: rgba(253,248,235,.85); }
.btn-lg { padding: 14px 24px; font-size: 15px; }

.menu-toggle {
  display: none;
  background: none; border: 0; padding: 6px;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--sea-deep);
  transition: transform .2s ease, opacity .2s ease;
}

/* ============ Hero ============ */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; z-index: -1;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 55%;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,61,78,.62) 0%, rgba(15,61,78,.32) 40%, rgba(15,61,78,.65) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(212,149,70,.18), transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .22; mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.35) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
}

.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(140px, 18vh, 200px) var(--pad-x) clamp(70px, 10vh, 110px);
  color: #fdf8eb;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-soft);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,149,70,.22);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: .98;
  letter-spacing: -.025em;
  margin: 22px 0 22px;
  font-variation-settings: "opsz" 140, "SOFT" 30, "WONK" 0;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  color: var(--gold-soft);
  font-weight: 300;
}

.hero-lead {
  max-width: 52ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(253,248,235,.88);
  margin: 0 0 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-meta {
  margin: 64px 0 0; padding: 24px 0 0;
  border-top: 1px solid rgba(253,248,235,.22);
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  max-width: 720px;
}
.hero-meta dt {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(253,248,235,.6);
  margin-bottom: 6px;
}
.hero-meta dd {
  font-family: var(--font-display);
  font-size: 18px; margin: 0; color: #fdf8eb;
  font-variation-settings: "opsz" 30;
}

/* Marquee strip at bottom of hero */
.hero-marquee {
  position: relative;
  background: var(--sea-deep);
  color: var(--sand-100);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,149,70,.4);
}
.marquee-track {
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: .04em;
  animation: marq 38s linear infinite;
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Section primitives ============ */
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(80px, 11vh, 140px) var(--pad-x) clamp(36px, 6vh, 60px);
}
.section-head-light .kicker,
.section-head-light .display,
.section-head-light .section-lead { color: inherit; }

.kicker {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 18px;
}
.kicker-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  font-weight: 400;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--sea-deep);
  max-width: 22ch;
  font-variation-settings: "opsz" 100, "SOFT" 20;
}
.display em {
  font-style: italic; color: var(--terracotta);
  font-variation-settings: "opsz" 100, "SOFT" 60, "WONK" 1;
}

.section-lead {
  margin-top: 18px;
  font-size: 17px; max-width: 60ch;
  color: var(--ink-soft);
}

/* ============ About ============ */
.about { padding-bottom: clamp(60px, 8vh, 100px); }
.about-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-text .display { margin-bottom: 24px; }
.about-text p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
  margin: 0 0 18px;
}
.about-list {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid; gap: 12px;
}
.about-list li {
  position: relative; padding-left: 26px;
  font-size: 15.5px; color: var(--ink);
}
.about-list li::before {
  content: ""; position: absolute; left: 0; top: .7em;
  width: 14px; height: 1.5px; background: var(--terracotta);
}
.about-fig {
  margin: 0; position: relative;
}
.about-fig img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
}
.about-fig::before {
  content: ""; position: absolute; inset: -22px -22px auto auto;
  width: 60%; aspect-ratio: 1; z-index: -1;
  background: var(--sand-200);
  border-radius: var(--radius-m);
}
.about-fig figcaption {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: var(--ink-soft);
  margin-top: 14px;
}

/* ============ Villas ============ */
.villas { background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%); }
.villas .section-head { padding-bottom: 0; }
.villa-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px var(--pad-x) 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.villa-card {
  position: relative;
  background: #fffaf0;
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: var(--shadow-s);
}
.villa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
}
.villa-card.is-featured {
  background: var(--sea-deep); color: var(--sand-50);
  border-color: var(--sea-deep);
}
.villa-card.is-featured .villa-name { color: #fff8ec; }
.villa-card.is-featured .villa-tag { color: rgba(253,248,235,.75); }
.villa-card.is-featured .villa-specs li { border-color: rgba(253,248,235,.18); }
.villa-card.is-featured .villa-specs span { color: rgba(253,248,235,.6); }
.villa-card.is-featured .villa-specs b { color: #fff8ec; }
.villa-card.is-featured .villa-no { color: rgba(212,149,70,.85); }

.villa-no {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-style: italic;
  font-size: 56px; line-height: 1;
  color: var(--terracotta);
  opacity: .9;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  pointer-events: none;
}
.villa-flag {
  position: absolute; top: 18px; left: 22px;
  background: var(--gold); color: var(--sea-deep);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  z-index: 1;
}
.villa-media { aspect-ratio: 4 / 3; overflow: hidden; }
.villa-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.villa-card:hover .villa-media img { transform: scale(1.06); }

.villa-body { padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.villa-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; line-height: 1.15; margin: 0;
  color: var(--sea-deep);
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.villa-tag {
  margin: -4px 0 0; font-size: 14px; color: var(--ink-soft);
}
.villa-specs {
  list-style: none; margin: 6px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line-faint);
}
.villa-specs li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-faint);
  font-size: 14px;
}
.villa-specs li:nth-child(odd) { padding-right: 12px; border-right: 1px solid var(--line-faint); }
.villa-specs li:nth-child(even) { padding-left: 12px; }
.villa-specs span {
  color: var(--ink-soft); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
}
.villa-specs b { font-family: var(--font-display); font-weight: 500; color: var(--sea-deep); }
.villa-book { margin-top: auto; justify-content: center; }

.villa-foot {
  text-align: center; max-width: var(--maxw);
  margin: 30px auto 0; padding: 0 var(--pad-x) clamp(80px, 11vh, 140px);
  font-family: var(--font-display); font-style: italic;
  font-size: 17px; color: var(--ink-soft);
}

/* ============ Gallery / carousel ============ */
.gallery { background: var(--sand-50); }
.carousel {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) clamp(80px, 11vh, 140px);
}
.carousel-stage {
  position: relative; overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--sand-200);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-l);
}
.carousel-track {
  list-style: none; margin: 0; padding: 0;
  display: flex; width: 100%; height: 100%;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.carousel-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 60px 28px 22px;
  background: linear-gradient(180deg, rgba(15,61,78,0) 0%, rgba(15,61,78,.78) 100%);
  color: #fdf8eb;
  font-family: var(--font-display); font-style: italic;
  font-size: 15px;
}

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(253,248,235,.92); color: var(--sea-deep);
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-m);
  transition: background .2s ease, transform .2s ease;
}
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.carousel-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 22px;
}
.dot {
  width: 28px; height: 3px; border: 0; padding: 0;
  background: var(--sand-300); border-radius: 2px;
  transition: background .2s ease, width .25s ease;
}
.dot.is-active { background: var(--terracotta); width: 44px; }

/* ============ Amenities ============ */
.amenities { background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%); }
.am-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) clamp(80px, 11vh, 140px);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
}
.am-grid li {
  background: #fffaf0;
  padding: 36px 30px;
  color: var(--sea-deep);
}
.am-ico { width: 36px; height: 36px; color: var(--terracotta); margin-bottom: 14px; }
.am-grid h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; margin: 0 0 6px;
  font-variation-settings: "opsz" 36;
}
.am-grid p {
  margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55;
}

/* ============ Booking ============ */
.booking {
  background: var(--sea-deep);
  color: var(--sand-50);
  position: relative;
}
.booking::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(212,149,70,.18), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(196,90,58,.18), transparent 55%);
  pointer-events: none;
}
.booking-inner {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
}
.booking .section-head { padding: 0; max-width: none; }
.booking .kicker { color: var(--gold-soft); }
.booking .kicker-no { color: var(--gold); }
.booking .display { color: #fff8ec; max-width: 24ch; }
.booking .display em { color: var(--gold-soft); }
.booking .section-lead { color: rgba(253,248,235,.78); }

.form {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; grid-column: span 3; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(253,248,235,.7);
}
.field input, .field select, .field textarea {
  font: inherit; color: #fff8ec;
  background: transparent;
  border: 0; border-bottom: 1.5px solid rgba(253,248,235,.28);
  padding: 10px 0;
  border-radius: 0;
  transition: border-color .2s ease;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(253,248,235,.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--gold-soft);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%), linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select option { color: var(--sea-deep); background: var(--sand-50); }
.field textarea { resize: vertical; min-height: 88px; }
.field input[type="date"] {
  color-scheme: dark;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--terracotta);
}
.field-msg {
  font-size: 12px; color: var(--terracotta);
  display: none;
}
.field.has-error .field-msg { display: block; }

.form-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 12px; flex-wrap: wrap;
}
.form-fineprint {
  margin: 0; font-size: 13px; color: rgba(253,248,235,.55);
  font-family: var(--font-display); font-style: italic;
}

/* Booking result */
.form-result {
  margin-top: 40px;
  background: var(--sand-50); color: var(--sea-deep);
  border-radius: var(--radius-m);
  padding: 44px 36px;
  display: grid; gap: 14px; place-items: center; text-align: center;
  box-shadow: var(--shadow-l);
  animation: fadein .5s ease both;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.result-icon {
  width: 56px; height: 56px; color: var(--palm);
}
.result-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 30px; margin: 0; color: var(--sea-deep);
  font-variation-settings: "opsz" 60;
}
.result-body { margin: 0; max-width: 50ch; color: var(--ink-soft); font-size: 16px; }
.result-body strong { color: var(--terracotta); font-weight: 600; }

/* ============ Contact ============ */
.contact { padding: clamp(80px, 11vh, 140px) var(--pad-x); background: var(--sand-50); }
.contact-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.contact .display { margin: 16px 0 26px; }
.contact-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 36px;
  margin-top: 32px;
}
.contact-info dt {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.contact-info dd {
  margin: 0; font-family: var(--font-display); font-size: 17px;
  color: var(--sea-deep);
  font-variation-settings: "opsz" 30;
  line-height: 1.4;
}
.contact-fig { margin: 0; }
.contact-fig img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
}
.contact-fig figcaption {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: var(--ink-soft); margin-top: 12px; text-align: right;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--sea-deep);
  color: var(--sand-100);
  padding: 64px var(--pad-x) 30px;
}
.brand-mark-foot { color: var(--sand-100); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1.4fr auto;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253,248,235,.12);
}
.foot-brand { display: flex; gap: 16px; align-items: center; font-size: 14px; line-height: 1.5; }
.foot-brand strong { font-family: var(--font-display); font-weight: 500; font-size: 18px; }

.foot-col-title {
  margin: 0 0 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-soft);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px;
}
.foot-col-sub {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0; font-size: 13px;
  color: rgba(253,248,235,.55);
}

.foot-contact ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
}
.foot-contact li { display: flex; flex-direction: column; gap: 3px; }
.foot-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(253,248,235,.55);
  display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 5px;
}
.foot-label-sub {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0; font-size: 12px;
  color: rgba(253,248,235,.4);
}
.foot-val {
  font-family: var(--font-display); font-size: 17px; line-height: 1.3;
  color: #fff8ec;
  font-variation-settings: "opsz" 30;
  transition: color .2s ease;
  text-decoration-color: rgba(253,248,235,.25);
  text-underline-offset: 4px;
}
.foot-val:hover { color: var(--gold-soft); text-decoration: underline; }

.foot-nav { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.foot-nav a { opacity: .75; transition: opacity .2s ease; }
.foot-nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.footer-base {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px;
}
.copyright { margin: 0; font-size: 12px; color: rgba(253,248,235,.55); }
.copyright-bil { font-family: var(--font-display); font-style: italic; font-size: 12.5px; color: rgba(253,248,235,.5); }
.contact-info dd a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.contact-info dd a:hover { color: var(--terracotta); border-bottom-color: currentColor; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .villa-grid { grid-template-columns: repeat(2, 1fr); }
  .villa-card:nth-child(3) { grid-column: 1 / -1; }
  .am-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-fig { order: -1; max-width: 520px; }
}
@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex; position: fixed; inset: 64px 0 auto;
    flex-direction: column; gap: 0;
    background: var(--sand-50); padding: 20px var(--pad-x) 30px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
  }
  .site-header:not(.is-scrolled) .site-nav.is-open a { color: var(--sea-deep); }
  .site-nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--line-faint); }
  .menu-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }

  .hero-inner { padding-top: 130px; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-fig { order: -1; max-width: 480px; }
  .about-fig img { aspect-ratio: 4 / 3; }

  .villa-grid { grid-template-columns: 1fr; }
  .villa-card:nth-child(3) { grid-column: 1; }

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

  .form { grid-template-columns: 1fr 1fr; }
  .field { grid-column: span 2; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-nav { flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .copyright { text-align: left; }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
