/* =========================================================
   Villa Verde — Stylesheet
   Palette: whitewashed cream, deep pine teal, terracotta, gold
========================================================= */

:root {
  --clr-cream: #faf6ef;
  --clr-cream-dark: #f1e9da;
  --clr-ink: #23291f;
  --clr-ink-soft: #4a5145;
  --clr-teal: #123a3a;
  --clr-teal-light: #1f5c56;
  --clr-terracotta: #c1663a;
  --clr-terracotta-dark: #9f4f29;
  --clr-gold: #c8a24a;
  --clr-sand: #eee2c9;
  --clr-white: #ffffff;
  --clr-line: rgba(35, 41, 31, 0.1);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1240px;
  --radius: 10px;
  --shadow-soft: 0 2px 6px rgba(18, 30, 25, 0.05), 0 14px 44px rgba(18, 30, 25, 0.13);
  --shadow-strong: 0 8px 20px rgba(18, 30, 25, 0.14), 0 26px 70px rgba(18, 30, 25, 0.28);
  --shadow-lift: 0 4px 10px rgba(18, 30, 25, 0.08), 0 20px 50px rgba(18, 30, 25, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--clr-ink);
  background: var(--clr-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: pageFadeIn 0.7s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--clr-teal);
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--clr-ink-soft);
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

section {
  position: relative;
}

section[id] {
  scroll-margin-top: 88px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.in-view { transition-delay: 0.12s; }
.reveal-delay-2.in-view { transition-delay: 0.24s; }
.reveal-delay-3.in-view { transition-delay: 0.36s; }

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--clr-terracotta);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.05rem;
}

.section-pad {
  padding: clamp(64px, 10vw, 120px) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(155deg, #cf7647 0%, var(--clr-terracotta) 45%, var(--clr-terracotta-dark) 100%);
  color: var(--clr-white);
  box-shadow: 0 8px 24px rgba(193, 102, 58, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(155deg, #d67f4d 0%, var(--clr-terracotta-dark) 60%, #8a4523 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(193, 102, 58, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--clr-white);
}

.btn-dark {
  background: var(--clr-teal);
  color: var(--clr-white);
}
.btn-dark:hover {
  background: #0b2626;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-teal);
  border-color: var(--clr-teal);
}
.btn-outline:hover {
  background: var(--clr-teal);
  color: var(--clr-white);
}

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 26px 0;
  transition: all 0.4s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(18, 30, 25, 0.08);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  transition: color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}
.site-header.is-scrolled .logo { color: var(--clr-teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.site-header.is-scrolled .nav-links a { color: var(--clr-ink); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 11px 24px; font-size: 0.82rem; }

.admin-link {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-white);
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}
.admin-link:hover { opacity: 1; }
.site-header.is-scrolled .admin-link { color: var(--clr-ink-soft); }

.site-header:not(.is-scrolled) .nav-cta .btn-primary {
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.site-header:not(.is-scrolled) .nav-cta .btn-outline {
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.site-header:not(.is-scrolled) .nav-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--clr-white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 600;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  transition: all 0.35s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--clr-ink); }
.nav-toggle.is-open span { background: var(--clr-ink) !important; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--clr-teal);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.14); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 20, 17, 0.6) 0%, rgba(12, 24, 20, 0.32) 42%, rgba(10, 20, 17, 0.8) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(6, 14, 12, 0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--clr-white);
  padding: 0 20px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--clr-gold);
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  color: var(--clr-white);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.35s forwards;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.65s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.hero-facts div {
  text-align: center;
  color: var(--clr-white);
}
.hero-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--clr-white);
}
.hero-facts span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue svg { width: 18px; height: 18px; }
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- About / Intro ---------- */
.about {
  background: var(--clr-cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media .frame-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  position: relative;
}
.about-media .frame-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 162, 74, 0.5);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-media .frame-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-media:hover .frame-main img { transform: scale(1.04); }

