/* North Shore Lodge — draft site
   Earthy mountain lodge: deep greens, warm cream, wood accents */

:root {
  --green-deep: #1a3328;
  --green: #2a4a3a;
  --green-mid: #3d6b52;
  --green-soft: #5a8570;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --sand: #d9cfc0;
  --wood: #a67c52;
  --wood-dark: #8b6240;
  --ink: #1c1a16;
  --ink-soft: #4a453c;
  --muted: #6b655a;
  --white: #ffffff;
  --border: rgba(26, 51, 40, 0.12);
  --shadow: 0 12px 40px rgba(26, 51, 40, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 72px;
  --draft-h: 36px;
  --notice-accent: #7a3b12;
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-deep);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, 1280px); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Sticky chrome: draft + lake notice + header stick together */
.sticky-chrome {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Draft banner */
.draft-banner {
  background: #5c3d1e;
  color: #f5e6d0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  min-height: var(--draft-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.draft-banner span { opacity: 0.85; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Site-wide drought / low-lake notice */
.lake-notice {
  background: #8a4a1a;
  color: #fff8ef;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 0.65rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.lake-notice strong {
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.18);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.lake-notice span { max-width: 58rem; }

.notice-panel {
  background: #fff6eb;
  border: 1px solid rgba(138, 74, 26, 0.35);
  border-left: 4px solid var(--notice-accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  max-width: 48rem;
}
.notice-panel .eyebrow { color: var(--notice-accent); }
.notice-panel p:last-child { margin-bottom: 0; }

/* Header */
.site-header {
  background: rgba(247, 243, 235, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo span { display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.1rem; }
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--green-deep);
  border-bottom-color: var(--wood);
}
.nav-cta {
  background: var(--green-deep) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px !important;
  border-bottom: none !important;
  font-size: 0.875rem !important;
}
.nav-cta:hover { background: var(--green) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  color: var(--green-deep);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-deep); color: var(--cream); }
.btn-primary:hover { background: var(--green); color: var(--white); }
.btn-secondary { background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.btn-secondary:hover { background: var(--green-deep); color: var(--cream); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--cream); border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); color: var(--white); }
.btn-wood { background: var(--wood); color: var(--white); }
.btn-wood:hover { background: var(--wood-dark); color: var(--white); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.4rem;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 680px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--green-deep) center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,51,40,0.25) 0%, rgba(26,51,40,0.55) 45%, rgba(26,51,40,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4rem;
  max-width: 40rem;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.85rem;
}
.hero h1 { color: var(--cream); margin-bottom: 0.75rem; }
.hero p { color: rgba(247,243,235,0.9); font-size: 1.125rem; margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-start; }
.hero-actions .btn-wrap { display: flex; flex-direction: column; align-items: flex-start; }

.page-hero {
  background: var(--green-deep);
  color: var(--cream);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(166,124,82,0.25), transparent 55%);
  pointer-events: none;
}
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(247,243,235,0.85); max-width: 36rem; margin-bottom: 0; font-size: 1.1rem; }
.page-hero .kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.section-alt { background: var(--cream-dark); }
.section-green { background: var(--green-deep); color: var(--cream); }
.section-green h2, .section-green h3 { color: var(--cream); }
.section-green p, .section-green li { color: rgba(247,243,235,0.88); }
.section-head { max-width: 36rem; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 0.65rem;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* Promise / split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  background: var(--sand);
}

/* Stay cards */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.stay-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(26,51,40,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.stay-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stay-card-img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
}
.stay-card-body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.stay-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.35rem 0 0.85rem;
}
.stay-card-meta span::before { content: "·"; margin-right: 0.85rem; color: var(--sand); }
.stay-card-meta span:first-child::before { content: none; margin: 0; }
.stay-card h3 { font-size: 1.2rem; margin-bottom: 0.15rem; }
.stay-card h3 a { color: inherit; text-decoration: none; }
.stay-card h3 a:hover { color: var(--green-mid); }
.stay-card .rate {
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.95rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.stay-card .rate em { font-style: normal; font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--green);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.badge-warn { background: #f0e4d4; color: #6b4a28; }
.badge-pets { background: #e4efe8; color: var(--green); }
.badge-nofree { background: #eee; color: #666; }

/* Amenity strip */
.amenity-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.amenity-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.amenity-item .icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}
.amenity-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.amenity-item p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Location strip */
.loc-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.loc-facts { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.loc-facts li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  font-size: 0.975rem;
}
.loc-facts strong { color: var(--green-deep); font-weight: 600; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--sand);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Seasons */
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.season-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
}
.season-card h3 { margin-bottom: 0.75rem; }
.season-card ul { color: var(--ink-soft); }

/* Reviews */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 1.75rem;
}
.review-badge .stars { color: var(--wood); letter-spacing: 0.05em; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.review-card blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 450;
}
.review-card cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 600;
}
.review-card cite span { font-weight: 400; }

