/* ============================================================
   D'Fahmi Homestay - Laman Awam (guest)
   Reka bentuk: MODERN & BERSIH · mobile-first
   Palet semula jadi / earth-tone hijau yang tenang, banyak ruang putih.
   Semua klas & id booking kalendar dikekalkan (jangan ubah).
   ============================================================ */

:root {
  /* Palet semula jadi (earth-tone) */
  --primary: #2F5D3A;        /* hijau hutan sederhana */
  --primary-deep: #24452D;   /* hijau tua (dark) */
  --primary-soft: #EAF1E6;   /* hijau sangat pucat */
  --sage: #7D9B7A;           /* sage lembut */
  --cream: #FAF7F1;          /* latar utama (kertas hangat) */
  --surface: #FFFFFF;        /* kad */
  --amber: #C8963E;          /* gold-amber lembut (CTA) */
  --amber-soft: #F5ECDC;     /* gold pucat */

  --white: #FFF;
  --text: #2B332D;           /* teks utama (hijau-abu gelap) */
  --muted: #69736C;          /* teks sekunder */
  --line: #EAE4D8;           /* garisan lembut */
  --red: #B3412F;
  --red-soft: #FBE9E4;
  --whatsapp: #1FAA59;
  --whatsapp-dark: #178F4A;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(36, 69, 45, 0.06);
  --shadow-lg: 0 20px 50px rgba(36, 69, 45, 0.10);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  padding-bottom: 84px; /* ruang untuk sticky CTA mobile */
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--primary-deep);
  line-height: 1.22;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

/* Section heading yang konsisten */
.section-title {
  font-size: clamp(26px, 5vw, 38px);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* ================= Butang ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
  min-height: 46px;
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 3px solid rgba(47, 93, 58, 0.35); outline-offset: 2px; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); color: #fff; box-shadow: 0 10px 22px rgba(47, 93, 58, 0.28); }

.btn-gold { background: var(--amber); color: #fff; }
.btn-gold:hover { background: #B17E2C; color: #fff; box-shadow: 0 10px 22px rgba(200, 150, 62, 0.32); }

.btn-dark { background: var(--primary-deep); color: #fff; }
.btn-dark:hover { background: var(--primary); color: #fff; }

.btn-outline { background: transparent; border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }

.btn-lg { padding: 15px 30px; font-size: 16px; min-height: 52px; }
.btn-sm { padding: 9px 18px; font-size: 13px; min-height: 40px; }
.btn-xs { padding: 7px 15px; font-size: 12px; min-height: 34px; }
.btn-block { width: 100%; }

/* ================= Header ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(36, 69, 45, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--primary-deep);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--primary); }
.brand .brand-accent { color: var(--amber); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 12px;
  cursor: pointer;
  min-height: 46px;
  min-width: 46px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-deep);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 14px 22px 22px;
  gap: 4px;
  box-shadow: 0 24px 40px rgba(36, 69, 45, 0.10);
}
.site-nav.open { display: flex; }
.site-nav a {
  padding: 13px 10px;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
}
.site-nav a:hover { background: var(--primary-soft); }
.site-nav .nav-cta { justify-content: center; margin-top: 8px; }

/* ================= Hero ================= */

.hero {
  position: relative;
  color: var(--cream);
  padding: 72px 0 84px;
  overflow: hidden;
  /* Gradasi hijau emas yang halus & moden (tiada foto palsu) */
  background:
    radial-gradient(900px 460px at 88% -12%, rgba(200, 150, 62, 0.30), transparent 60%),
    radial-gradient(760px 440px at -8% 112%, rgba(200, 150, 62, 0.16), transparent 55%),
    linear-gradient(158deg, var(--primary-deep) 0%, var(--primary) 72%);
}
/* Corak garis seni bina halus (grid lembut) — menggantikan corak daun lama */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #E9C978;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 7vw, 56px);
  max-width: 680px;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(16px, 3vw, 19px);
  color: rgba(250, 247, 241, 0.88);
  max-width: 560px;
  margin: 0 0 34px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions .btn { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-meta .chip {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}

/* ================= Section umum ================= */

.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .section-sub { margin: 0 auto; }

/* ================= Quick highlights ================= */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D9CFBA; }
.hl-ico {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  background: var(--primary-soft);
  border-radius: 18px;
  font-size: 26px;
  line-height: 1;
}
.hl-card h3 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; margin: 0; color: var(--primary-deep); }

/* ================= About ================= */

.about-grid {
  display: grid;
  gap: 34px;
}
.about-grid .about-paragraphs p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}
.about-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.about-features li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
}
.about-features .f-ico {
  width: 24px; height: 24px;
  flex: none;
  display: grid; place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  font-size: 13px;
}

.about-note {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 22px 22px;
  font-size: 14.5px;
  box-shadow: var(--shadow);
}
.about-note strong { color: var(--primary-deep); }
.about-note ul li { margin-bottom: 8px; }

/* ================= Gallery ================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--primary-deep), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder { text-align: center; color: rgba(255, 255, 255, 0.88); padding: 16px; }
.gallery-placeholder .g-ico { font-size: 36px; display: block; margin-bottom: 10px; }
.gallery-placeholder .g-cap { font-size: 12px; font-weight: 600; opacity: 0.9; }
.gallery-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(36, 69, 45, 0.82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 12px;
}
.gallery-note {
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 0;
  text-align: center;
}
.gallery-note code { background: var(--primary-soft); padding: 2px 8px; border-radius: 6px; font-size: 12px; }

/* ================= Amenities ================= */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.amenity-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.amenity-card:hover { box-shadow: var(--shadow); border-color: #D9CFBA; }
.amenity-ico {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 14px;
  font-size: 20px;
  line-height: 1;
}
.amenity-card p { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.45; color: var(--text); }
.amenity-card small { display: block; color: var(--muted); font-weight: 400; font-size: 12.5px; margin-top: 3px; }

/* ================= Pricing ================= */

.pricing-wrap { max-width: 520px; margin: 0 auto; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-deep), var(--sage), var(--amber));
}
.price-value {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--primary-deep);
  font-weight: 700;
  line-height: 1;
}
.price-per { color: var(--muted); font-size: 15px; }
.price-tag { display: block; color: var(--muted); font-size: 13.5px; margin-top: 8px; }
.price-rows { margin: 26px 0; display: grid; gap: 10px; text-align: left; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
}
.price-row .val { color: var(--primary-deep); font-weight: 700; }
.price-note { font-size: 12.5px; color: var(--muted); margin: 16px 0 0; line-height: 1.5; }

