/* =====================================================================
   WILLOWBROOK HOUSE — Bed & Breakfast / Guesthouse Template
   Premium multi-page template. Plain HTML5 + CSS3 + vanilla JS.
   ---------------------------------------------------------------------
   REBRAND HERE: Change the colours, fonts and spacing tokens below to
   instantly re-skin the whole site. Every page reads from these vars.
   ===================================================================== */

:root {
  /* ---- Brand palette ---- */
  --color-terracotta: #c1654f;     /* primary warm accent */
  --color-terracotta-dark: #a3503c;/* hover / deeper accent */
  --color-cream: #f6efe6;          /* page background */
  --color-cream-deep: #efe4d4;     /* alt section background */
  --color-sage: #8a9a7b;           /* sage accent */
  --color-sage-dark: #6f7e62;
  --color-ink: #3a3027;            /* main text (warm brown-black) */
  --color-muted: #7a6f63;          /* secondary text */
  --color-white: #ffffff;
  --color-line: #e3d7c6;           /* hairline borders */

  /* ---- Typography ---- */
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* ---- Layout ---- */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(58, 48, 39, 0.08);
  --shadow-md: 0 14px 40px rgba(58, 48, 39, 0.14);
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; }

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--color-terracotta);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--cream { background: var(--color-cream-deep); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--color-terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--color-ink); border-color: var(--color-line); }
.btn--ghost:hover { border-color: var(--color-terracotta); color: var(--color-terracotta); }
.btn--light { background: #fff; color: var(--color-ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--sage { background: var(--color-sage); color: #fff; }
.btn--sage:hover { background: var(--color-sage-dark); transform: translateY(-2px); }

/* =====================================================================
   HEADER (shared)
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 230, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; }
.brand .brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand .brand-mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--color-muted); margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .94rem;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--color-ink);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--color-terracotta); }
.nav-links a.active { color: var(--color-terracotta); background: rgba(193, 101, 79, 0.1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--color-ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.banner {
  position: relative;
  padding: 92px 0 84px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(58,48,39,.55), rgba(58,48,39,.55)),
    linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-sage-dark) 100%);
  overflow: hidden;
}
.banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 18% 30%, rgba(255,255,255,.12), transparent 40%),
                    radial-gradient(circle at 82% 70%, rgba(255,255,255,.1), transparent 45%);
}
.banner .container { position: relative; z-index: 1; }
.banner h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 12px; }
.banner p { max-width: 560px; margin: 0 auto; opacity: .92; font-size: 1.08rem; }
.breadcrumb { margin-top: 18px; font-size: .85rem; opacity: .85; font-family: var(--font-head); letter-spacing: .04em; }
.breadcrumb a:hover { text-decoration: underline; }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 75% 20%, rgba(138,154,123,.25), transparent 45%),
    linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-deep) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 20px; }
.hero h1 .accent { color: var(--color-terracotta); }
.hero .lead { font-size: 1.15rem; color: var(--color-muted); max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-rating { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--color-muted); }
.hero-rating .stars { color: #e0a83e; letter-spacing: 2px; font-size: 1rem; }

/* decorative hero art panel */
.hero-art {
  position: relative;
  border-radius: 24px;
  min-height: 460px;
  background:
    linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 60%, var(--color-sage-dark) 100%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-art::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 35%),
                    radial-gradient(circle at 70% 80%, rgba(255,255,255,.12), transparent 40%);
}
.hero-art .art-emoji { position: absolute; font-size: 3rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.hero-art .e1 { top: 8%; left: 10%; }
.hero-art .e2 { top: 16%; right: 14%; font-size: 2.4rem; }
.hero-art .e3 { bottom: 14%; left: 16%; font-size: 2.6rem; }
.hero-art .art-badge {
  position: absolute; bottom: 22px; right: 22px;
  background: rgba(255,255,255,.95); color: var(--color-ink);
  padding: 16px 20px; border-radius: 16px; box-shadow: var(--shadow-md);
  font-family: var(--font-head); max-width: 220px;
}
.hero-art .art-badge strong { display: block; font-size: 1.5rem; color: var(--color-terracotta); }
.hero-art .art-badge span { font-size: .82rem; color: var(--color-muted); font-weight: 500; }

/* ---- Booking bar ---- */
.booking-bar {
  margin-top: 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
  border: 1px solid var(--color-line);
}
.booking-bar .field { display: flex; flex-direction: column; gap: 6px; }
.booking-bar label { font-family: var(--font-head); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-muted); }
.booking-bar input, .booking-bar select {
  font-family: var(--font-body); font-size: .95rem;
  padding: 11px 12px; border: 1px solid var(--color-line);
  border-radius: var(--radius-sm); background: var(--color-cream);
  color: var(--color-ink);
}
.booking-bar input:focus, .booking-bar select:focus { outline: 2px solid var(--color-terracotta); outline-offset: 1px; }
.booking-bar .btn { width: 100%; justify-content: center; }