.about-text p.intro-lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-teal);
  line-height: 1.5;
  margin-bottom: 20px;
}
.about-text p + p { margin-top: 16px; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--clr-line);
}
.fact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fact-item svg {
  width: 26px;
  height: 26px;
  color: var(--clr-terracotta);
  margin-bottom: 4px;
}
.fact-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--clr-teal);
}
.fact-item span {
  font-size: 0.8rem;
  color: var(--clr-ink-soft);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--clr-cream-dark); }

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  border: 1px solid var(--clr-line);
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-ink-soft);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--clr-terracotta); color: var(--clr-terracotta); }
.filter-btn.active {
  background: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  grid-column: span 1;
  grid-row: span 1;
  transition: box-shadow 0.4s var(--ease);
}
.gallery-item:hover {
  box-shadow: var(--shadow-lift);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,58,58,0) 40%, rgba(15, 25, 21, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay span {
  color: var(--clr-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.gallery-item .g-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover .g-expand { opacity: 1; }
.gallery-item .g-expand svg { width: 16px; height: 16px; color: var(--clr-white); }

.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 20, 17, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure {
  margin: 0;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
}
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox figcaption {
  text-align: center;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--clr-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

/* ---------- Amenities ---------- */
.amenities {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(31, 92, 86, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 0.25) 0%, transparent 60%),
    var(--clr-teal);
  color: var(--clr-white);
}
.amenities .section-head h2,
.amenities .eyebrow { color: var(--clr-white); }
.amenities .eyebrow { color: var(--clr-gold); }
.amenities .eyebrow::before { background: var(--clr-gold); }
.amenities .section-head p { color: rgba(255,255,255,0.72); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.amenity-card {
  background: var(--clr-teal);
  padding: 34px 26px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
}
.amenity-card:hover {
  background: var(--clr-teal-light);
  transform: translateY(-3px);
  z-index: 1;
}
.amenity-card svg {
  width: 30px;
  height: 30px;
  color: var(--clr-gold);
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease);
}
.amenity-card:hover svg { transform: scale(1.1); }
.amenity-card h4 {
  color: var(--clr-white);
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.amenity-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
}

/* ---------- Location ---------- */
.location { background: var(--clr-cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: stretch;
}
.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(15%) contrast(1.02);
}
.map-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--clr-white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-badge svg { width: 22px; height: 22px; color: var(--clr-terracotta); }
.map-badge strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--clr-teal); }
.map-badge span { font-size: 0.75rem; color: var(--clr-ink-soft); }

.location-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 30px 0 34px;
}
.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--clr-line);
}
.location-list li:last-child { border-bottom: none; padding-bottom: 0; }
.location-list .loc-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.location-list li:hover .loc-icon {
  background: var(--clr-terracotta);
  transform: scale(1.08);
}
.location-list li:hover .loc-icon svg { color: var(--clr-white); }
.location-list .loc-icon svg { width: 20px; height: 20px; color: var(--clr-terracotta); transition: color 0.35s var(--ease); }
.location-list h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.location-list p { font-size: 0.88rem; }

.location-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 60px;
}
.location-strip .img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  height: 320px;
  transition: box-shadow 0.4s var(--ease);
}
.location-strip .img-card:hover { box-shadow: var(--shadow-lift); }
.location-strip .img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.location-strip .img-card:hover img { transform: scale(1.06); }
.location-strip .img-card .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(10,20,17,0.75));
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--clr-cream-dark); }
.review-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.review-card {
  background: var(--clr-white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  border-left: 3px solid var(--clr-gold);
}
.review-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  color: var(--clr-gold);
}
.review-card .stars svg { width: 18px; height: 18px; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--clr-teal);
  line-height: 1.55;
  margin: 0 0 26px;
  font-style: italic;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clr-terracotta);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.review-card .reviewer strong { display: block; font-size: 0.95rem; color: var(--clr-ink); }
.review-card .reviewer span { font-size: 0.78rem; color: var(--clr-ink-soft); }

.review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.review-stats div {
  text-align: center;
  padding: 24px 10px;
  background: var(--clr-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.review-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--clr-terracotta);
}
.review-stats span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-ink-soft); }

