:root {
  --primary: #145a5a;
  --primary-dark: #0d3f3f;
  --accent: #c2703f;
  --accent-soft: #e8b189;
  --ink: #23302c;
  --bg: #fbf8f3;
  --bg-soft: #f2ece1;
  --card: #fffdfa;
  --muted: #756e63;
  --border: rgba(35, 48, 44, 0.09);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 30px 70px -34px rgba(20, 40, 35, 0.28);
  --shadow-tight: 0 14px 34px -18px rgba(20, 40, 35, 0.28);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-locked { overflow: hidden; }

h1, h2, h3, .logo { font-family: var(--serif); letter-spacing: -0.01em; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Grain overlay ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll reveal ---------- */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-init { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ---------- Header: floating glass pill ---------- */
.site-header {
  position: fixed;
  top: 1.1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.header-inner {
  position: relative;
  pointer-events: auto;
  box-sizing: border-box;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.55rem 0.6rem 0.55rem 1.5rem;
  border: 1px solid rgba(35, 48, 44, 0.08);
  border-radius: 999px;
  box-shadow: 0 20px 45px -22px rgba(20, 40, 35, 0.35);
}
/* Blur lives on a pseudo-element, not .header-inner itself, so this element
   never becomes a containing block for position:fixed descendants (the
   mobile nav overlay) - backdrop-filter/filter/transform on an ancestor
   redirects position:fixed to that ancestor instead of the viewport. */
.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 253, 250, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}
.logo {
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--primary);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.site-header nav {
  display: flex;
  gap: 1.7rem;
  flex-wrap: wrap;
}
.site-header nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--primary);
  border-color: var(--accent);
}
.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--primary);
  flex-shrink: 0;
  position: relative;
}
.nav-toggle svg { width: 18px; height: 18px; overflow: visible; }
.nav-toggle .bar {
  transform-origin: center;
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease), y 0.5s var(--ease);
}
.nav-toggle-open .bar-1 { transform: translateY(6px) rotate(45deg); }
.nav-toggle-open .bar-2 { opacity: 0; }
.nav-toggle-open .bar-3 { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; }
  .header-actions { display: none; }
  .header-inner { padding: 0.5rem 0.5rem 0.5rem 1.2rem; }
  .site-header nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    background: rgba(251, 248, 243, 0.88);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
  }
  .site-header nav.nav-open { opacity: 1; visibility: visible; }
  .site-header nav a {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
    border-bottom: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
  }
  .site-header nav.nav-open a { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  font-size: 0.92rem;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(194, 112, 63, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -14px rgba(194, 112, 63, 0.6); }
.btn-large { padding: 1.05rem 2.3rem; font-size: 1rem; }
.btn-secondary {
  background: var(--card);
  color: var(--primary);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-tight);
}
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 840px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,25,22,0.05) 0%, rgba(15,25,22,0.1) 45%, rgba(10,18,16,0.82) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  color: #fff;
  padding: 3.5rem 1.5rem;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-soft);
  margin-bottom: 0.9rem;
}
.hero-overlay h1 { margin: 0 0 0.7rem; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
.hero-overlay p.hero-sub { margin: 0 0 1.8rem; font-size: 1.2rem; opacity: 0.92; font-family: var(--serif); font-style: italic; font-weight: 400; }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ---------- Sister property banner ---------- */
.sister-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.sister-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.sister-banner h3 { margin: 0 0 0.3rem; font-size: 1.35rem; font-weight: 500; }
.sister-banner p { margin: 0; color: rgba(255, 255, 255, 0.85); }
.sister-banner .btn-ghost-light { flex-shrink: 0; }

.page-hero {
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 8.5rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { margin: 0 0 0.6rem; font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 500; }
.page-hero p { margin: 0 auto; opacity: 0.88; font-size: 1.05rem; max-width: 640px; }

/* ---------- Sections ---------- */
.section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.section-alt { background: var(--bg-soft); }
.section h2 {
  color: var(--primary);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-top: 0;
}
.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 700px; }
.section-header { margin-bottom: 2.2rem; }
main.section h2, main.section h1 { font-weight: 500; }

/* first page-hero should not double up with body's own top padding since header floats */
body { padding-top: 0; }

/* ---------- Home highlights strip ---------- */
.highlights-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 1rem;
  margin: 0 auto;
  max-width: 1020px;
  padding: 2.8rem 1.5rem 0;
  position: relative;
  z-index: 2;
}
.highlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-tight);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.highlight-card .hi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
}
.highlight-card .hi-icon svg { width: 19px; height: 19px; stroke-width: 1.5; }
.highlight-card strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--primary); font-weight: 500; }
.highlight-card span.hi-label { font-size: 0.82rem; color: var(--muted); }

/* generic icon circle, reused on key-facts and distance stats */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  flex-shrink: 0;
}
.icon-circle svg { width: 17px; height: 17px; stroke-width: 1.5; }
.icon-circle.lg { width: 46px; height: 46px; }
.icon-circle.lg svg { width: 21px; height: 21px; }

