/* ================================================================
   main.css — Paro  (Scandinavian nature retreat)
   ================================================================ */

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

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --white:      #FAFAF7;
  --cream:      #F2EBE0;
  --beige:      #E4D5C0;
  --stone:      #C8B9A4;
  --sage:       #7A8C72;
  --sage-light: #A8B89F;
  --forest:     #2E3F2E;
  --forest-dk:  #1A261A;
  --earth:      #8B6B4A;
  --charcoal:   #252525;
  --muted:      #717171;
  --warm-gray:  #D4CBC0;

  --font-disp:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography helpers ─────────────────────────────────────────── */
.disp   { font-family: var(--font-disp); }
.italic { font-style: italic; }

/* ── Navigation ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
#nav.scrolled {
  background: rgba(250,250,247,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--white);
  transition: color .3s;
  flex: 1;
}
#nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
#nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--white); }
#nav.scrolled .nav-links a:hover { color: var(--forest); }

.lang-toggle {
  display: flex;
  gap: .25rem;
  margin-left: 1.5rem;
}
.lang-btn {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .2rem .5rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 2px;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.lang-btn.active { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }
#nav.scrolled .lang-btn { border-color: rgba(0,0,0,.25); color: var(--muted); }
#nav.scrolled .lang-btn.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: 1rem;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: all .3s;
}
#nav.scrolled .nav-burger span { background: var(--charcoal); }

/* ── Mobile nav ─────────────────────────────────────────────────── */
#mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--forest-dk);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
#mobile-nav.open { transform: translateY(0); }
#mobile-nav a {
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .04em;
}
#mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.75rem;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ── Hero ───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,20,10,.35) 0%,
    rgba(10,20,10,.55) 60%,
    rgba(10,20,10,.70) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-family: var(--font-disp);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  opacity: .9;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-block;
  padding: .85rem 2.5rem;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 2px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  transition: background .3s, border-color .3s;
}
.hero-cta:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.6); }
}

/* ── Sections ───────────────────────────────────────────────────── */
.section {
  padding: 6rem 2.5rem;
}
.section-sm { padding: 4rem 2.5rem; }
.container  { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
}

/* ── Intro ──────────────────────────────────────────────────────── */
#intro {
  background: var(--cream);
}
#intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-image {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-body .section-text { max-width: 100%; }
.intro-stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
}
.intro-stat-num {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.intro-stat-label {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .25rem;
}

/* ── Highlights ─────────────────────────────────────────────────── */
#highlights {
  background: var(--white);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--beige);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.highlight-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background .3s;
}
.highlight-card:hover { background: var(--cream); }
.highlight-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.highlight-title {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.highlight-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Gallery ────────────────────────────────────────────────────── */
#gallery {
  background: var(--forest-dk);
  padding: 5rem 0;
}
#gallery .section-label { color: var(--sage-light); }
#gallery .section-title { color: var(--cream); }
.gallery-header { padding: 0 2.5rem 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
  margin-top: 2rem;
}
.gallery-item { overflow: hidden; }
.gallery-item img { transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.g1 { grid-column: 1/6;  grid-row: 1/3; }
.g2 { grid-column: 6/9;  grid-row: 1/2; }
.g3 { grid-column: 9/13; grid-row: 1/2; }
.g4 { grid-column: 6/9;  grid-row: 2/3; }
.g5 { grid-column: 9/13; grid-row: 2/3; }

/* ── Booking CTA ────────────────────────────────────────────────── */
#book-cta {
  background: var(--cream);
  text-align: center;
}
.cta-price-note {
  font-size: .875rem;
  color: var(--muted);
  margin-top: .75rem;
}
.cta-price-main {
  font-family: var(--font-disp);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--forest);
  color: var(--cream);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .3s;
}
.btn-primary:hover { background: var(--forest-dk); }
.btn-outline {
  display: inline-block;
  padding: .85rem 2.5rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s;
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* ── Location ───────────────────────────────────────────────────── */
#location {
  background: var(--white);
}
#location .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-map {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--beige);
}
.location-map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.location-details { display: flex; flex-direction: column; gap: 1.25rem; }
.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.location-item-icon {
  font-size: 1.25rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.location-item-text strong { display: block; font-weight: 500; margin-bottom: .2rem; }
.location-item-text span { font-size: .9rem; color: var(--muted); }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--forest-dk);
  color: var(--cream);
  padding: 4rem 2.5rem 2.5rem;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--cream);
}
.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: rgba(255,255,255,.4);
  transition: color .2s;
  font-size: 1rem;
}
.footer-social a:hover { color: var(--cream); }

