/* ==========================================================================
   PEBERG – Ferienwohnung Schwerin
   ========================================================================== */

:root {
  --gold: #c9a063;
  --gold-dark: #a9814a;
  --gold-light: #e4cd9f;
  --ink: #2a241d;
  --ink-soft: #56504a;
  --cream: #faf6ef;
  --cream-deep: #f1e9da;
  --white: #ffffff;
  --line: #e7ddc9;
  --shadow: 0 20px 50px -20px rgba(42, 36, 29, 0.35);
  --radius: 14px;
  --maxw: 1180px;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-dark);
}

section { position: relative; }
.section-pad { padding: 96px 0; }
@media (max-width: 700px) {
  .section-pad { padding: 64px 0; }
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); box-shadow: 0 12px 24px -10px rgba(169, 129, 74, 0.6); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------------------------------- Header ---------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 24px -18px rgba(0,0,0,0.35);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; transition: height 0.3s ease; }
.site-header.is-scrolled .brand img { height: 34px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.35s ease;
}
.site-header.is-scrolled .brand-name { color: var(--ink); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 34px; margin: 0; padding: 0; list-style: none; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.35s ease;
}
.site-header.is-scrolled .main-nav a { color: var(--ink); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  align-items: center;
}
.site-header.is-scrolled .nav-toggle { border-color: var(--line); background: transparent; }
.nav-toggle span {
  width: 18px; height: 2px; background: var(--white);
  transition: background 0.3s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  visibility: hidden;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.7rem;
}
.mobile-nav .btn { margin-top: 10px; }
.mobile-nav-close {
  position: absolute;
  top: 26px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ------------------------------------ Hero ----------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,0.55) 0%, rgba(20,17,12,0.35) 45%, rgba(20,17,12,0.8) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: var(--gold-light);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  max-width: 620px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 28px;
}
.hero-fact { display: flex; align-items: center; gap: 12px; }
.hero-fact .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-light); }
.hero-fact .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.3; }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%{transform:scaleY(0.4); opacity:.4;} 50%{transform:scaleY(1); opacity:1;} 100%{transform:scaleY(0.4); opacity:.4;} }

/* --------------------------------- Intro / about ------------------------ */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media .float-card {
  position: absolute;
  bottom: -22px; right: -14px;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 210px;
}
.about-media .float-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.5rem;
}
.about-media .float-card span { font-size: 0.8rem; color: rgba(250,246,239,0.75); }

.about-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.fact-list { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 14px; }
.fact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink);
}
.fact-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-dark); }

/* --------------------------------- Amenities ---------------------------- */
.amenities { background: var(--cream-deep); }
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.amenity-card h3 { font-size: 1.05rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; }
.amenity-card p { font-size: 0.92rem; margin: 0; }

/* --------------------------------- Rooms -------------------------------- */
.rooms { background: var(--white); }
.room-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.room-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.room-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,17,12,0.85) 100%);
}
.room-card .room-info {
  position: relative; z-index: 1;
  padding: 24px;
  color: var(--white);
}
.room-card .room-info .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
}
.room-card .room-info h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.room-card .room-info p { color: rgba(255,255,255,0.82); font-size: 0.88rem; margin: 0; }

/* --------------------------------- Gallery ------------------------------ */
.gallery { background: var(--cream-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--line);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .zoom-hint {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,17,12,0.0);
  color: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}
.gallery-item:hover .zoom-hint { background: rgba(20,17,12,0.25); color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 12, 9, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.85rem; letter-spacing: 0.08em;
}

/* --------------------------------- Location ----------------------------- */
.location { background: var(--white); }
.location-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  border: 1px solid var(--line);
}
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.location-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 16px; }
.location-list li { display: flex; gap: 14px; align-items: flex-start; }
.location-list li .icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
}
.location-list li h4 { margin: 0 0 2px; font-size: 0.98rem; }
.location-list li p { margin: 0; font-size: 0.88rem; }