/* ---------- Booking CTA ---------- */
.booking-cta {
  position: relative;
  overflow: hidden;
}
.booking-cta .bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.booking-cta .bg-media img { width: 100%; height: 100%; object-fit: cover; }
.booking-cta .bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,26,22,0.88), rgba(12,26,22,0.82));
}
.booking-cta .container { position: relative; z-index: 1; }
.booking-cta h2 { color: var(--clr-white); font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.booking-cta .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--clr-cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 80px);
}
.contact-info-card {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31, 92, 86, 0.6) 0%, transparent 55%),
    var(--clr-teal);
  color: var(--clr-white);
  border-radius: var(--radius);
  padding: 42px;
  height: fit-content;
  box-shadow: var(--shadow-soft);
}
.contact-info-card h3 { color: var(--clr-white); font-size: 1.4rem; margin-bottom: 14px; }
.contact-info-card p { color: rgba(255,255,255,0.72); margin-bottom: 30px; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.contact-methods li { display: flex; gap: 16px; align-items: flex-start; }
.contact-methods .m-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-methods .m-icon svg { width: 18px; height: 18px; color: var(--clr-gold); }
.contact-methods strong { display: block; font-size: 0.9rem; color: var(--clr-white); margin-bottom: 3px; }
.contact-methods span, .contact-methods a { font-size: 0.85rem; color: rgba(255,255,255,0.68); }
.contact-methods a:hover { color: var(--clr-white); }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-row a:hover { background: var(--clr-gold); border-color: var(--clr-gold); }
.social-row svg { width: 16px; height: 16px; color: var(--clr-white); }

.contact-form {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-ink-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--clr-line);
  border-radius: 4px;
  background: var(--clr-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-ink);
  transition: border-color 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-terracotta);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.78rem;
  color: var(--clr-ink-soft);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: var(--clr-sand);
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--clr-teal);
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--clr-terracotta); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0d1e1a;
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
  position: relative;
  border-top: 1px solid rgba(200, 162, 74, 0.35);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--clr-white); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; max-width: 280px; }
.footer-col h5 {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--clr-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  background: var(--clr-white);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.12);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px 10px; font-size: 0.82rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clr-teal);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
  z-index: 300;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* =========================================================
   Highlights strip
========================================================= */
.highlights {
  background: var(--clr-cream);
  padding: 44px 0;
  border-top: 1px solid var(--clr-line);
  border-bottom: 1px solid var(--clr-line);
}
.highlights .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: left;
}
.highlight-item svg {
  width: 30px;
  height: 30px;
  color: var(--clr-terracotta);
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--clr-teal);
}
.highlight-item span {
  font-size: 0.82rem;
  color: var(--clr-ink-soft);
}

/* =========================================================
   Full-bleed "moment" break
========================================================= */
.moment-break {
  position: relative;
  height: clamp(340px, 46vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.moment-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moment-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,19,0.35), rgba(10,22,19,0.55));
}
.moment-break blockquote {
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  line-height: 1.4;
}
.moment-break blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 4.5rem;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.85;
}
.moment-break cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* =========================================================
   Availability Calendar
========================================================= */
.cal-widget {
  background: var(--clr-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}
.cal-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 6px;
}
.cal-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--clr-line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-teal);
  transition: all 0.3s var(--ease);
}
.cal-nav-btn:hover { background: var(--clr-sand); }
.cal-nav-btn svg { width: 16px; height: 16px; }

.cal-months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.cal-month-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--clr-teal);
  margin-bottom: 14px;
  text-align: center;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-ink-soft);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--clr-ink);
  border-radius: 6px;
  position: relative;
}
.cal-day--empty { visibility: hidden; }
.cal-day.is-past {
  color: rgba(35,41,31,0.28);
}
.cal-day.is-unavailable {
  color: rgba(35,41,31,0.35);
  background: var(--clr-cream-dark);
  text-decoration: line-through;
}
.cal-day.is-today span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cal-day.is-selectable { cursor: pointer; transition: background 0.2s var(--ease); }
.cal-day.is-selectable:hover { background: var(--clr-sand); }
.cal-day.is-start,
.cal-day.is-end {
  background: var(--clr-terracotta);
  color: var(--clr-white);
  font-weight: 600;
}
.cal-day.is-in-range {
  background: rgba(193, 102, 58, 0.16);
}