/* ── Property page ──────────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 2.5rem 4rem;
  background: var(--cream);
}
.property-gallery-full {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 360px 240px;
  gap: 3px;
}
.pg1 { grid-column: 1/8;  grid-row: 1/2; }
.pg2 { grid-column: 8/13; grid-row: 1/2; }
.pg3 { grid-column: 1/5;  grid-row: 2/3; }
.pg4 { grid-column: 5/9;  grid-row: 2/3; }
.pg5 { grid-column: 9/13; grid-row: 2/3; }
.property-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  align-items: start;
}
.property-description {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 3rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 2rem;
  margin-top: 1.5rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
}
.amenity-icon { font-size: 1.1rem; flex-shrink: 0; }
.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.25rem;
}
.rules-list li {
  display: flex;
  gap: .75rem;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--muted);
}
.rules-list li::before {
  content: '—';
  color: var(--sage);
  flex-shrink: 0;
}
.property-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.sidebar-price {
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: .25rem;
}
.sidebar-price-note { font-size: .8125rem; color: var(--muted); margin-bottom: 1.5rem; }
.sidebar-info { display: flex; flex-direction: column; gap: .75rem; padding: 1.25rem 0; border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); margin-bottom: 1.5rem; }
.sidebar-info-row { display: flex; justify-content: space-between; font-size: .9rem; }
.sidebar-info-row .label { color: var(--muted); }
.sidebar-info-row .value { font-weight: 500; }

/* ── Booking page ───────────────────────────────────────────────── */
.booking-page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: var(--white);
}
.booking-layout {
  max-width: 1050px;
  margin: 0 auto;
  padding: 4rem 2.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.booking-title {
  font-family: var(--font-disp);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.booking-subtitle { font-size: .9375rem; color: var(--muted); margin-bottom: 2.5rem; }
.booking-step {
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: var(--white);
}
.booking-step-title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

/* Calendar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.cal-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all .2s;
}
.cal-nav-btn:hover { background: var(--cream); }
.cal-nav-btn:disabled { opacity: .35; cursor: not-allowed; }
.cal-month-label {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 400;
}
.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cal-dow-cell {
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .4rem 0;
}
.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all .15s;
  user-select: none;
  position: relative;
}
.cal-day.empty { pointer-events: none; }
.cal-day.past  { opacity: .3; pointer-events: none; }
.cal-day.busy  { background: var(--beige); color: var(--muted); text-decoration: line-through; pointer-events: none; cursor: not-allowed; }
.cal-day.free:hover { background: var(--forest); color: #fff; }
.cal-day.start, .cal-day.end { background: var(--forest) !important; color: #fff; }
.cal-day.in-range { background: rgba(46,63,46,.12); border-radius: 0; }
.cal-day.in-range.start { border-radius: 50% 0 0 50%; }
.cal-day.in-range.end   { border-radius: 0 50% 50% 0; }
.cal-day.start.end      { border-radius: 50%; }
.cal-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--muted);
}
.cal-legend-item { display: flex; align-items: center; gap: .4rem; }
.cal-legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-free { background: var(--forest); }
.dot-busy { background: var(--beige); }

/* Guest count */
.guest-stepper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stepper-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--beige);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  color: var(--charcoal);
}
.stepper-btn:hover { background: var(--cream); }
.stepper-btn:disabled { opacity: .3; cursor: not-allowed; }
.stepper-value {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 300;
  min-width: 2rem;
  text-align: center;
}
.stepper-label { font-size: .875rem; color: var(--muted); }

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  padding: .85rem 1rem;
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.form-input:focus { outline: none; border-color: var(--forest); }
.form-input.error { border-color: #c0392b; }
.form-error { font-size: .8rem; color: #c0392b; display: none; }
.form-error.visible { display: block; }

/* Booking summary card */
.booking-summary {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.summary-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.summary-img {
  height: 180px;
  overflow: hidden;
}
.summary-body { padding: 1.75rem; }
.summary-property {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.summary-dates {
  font-size: .875rem;
  color: var(--muted);
  padding: 1rem 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  margin-bottom: 1rem;
}
.summary-dates .no-dates { font-style: italic; }
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--muted);
  padding: .4rem 0;
}
.price-row.total {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  border-top: 1px solid var(--beige);
  margin-top: .5rem;
  padding-top: .75rem;
}
.price-row.total .amt { color: var(--forest); }
.summary-note { font-size: .75rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }

.booking-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .3s;
  border: none;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.booking-submit-btn:hover { background: var(--forest-dk); }
.booking-submit-btn:disabled { opacity: .5; cursor: not-allowed; }

.booking-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-top: 1rem;
  display: none;
}
.booking-message.success { background: rgba(46,63,46,.08); color: var(--forest); border: 1px solid rgba(46,63,46,.2); display: block; }
.booking-message.error   { background: rgba(192,57,43,.07); color: #c0392b;     border: 1px solid rgba(192,57,43,.2); display: block; }

/* ── Chat widget ─────────────────────────────────────────────────── */
#chat-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
}
.chat-fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, background .2s;
  font-size: 1.375rem;
}
.chat-fab:hover { transform: scale(1.08); background: var(--forest-dk); }
.chat-panel {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: 360px;
  height: 520px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.chat-panel-header {
  background: var(--forest);
  color: var(--cream);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.chat-panel-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.chat-panel-info strong { display: block; font-size: .9375rem; }
.chat-panel-info span { font-size: .75rem; color: rgba(255,255,255,.6); }
.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 82%;
  padding: .7rem 1rem;
  border-radius: 16px;
  font-size: .875rem;
  line-height: 1.55;
}
.chat-msg.bot  { background: var(--cream); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--forest); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: .7rem 1rem;
  background: var(--cream);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: 52px;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typBounce 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .5; }
  40% { transform: translateY(-5px); opacity: 1; }
}
.chat-input-row {
  padding: .75rem 1rem;
  border-top: 1px solid var(--beige);
  display: flex;
  gap: .5rem;
}
.chat-input {
  flex: 1;
  padding: .65rem .9rem;
  border: 1px solid var(--beige);
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: .875rem;
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
}
.chat-input:focus { border-color: var(--sage); }
.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background .2s;
  flex-shrink: 0;
}
.chat-send:hover { background: var(--forest-dk); }
.chat-send:disabled { opacity: .4; cursor: not-allowed; }