/* --------------------------------- Booking ------------------------------ */
.booking {
  background: var(--ink);
  color: var(--cream);
}
.booking .section-head p { color: rgba(250,246,239,0.72); }
.booking .section-head h2 { color: var(--white); }
.booking-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
.booking-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 34px 28px;
}
.booking-card h3 { color: var(--white); font-size: 1.3rem; display:flex; align-items:center; gap:12px;}
.booking-card h3 .icon { color: var(--gold-light); }
.booking-card p { color: rgba(250,246,239,0.72); }
.booking-card .btn { margin-top: 10px; }
.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.host-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto 40px;
  text-align: left;
}
.host-intro img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}
.host-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.host-intro p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(250,246,239,0.78);
}

/* Availability calendar */
.availability {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(201,160,99,0.25);
  border-radius: var(--radius);
  padding: 32px 22px 30px;
  margin: 0 auto 40px;
  max-width: 760px;
  box-shadow: var(--shadow);
}
.availability-head { text-align: center; margin-bottom: 20px; }
.availability-head h3 { font-size: 1.25rem; margin-bottom: 6px; }
.availability-updated { font-size: 0.8rem; color: var(--ink-soft); margin: 0 0 14px; }
.availability-legend { display: flex; justify-content: center; gap: 22px; font-size: 0.85rem; color: var(--ink-soft); }
.legend-item { display: inline-flex; align-items: center; gap: 7px; }
.legend-item .dot { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.legend-item .dot.avail { background: #dfe8cf; border: 1px solid #a9bd85; }
.legend-item .dot.unavail { background: #ecd3bb; border: 1px solid #cf9c6c; }

.availability-body { display: flex; align-items: flex-start; gap: 6px; }
.cal-months { flex: 1; display: grid; grid-template-columns: 1fr; gap: 26px; min-width: 0; }
.cal-nav {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  color: var(--ink); font-size: 1.1rem; line-height: 1; cursor: pointer;
  flex-shrink: 0; margin-top: 6px;
  transition: background 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}
.cal-nav:hover:not(:disabled) { background: var(--cream-deep); border-color: var(--gold); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-month-title { text-align: center; font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays span { text-align: center; font-size: 0.68rem; color: var(--ink-soft); font-weight: 600; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.76rem; border-radius: 6px; color: var(--ink);
}
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-available { background: #e3ecd6; color: #4a6b34; }
.cal-day.is-unavailable { background: #f0dcc4; color: #9a5a26; }
.cal-day.is-turnover { background: linear-gradient(to bottom right, #f0dcc4 50%, #e3ecd6 50%); color: var(--ink); }
.cal-day.is-today { box-shadow: 0 0 0 2px var(--gold) inset; font-weight: 700; }

.availability-fallback { text-align: center; font-size: 0.9rem; color: var(--ink-soft); margin: 4px 0 0; }
.availability-fallback a { color: var(--gold-dark); font-weight: 600; }

@media (min-width: 640px) {
  .cal-months { grid-template-columns: 1fr 1fr; }
}

.contact-form { display: grid; gap: 14px; }
.contact-form .row { display: grid; gap: 14px; grid-template-columns: 1fr; }
.contact-form label { font-size: 0.8rem; color: rgba(250,246,239,0.65); margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(250,246,239,0.4); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.form-note { font-size: 0.78rem; color: rgba(250,246,239,0.5); margin-top: 6px; }

/* --------------------------------- Footer -------------------------------- */
.site-footer {
  background: #1c1712;
  color: rgba(250,246,239,0.65);
  padding: 56px 0 26px;
}
.footer-top {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.footer-brand span { font-family: var(--font-display); color: var(--white); font-size: 1.15rem; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.8rem;
  color: rgba(250,246,239,0.78);
}
.footer-badge svg { flex-shrink: 0; border-radius: 4px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* --------------------------------- Legal pages --------------------------- */
.legal-page { background: var(--white); padding: 150px 0 100px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 24px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 34px; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page a { color: var(--gold-dark); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-weight: 600; color: var(--gold-dark); }

/* --------------------------------- Reveal animation ----------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   Breakpoints
   ========================================================================= */
@media (min-width: 620px) {
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid .room-card:first-child { grid-column: span 2; }
  .contact-form .row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .hero-facts { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
}