/* =====================================================================
   CARDS & GRIDS
   ===================================================================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-media { height: 200px; position: relative; }
.card-media .ico { position: absolute; inset: 0; display: grid; place-items: center; font-size: 2.6rem; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card-body p { color: var(--color-muted); font-size: .96rem; }

/* gradient tile helpers (reused for rooms / gallery) */
.g-terra { background: linear-gradient(135deg, #d98e6f, var(--color-terracotta-dark)); }
.g-sage  { background: linear-gradient(135deg, #a8b699, var(--color-sage-dark)); }
.g-cream { background: linear-gradient(135deg, #f0e0c8, #d8c3a0); }
.g-dusk  { background: linear-gradient(135deg, #b07d6a, #6f7e62); }
.g-rose  { background: linear-gradient(135deg, #e0a890, #c1654f); }
.g-olive { background: linear-gradient(135deg, #c4cbab, #8a9a7b); }

/* ---- Feature (why-stay) ---- */
.feature { text-align: center; padding: 32px 24px; }
.feature .f-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 1.8rem;
  border-radius: 18px; background: var(--color-cream-deep);
  border: 1px solid var(--color-line);
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--color-muted); font-size: .95rem; }

/* ---- Split section (about teaser / story) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.split p { color: var(--color-muted); margin-bottom: 16px; }
.split .art-panel {
  border-radius: var(--radius); min-height: 400px; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.split .art-panel .art-emoji { position: absolute; font-size: 2.6rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,.2)); }
.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--color-ink); }
.checklist li::before { content: "✓"; color: var(--color-sage-dark); font-weight: 700; }

/* =====================================================================
   ROOMS
   ===================================================================== */
.room-card .card-body { display: flex; flex-direction: column; gap: 14px; }
.room-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.room-head h3 { font-size: 1.3rem; }
.room-price { font-family: var(--font-head); font-weight: 700; color: var(--color-terracotta); white-space: nowrap; }
.room-price small { display: block; font-weight: 500; font-size: .72rem; color: var(--color-muted); text-align: right; }
.room-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--color-muted);
  background: var(--color-cream); border: 1px solid var(--color-line);
  padding: 5px 11px; border-radius: 999px;
}
.room-card .btn { margin-top: 4px; align-self: flex-start; }
.room-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95); color: var(--color-terracotta);
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  padding: 5px 12px; border-radius: 999px;
}

/* ---- Included strip ---- */
.included { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.included .inc { padding: 22px; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); }
.included .inc span { font-size: 1.9rem; display: block; margin-bottom: 8px; }
.included .inc strong { font-family: var(--font-head); display: block; }
.included .inc small { color: var(--color-muted); }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery-group { margin-bottom: 64px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group h3 { font-size: 1.5rem; margin-bottom: 6px; }
.gallery-group .g-sub { color: var(--color-muted); margin-bottom: 26px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  aspect-ratio: 4/3; border-radius: var(--radius-sm);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.tile:hover { transform: scale(1.03); }
.tile .label {
  position: absolute; bottom: 10px; left: 12px;
  color: #fff; font-family: var(--font-head); font-weight: 500;
  font-size: .85rem; text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.tile .emoji { font-size: 2.4rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); }
.tile.wide { grid-column: span 2; }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.testimonial {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.testimonial blockquote { font-family: var(--font-head); font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 500; line-height: 1.4; margin-bottom: 22px; }
.testimonial .quote-mark { font-size: 3rem; color: var(--color-terracotta); opacity: .35; font-family: var(--font-head); line-height: 0; }
.testimonial cite { font-style: normal; color: var(--color-muted); }
.testimonial cite strong { display: block; font-family: var(--font-head); color: var(--color-ink); font-size: 1.05rem; }
.testi-stars { color: #e0a83e; letter-spacing: 3px; margin-bottom: 18px; font-size: 1.1rem; }

/* ---- Testimonials grid (about) ---- */
.quote-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: #e0a83e; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p { color: var(--color-ink); margin-bottom: 16px; }
.quote-card cite { font-style: normal; color: var(--color-muted); font-size: .9rem; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
  border-radius: 28px; padding: 64px 40px;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.14), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(255,255,255,.1), transparent 45%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { max-width: 540px; margin: 0 auto 26px; opacity: .94; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   ATTRACTIONS list
   ===================================================================== */
.attraction { display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.attraction .a-ico { font-size: 1.8rem; flex-shrink: 0; }
.attraction h3 { font-size: 1.1rem; margin-bottom: 4px; }
.attraction p { color: var(--color-muted); font-size: .92rem; }
.attraction .a-dist { font-family: var(--font-head); font-size: .8rem; color: var(--color-sage-dark); font-weight: 600; margin-top: 6px; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: var(--font-head); font-size: .82rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: .96rem;
  padding: 12px 14px; border: 1px solid var(--color-line);
  border-radius: var(--radius-sm); background: var(--color-cream); color: var(--color-ink);
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 2px solid var(--color-terracotta); outline-offset: 1px; }
.form-group .error-msg { color: #b3402e; font-size: .8rem; display: none; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #b3402e; }
.form-group.invalid .error-msg { display: block; }
.form-note { font-size: .82rem; color: var(--color-muted); margin-top: 10px; }
.form-success {
  display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(138,154,123,.18); border: 1px solid var(--color-sage);
  color: var(--color-sage-dark); font-family: var(--font-head); font-weight: 500;
}
.form-success.show { display: block; }

.info-card { background: var(--color-cream-deep); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 30px; margin-bottom: 22px; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.info-item { display: flex; gap: 12px; margin-bottom: 16px; }
.info-item:last-child { margin-bottom: 0; }
.info-item .i-ico { font-size: 1.3rem; flex-shrink: 0; }
.info-item strong { font-family: var(--font-head); display: block; font-size: .92rem; }
.info-item span { color: var(--color-muted); font-size: .9rem; }

.map-placeholder {
  border-radius: var(--radius); min-height: 260px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #a8b699, var(--color-sage-dark));
  display: grid; place-items: center; box-shadow: var(--shadow-sm); color: #fff; text-align: center;
}
.map-placeholder::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px),
                    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px);
}
.map-placeholder .map-inner { position: relative; z-index: 1; }
.map-placeholder .pin { font-size: 2.6rem; }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: var(--color-ink); color: #d9cdbf; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand small { color: #9c8f80; }
.footer-about p { font-size: .92rem; color: #b9ab9c; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col a, .footer-col li { font-size: .92rem; color: #b9ab9c; margin-bottom: 10px; display: block; transition: color .2s; }
.footer-col a:hover { color: var(--color-terracotta); }
.social { display: flex; gap: 10px; margin-top: 8px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; font-size: 1rem; }
.social a:hover { background: var(--color-terracotta); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #9c8f80; }

/* =====================================================================
   SCROLL REVEAL (IntersectionObserver) — fallback shows all
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
/* If JS disabled, .no-js on <html> keeps everything visible */
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 320px; order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .included { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: block; }
  /* mobile drawer */
  .nav-links.mobile-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--color-cream); border-bottom: 1px solid var(--color-line);
    padding: 16px 24px 22px; gap: 4px; box-shadow: var(--shadow-md);
  }
  .nav-links.mobile-open a { padding: 12px 14px; }
  .nav-links.mobile-open .mobile-cta { display: block; margin-top: 8px; text-align: center; }
  .section { padding: 64px 0; }
  .grid-3, .grid-2, .included { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tile.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-bar { grid-template-columns: 1fr; }
}

/* Hide desktop CTA-in-drawer by default */
.nav-links .mobile-cta { display: none; }