/* How booking works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.75rem 1.5rem 1.75rem 1.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--wood);
  display: block;
  margin-bottom: 0.75rem;
}
.step h3 { color: var(--cream); font-size: 1.15rem; }
.step p { margin: 0; font-size: 0.95rem; }

/* FAQ */
.faq-list { max-width: 44rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--green-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--wood);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a {
  padding-top: 0.85rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 0;
}
.cta-band h2 { margin-bottom: 0.65rem; }
.cta-band p { max-width: 32rem; margin: 0 auto 1.75rem; color: var(--ink-soft); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Unit detail */
.unit-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.unit-hero-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--sand);
}
.unit-hero-grid .main { aspect-ratio: 16/11; }
.unit-hero-side { display: grid; gap: 0.75rem; }
.unit-hero-side img { aspect-ratio: 16/10; }
.unit-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.unit-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.fact {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}
.fact dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; margin-bottom: 0.2rem; }
.fact dd { margin: 0; font-weight: 600; color: var(--green-deep); }
.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--draft-h) + 4.5rem + var(--header-h) + 1rem); /* draft + lake notice approx + header */
}
.book-card .from-rate {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}
.book-card .from-rate span { font-size: 1rem; font-family: var(--font-body); font-weight: 400; color: var(--muted); }
.book-card .note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.book-card .btn { width: 100%; margin-bottom: 0.65rem; }
.book-card .phone-link {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  margin-top: 0.5rem;
}
.book-card .phone-link:hover { color: var(--green-deep); }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}
.nap-block h3 { margin-top: 1.75rem; margin-bottom: 0.4rem; font-size: 1.05rem; }
.nap-block p { margin-bottom: 0.35rem; color: var(--ink-soft); }
.nap-block a { color: var(--green-deep); font-weight: 600; text-decoration: none; }
.nap-block a:hover { text-decoration: underline; }
.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(26,51,40,0.05);
}
.form-row { margin-bottom: 1.1rem; }
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.35rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--green-soft);
  outline-offset: 1px;
  border-color: var(--green-soft);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.85rem; }

/* Policies */
.prose { max-width: 42rem; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.5rem; }

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: rgba(247,243,235,0.8);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.site-footer h4 {
  color: var(--cream);
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer .logo { color: var(--cream); margin-bottom: 0.75rem; }
.site-footer .logo span { color: rgba(247,243,235,0.55); }
.site-footer p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.site-footer a { color: rgba(247,243,235,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--cream); text-decoration: underline; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0.45rem; }
.footer-nav a { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(247,243,235,0.55);
}

/* Placeholder photo (when no unit-specific image) */
.ph {
  background:
    linear-gradient(145deg, var(--green) 0%, var(--green-deep) 60%, #243828 100%);
  display: grid;
  place-items: center;
  color: rgba(247,243,235,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 140px;
}

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.link-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.link-row a { font-weight: 600; }

/* Responsive */
@media (max-width: 960px) {
  .stay-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-strip { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split, .loc-strip, .season-grid, .contact-grid, .unit-layout, .unit-hero-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .unit-hero-side { grid-template-columns: 1fr 1fr; }
  .book-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav li { border-bottom: 1px solid var(--border); }
  .nav a { display: block; padding: 0.85rem 0; border-bottom: none; }
  .nav-cta { margin-top: 0.75rem; text-align: center; border-radius: 999px !important; }
  .stay-grid { grid-template-columns: 1fr; }
  .amenity-strip { grid-template-columns: 1fr; }
  .unit-facts { grid-template-columns: 1fr; }
  .unit-hero-side { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .loc-facts li { grid-template-columns: 1fr; gap: 0.25rem; }
  .hero-content { padding: 2.5rem 0 3rem; }
}