/* ================= Location & Nearby ================= */

.location-grid {
  display: grid;
  gap: 20px;
}
.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.location-card h3 { font-size: 18px; margin-bottom: 14px; }
.location-address {
  font-size: 15px;
  line-height: 1.75;
  white-space: pre-line;
  margin: 0 0 20px;
  color: var(--text);
}

.nearby-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.nearby-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .15s ease;
}
.nearby-list li:hover { border-color: #D9CFBA; }
.nearby-name { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.nearby-name .n-ico { color: var(--amber); }
.nearby-time {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 13px;
  white-space: nowrap;
}

/* ================= Calendar ================= */

.calendar-wrap { max-width: 640px; margin: 0 auto; }
.calendar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px 16px 26px;
  box-shadow: var(--shadow-lg);
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 8px;
}
.cal-title { font-family: var(--font-serif); font-size: 20px; color: var(--primary-deep); font-weight: 700; }
.cal-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--primary-deep);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.cal-nav-btn:hover { background: var(--amber-soft); border-color: #E0D4BA; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-wd {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cal-cell {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform .1s ease, border-color .12s ease, background .12s ease;
}
.cal-cell em {
  font-style: normal;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 1px;
  color: inherit;
}
.cal-cell.empty { border: 0; background: transparent; cursor: default; }