/* ── Utilities ──────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.divider { width: 40px; height: 1px; background: var(--stone); margin: 1.5rem 0; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #intro .container,
  #location .container { grid-template-columns: 1fr; gap: 3rem; }
  .intro-image { height: 320px; }
  .location-map { height: 300px; }
  .property-content { grid-template-columns: 1fr; }
  .property-sidebar { position: static; }
  .booking-layout { grid-template-columns: 1fr; gap: 2rem; }
  .booking-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-rows: 200px 200px; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .lang-toggle { display: none; }
  .nav-burger { display: flex; }
  #nav { padding: 0 1.25rem; }

  .section { padding: 3.5rem 1.25rem; }
  #gallery { padding: 3.5rem 0; }
  .gallery-header { padding: 0 1.25rem 1.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .g1 { grid-column: 1/3; grid-row: 1/2; }
  .g2 { grid-column: 1/2; grid-row: 2/3; }
  .g3 { grid-column: 2/3; grid-row: 2/3; }
  .g4 { grid-column: 1/2; grid-row: 3/4; }
  .g5 { grid-column: 2/3; grid-row: 3/4; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 1.25rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .booking-layout { padding: 2rem 1.25rem 4rem; }
  .booking-step { padding: 1.25rem; }
  .booking-title { font-size: 1.75rem; }

  .property-gallery-full {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }
  .pg1 { grid-column: 1/3; grid-row: 1/2; }
  .pg2 { grid-column: 1/2; grid-row: 2/3; }
  .pg3 { grid-column: 2/3; grid-row: 2/3; }
  .pg4 { grid-column: 1/2; grid-row: 3/4; }
  .pg5 { grid-column: 2/3; grid-row: 3/4; }
  .property-content { padding: 2.5rem 1.25rem 4rem; gap: 2.5rem; }

  /* Chat: slide up as a bottom sheet */
  #chat-widget { bottom: 1rem; right: 1rem; }
  .chat-panel {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    height: 72vh;
    border-radius: 20px 20px 0 0;
    transform-origin: bottom center;
    transform: translateY(100%) scale(1);
    opacity: 1;
  }
  .chat-panel.open { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-content { padding: 0 1rem; }
  #hero { min-height: 480px; }

  /* Intro */
  .intro-image { height: 220px; }
  .intro-stat-row { gap: 1.25rem; flex-wrap: wrap; }

  /* Highlights — force single column so cards breathe */
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-card { padding: 1.75rem 1.25rem; }

  /* Section CTA buttons — stack vertically */
  #book-cta .container-narrow > div { flex-direction: column !important; align-items: center; }
  #book-cta .btn-primary,
  #book-cta .btn-outline { width: 100%; text-align: center; }

  /* Booking form */
  .booking-layout { padding: 1.5rem 1rem 3rem; gap: 1.5rem; }
  .booking-step { padding: 1rem; }
  .booking-title { font-size: 1.5rem; }
  .booking-subtitle { font-size: .875rem; }
  .summary-img { height: 140px; }

  /* Calendar cells — ensure 44px min touch target */
  .cal-day { font-size: .8125rem; min-height: 38px; }
  .cal-dow-cell { font-size: .65rem; padding: .3rem 0; }

  /* Property */
  .property-description { font-size: 1.05rem; }
  .amenities-grid { grid-template-columns: 1fr; gap: .65rem; }

  /* Location map */
  .location-map { height: 240px; }

  /* Gallery rows shorter */
  .gallery-grid { grid-template-rows: 140px 140px 140px; }
  .property-gallery-full { grid-template-rows: 180px 150px 150px; }

  /* Footer */
  .footer-brand { font-size: 1.25rem; }
}