/* ---------- Cards / grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.6rem;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-tight);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.info-card::before { content: ""; display: block; }
.info-card {
  position: relative;
}
.info-card > * { padding-left: 1.6rem; padding-right: 1.6rem; }
.info-card > *:first-child { padding-top: 1.6rem; }
.info-card > *:last-child { padding-bottom: 1.6rem; }
.info-card h3 {
  margin-top: 0;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.15rem;
}
.info-card p { flex: 1; color: var(--muted); }
.info-card .btn { align-self: flex-start; margin-top: auto; }

.key-facts {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 0 0 1.6rem;
}
.key-facts li { background: var(--bg-soft); padding: 0.6rem 1.1rem; border-radius: 999px; font-size: 0.92rem; }

.key-facts-icons li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list li {
  background: var(--bg-soft);
  color: var(--primary);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}
.amenity-group {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.6rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: var(--shadow-tight);
}
.amenity-group:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.amenity-group h3 {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.amenity-group .tag-list { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-tight);
}
.faq-item h3 {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.faq-item p { margin: 0; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 170px);
  gap: 0.9rem;
}
.gallery-teaser-grid a:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-teaser-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; transition: transform 0.7s var(--ease); }
.gallery-teaser-grid a { display: block; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-tight); }
.gallery-teaser-grid a:hover img { transform: scale(1.06); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.2rem;
}
.gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow-tight); }
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.07); }

/* CSS-only lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 19, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease);
  z-index: 100;
  padding: 2rem;
}
.lightbox:target { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute;
  top: 1.7rem;
  right: 2.2rem;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  line-height: 1;
}

/* ---------- Calendar ---------- */
.calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.dot.available { background: #e8f3ea; border: 1px solid #3f7a55; }
.dot.booked { background: #dedad2; }

.calendar-status { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.cal-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.cal-nav-btn:hover:not(:disabled) { background: var(--primary); color: #fff; }
.cal-nav-btn:disabled { opacity: 0.35; cursor: default; }
.cal-range-label {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.calendar-months {
  display: grid;
  grid-template-columns: repeat(3, minmax(min(200px, 100%), 1fr));
  gap: 1.5rem;
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.cal-month-block { min-width: 0; }
.cal-month {
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-size: 0.9rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  text-align: center;
  padding: 0.35rem 0;
  border-radius: 6px;
  font-size: 0.72rem;
  background: #e8f3ea;
  color: #3f7a55;
}
.cal-day.booked {
  background: #ece7dd;
  color: #a39c8d;
  text-decoration: line-through;
}
.cal-day.past {
  background: transparent;
  color: #d8d2c5;
}
.cal-day.empty { visibility: hidden; }
.cal-weekday {
  text-align: center;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 720px) {
  .calendar-months { grid-template-columns: 1fr; max-width: 320px; }
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.location-address {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 0;
  color: var(--primary);
}
.map-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.map-link:hover { text-decoration: underline; }
.distance-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.distance-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  text-align: center;
  min-width: 100px;
  box-shadow: var(--shadow-tight);
}
.distance-stat .icon-circle { margin: 0 auto 0.5rem; }
.distance-value { display: block; font-weight: 700; }
.distance-label { display: block; font-size: 0.85rem; color: var(--muted); }

.location-map {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-map iframe { display: block; min-height: 360px; width: 100%; border: 0; }
.area-map-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); margin-top: 1.5rem; }

@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 140px); }
  .gallery-teaser-grid a:first-child { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Book / price ---------- */
.price-callout {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 1.1rem 1.4rem;
  border-radius: 10px;
}

.ota-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 2rem;
}
.ota-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ota-badge-airbnb { background: #FF5A5F; }
.ota-badge-booking { background: #003580; }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 800px) {
  .book-grid { grid-template-columns: 1fr; }
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-tight);
}
.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label { font-weight: 600; font-size: 0.88rem; }
.form-row input,
.form-row textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 90, 90, 0.12);
}
.form-row-split {
  flex-direction: row;
  gap: 1rem;
}
.form-row-split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.success { color: #3f7a55; }
.form-status.error { color: #b0463f; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: #cfe3de;
  padding: 3rem 0 2.5rem;
  margin-top: 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-inner nav { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-inner nav a { color: #cfe3de; text-decoration: none; font-size: 0.9rem; }
.footer-inner nav a:hover { text-decoration: underline; }
.footer-copy { font-size: 0.85rem; color: #8ba89f; margin-top: 1.5rem; }

.footer-also-by {
  font-size: 0.8rem;
  color: #7ea095;
  margin-top: 0.7rem;
}
.footer-also-by a { color: #a9c9bf; text-decoration: none; }
.footer-also-by a:hover { color: #cfe3de; text-decoration: underline; }

@media (max-width: 640px) {
  .hero-overlay h1 { font-size: 2rem; }
  .page-hero { padding-top: 7.5rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .info-card > * { padding-left: 1.3rem; padding-right: 1.3rem; }
  .card-grid, .amenities-grid { grid-template-columns: 1fr; }
}