.cal-cell.state-available:hover { border-color: var(--amber); transform: scale(1.06); background: var(--amber-soft); }
.cal-cell.state-booked { background: var(--red-soft); border-color: #EFC8BC; color: var(--red); cursor: not-allowed; }
.cal-cell.state-unavailable { background: #39423B; border-color: #39423B; color: #F2F0E9; cursor: not-allowed; }
.cal-cell.is-past { background: #F0EBDF; border-color: #E6DFCE; color: #A8A294; cursor: not-allowed; }
.cal-cell.is-past em { color: #A8A294; }

.cal-cell.selected-cin, .cal-cell.selected-cout {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(200, 150, 62, 0.40);
}
.cal-cell.selected-cin em, .cal-cell.selected-cout em { color: #fff; }
.cal-cell.in-range {
  background: var(--amber-soft);
  border-color: #E7D9B8;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}
.legend-dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.14); }
.legend-dot.green { background: var(--surface); border-color: var(--sage); }
.legend-dot.red { background: var(--red); }
.legend-dot.black { background: #39423B; }

.cal-hint {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin: 16px 0 0;
}
.cal-hint strong { color: var(--primary-deep); }

.error-box {
  display: none;
  background: var(--red-soft);
  border: 1px solid #EFC8BC;
  color: var(--red);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
}
.error-box.show { display: block; }

/* ================= Summary ================= */

.summary-card {
  display: none;
  max-width: 640px;
  margin: 24px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.summary-card.show { display: block; }

.sum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.sum-title { font-family: var(--font-serif); font-size: 18px; color: var(--primary-deep); font-weight: 700; }
.sum-clear {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  min-height: 34px;
  padding: 0 6px;
}
.sum-clear:hover { color: var(--primary); }

.sum-dates {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 18px;
}
.sum-date { text-align: center; flex: 1; }
.sum-date .sd-day { font-size: 22px; font-weight: 700; color: var(--primary-deep); }
.sum-date .sd-mo { font-size: 12px; color: var(--muted); font-weight: 600; }
.sum-arrow { color: var(--amber); font-size: 20px; font-weight: 700; }

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.sum-row:last-of-type { border-bottom: 0; }
.sum-row .lbl { color: var(--muted); }
.sum-row .val { font-weight: 700; color: var(--primary-deep); }
.sum-row.total { border-top: 2px solid var(--primary); border-bottom: 0; margin-top: 4px; }
.sum-row.total .val { font-size: 21px; color: var(--primary-deep); font-family: var(--font-serif); }

.sum-actions { margin-top: 20px; }

/* ================= Booking form ================= */

.booking-section { display: none; max-width: 640px; margin: 28px auto 0; }
.booking-section.show { display: block; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 20px; margin-bottom: 4px; }
.form-card .sub { font-size: 13.5px; color: var(--muted); margin: 0 0 20px; }

.form-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin: 0 0 14px;
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--primary-deep); margin-bottom: 7px; }
.form-group label .req { color: var(--red); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13.5px 15px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-family: var(--font-sans);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(125, 155, 122, 0.20);
}
.form-group textarea { resize: vertical; min-height: 76px; }

.form-grid-2 { display: grid; gap: 16px; }
.form-grid-2 .form-group { margin-bottom: 0; }

.booking-snapshot {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 18px;
  margin-bottom: 22px;
}
.snap-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}
.snap-row:last-child { border-bottom: 0; }
.snap-row .s-val { font-weight: 700; color: var(--primary-deep); }
.snap-row.total .s-val { color: var(--primary-deep); font-size: 18px; font-family: var(--font-serif); }

.form-submit { margin-top: 8px; }
.form-submit .price-note { text-align: center; }

/* ================= Footer ================= */

.site-footer {
  background: var(--primary-deep);
  color: rgba(250, 247, 241, 0.86);
  padding: 56px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 34px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.site-footer p { font-size: 14.5px; line-height: 1.7; margin: 0 0 12px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.contact-name { font-weight: 700; color: #E9C978; min-width: 44px; }
.contact-phone { color: #fff; font-weight: 600; }
.contact-phone:hover { color: #E9C978; }

.footer-address { white-space: pre-line; margin: 0 0 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(250, 247, 241, 0.58);
}

/* ================= Sticky CTA (mobile) ================= */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(36, 69, 45, 0.10);
}

/* ================= Responsive: tablet & desktop ================= */

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .highlights-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }

  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .site-nav a { padding: 8px 2px; font-size: 14.5px; }
  .site-nav a:hover { background: none; color: var(--primary); }
  .site-nav .nav-cta { padding: 10px 20px; margin: 0; }

  .hero { padding: 104px 0 116px; }
  .hero-inner { margin: 0 auto; }
  .section { padding: 88px 0; }

  .about-grid { grid-template-columns: 3fr 2fr; align-items: start; gap: 48px; }
  .location-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 22px; }

  .cal-grid { gap: 7px; }
  .cal-cell em { font-size: 7.5px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