.cal-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--clr-line);
}
.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--clr-ink-soft);
}
.cal-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.cal-swatch--available { background: var(--clr-white); border: 1px solid var(--clr-line); }
.cal-swatch--unavailable { background: var(--clr-cream-dark); }
.cal-swatch--selected { background: var(--clr-terracotta); }

.cal-widget.is-preview .cal-day.is-selectable:hover { background: none; cursor: default; }

.cal-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--clr-ink-soft);
  background: var(--clr-sand);
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 18px;
}
.cal-disclaimer svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--clr-terracotta); }

/* Homepage booking teaser layout */
.book-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.book-teaser-text h2 { color: var(--clr-white); }
.book-teaser-text p { color: rgba(255,255,255,0.78); margin: 16px 0 30px; max-width: 460px; }
.book-teaser-text .cta-row { justify-content: flex-start; }
.booking-cta .cal-widget { background: rgba(255,255,255,0.97); }

/* =========================================================
   Booking Page
========================================================= */
.booking-hero {
  padding: clamp(150px, 20vw, 200px) 0 clamp(60px, 8vw, 90px);
  background: linear-gradient(180deg, var(--clr-teal) 0%, #0d2b2b 100%);
  text-align: center;
}
.booking-hero .eyebrow { justify-content: center; color: var(--clr-gold); }
.booking-hero .eyebrow::before { background: var(--clr-gold); }
.booking-hero h1 {
  color: var(--clr-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 14px 0 16px;
}
.booking-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.booking-summary {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31, 92, 86, 0.6) 0%, transparent 55%),
    var(--clr-teal);
  color: var(--clr-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 110px;
}
.booking-summary h3 { color: var(--clr-white); font-size: 1.15rem; margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 0.9rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row span:first-child { color: rgba(255,255,255,0.65); }
.summary-row span:last-child { font-weight: 600; color: var(--clr-white); }
.summary-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.summary-note {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.08);
  padding: 12px 14px;
  border-radius: 6px;
}
.summary-note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--clr-gold); margin-top: 1px; }

.booking-form-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 36px;
}
.booking-form-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.booking-form-card .step-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-terracotta);
  font-weight: 600;
  margin-bottom: 30px;
  display: block;
}
.booking-form-card .step-label:not(:first-child) { margin-top: 34px; }

.stepper-count {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--clr-line);
  border-radius: 999px;
  overflow: hidden;
}
.stepper-count button {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--clr-cream);
  font-size: 1.1rem;
  color: var(--clr-teal);
  transition: background 0.2s var(--ease);
}
.stepper-count button:hover { background: var(--clr-sand); }
.stepper-count input {
  width: 46px;
  text-align: center;
  border: none;
  background: var(--clr-white);
  font-size: 0.95rem;
  padding: 0;
  height: 38px;
}
.guest-steppers {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.guest-stepper-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guest-stepper-item label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-ink-soft);
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1080px) {
  .about-grid,
  .location-grid,
  .review-wrap,
  .contact-grid,
  .book-teaser-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .about-media { margin-bottom: 60px; }
  .about-media .frame-main img { height: 440px; }
  .fact-row { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .highlights .container { grid-template-columns: 1fr; gap: 22px; }
  .highlight-item { justify-content: flex-start; }
  .book-teaser-text .cta-row { justify-content: center; }
  .book-teaser-text { text-align: center; }
  .book-teaser-text p { margin-left: auto; margin-right: auto; }
  .booking-summary { position: static; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--clr-cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 550;
  }
  .nav-links.mobile-open a { color: var(--clr-ink) !important; font-size: 1.3rem; }

  .hero-facts { gap: 24px; }
  .hero-facts strong { font-size: 1.3rem; }

  .fact-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 2; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .location-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .review-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }
  .cal-months { grid-template-columns: 1fr; }
  .booking-form-card { padding: 24px; }
  .guest-steppers { gap: 20px; }
}

@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .review-stats { grid-template-columns: 1fr; }
  .hero-facts { flex-direction: row; flex-wrap: wrap; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; }
  .contact-form, .contact-info-card { padding: 28px; }
}
