/* ═══════════════════════════════════════════
   MARINA WAY GETAWAY — Main Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --bark:  #3E2723;
  --wood:  #8B6F47;
  --sand:  #D4A574;
  --cream: #F5F0E8;
  --mist:  #E8DCC8;
  --lake:  #4A7C9E;
  --pine:  #3D5A3E;
  --white: #FDFAF6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--bark);
  overflow-x: hidden;
  padding-top: 65px;
}


/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(253,250,246,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mist);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(62,39,35,.12); }

/* Replace the src of this image with your logo file e.g. src="logo.png" */
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(20%) sepia(30%) saturate(700%) hue-rotate(340deg) brightness(100%);
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: .9rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--wood); transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-cta {
  background: var(--wood); color: var(--white) !important;
  padding: .5rem 1.25rem; border-radius: 4px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--bark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--bark); }

.mobile-menu {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--mist);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1.25rem;
}
.mobile-menu a {
  text-decoration: none; font-weight: 700; font-size: 1rem;
  color: var(--wood); text-transform: uppercase; letter-spacing: .08em;
}
.mobile-menu.open { display: flex; }


/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--bark);
  color: var(--cream);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}

/* To show your logo in the footer, add an <img> tag with your file
   e.g. <img src="logo.png" alt="Marina Way Getaway" class="footer-logo"> */
.footer-logo {
  height: 40px; width: auto;
  /* If your logo is dark/black, this will make it white for the dark footer */
  filter: brightness(0) invert(1);
  opacity: .4;
}

.footer-brand p {
  margin-top: .75rem; font-size: .88rem;
  color: rgba(245,240,232,.65); line-height: 1.7;
}
.footer-col h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(245,240,232,.65);
  text-decoration: none; font-size: .9rem; margin-bottom: .5rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--sand); }
.footer-col p { font-size: .9rem; color: rgba(245,240,232,.65); margin-bottom: .5rem; }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; font-size: .8rem; color: rgba(245,240,232,.4);
}


/* ── UTILITIES ───────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 5rem 2rem; }

.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sand); margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--bark); line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--wood); }
.divider { width: 48px; height: 3px; background: var(--sand); margin: 1.25rem 0 1.75rem; }
.divider.center { margin-left: auto; margin-right: auto; }

.btn-primary {
  background: var(--wood); color: var(--white);
  padding: .85rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--bark); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: .85rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  border: 2px solid rgba(253,250,246,.6); cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(253,250,246,.1); transform: translateY(-2px); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}


/* ── HOME — HERO ─────────────────────────── */
.hero {
  position: relative; height: 92vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(62,39,35,.4) 0%, rgba(62,39,35,.75) 50%, rgba(62,39,35,.4) 100%),
    url('images/sunroom-hero-bg.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  animation: fadeUp .9s ease both;
}
.hero-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white); line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-sub {
  color: rgba(253,250,246,.85); font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300; margin-top: 1.25rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(253,250,246,.6); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(253,250,246,.4); }


/* ── HOME — WELCOME ──────────────────────── */
.welcome { background: var(--cream); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.welcome-text p { color: #6B5744; line-height: 1.8; font-size: 1.05rem; margin-bottom: 1rem; }
.welcome-img { border-radius: 2px; overflow: hidden; position: relative; }
.welcome-img img { width: 100%; height: 420px; object-fit: cover; display: block; object-position: 25% center; }
.welcome-img::after {
  content: ''; position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%; border: 3px solid var(--sand);
  border-radius: 2px; z-index: -1;
}


/* ── HOME — FEATURES ─────────────────────── */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.feature-card {
  background: var(--cream); border: 1px solid var(--mist);
  border-radius: 4px; padding: 2rem 1.75rem;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(62,39,35,.1); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--bark); margin-bottom: .6rem; }
.feature-card p { font-size: .92rem; color: #6B5744; line-height: 1.7; }


/* ── HOME — TESTIMONIAL ──────────────────── */
.testimonial-band {
  background: var(--bark); color: var(--cream);
  text-align: center; padding: 4rem 2rem;
}
.testimonial-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic; max-width: 760px; margin: 0 auto; line-height: 1.5;
}
.testimonial-band cite {
  display: block; margin-top: 1.25rem; font-size: .85rem;
  font-style: normal; letter-spacing: .12em; text-transform: uppercase; color: var(--sand);
}


/* ── GALLERY ─────────────────────────────── */
.gallery-hero {
  height: 420px;
  background:
    linear-gradient(rgba(62,39,35,.5), rgba(62,39,35,.5)),
    url('images/lighted-deck.jpg') center/cover;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.gallery-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--white); }
.gallery-hero p { color: rgba(253,250,246,.8); margin-top: .5rem; font-size: 1.05rem; }

.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 3rem; }
.gallery-item { overflow: hidden; border-radius: 6px; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
/* .gallery-item.tall img { height: 380px; } */ 
.gallery-item::after {
  content: '⤢'; position: absolute; bottom: .75rem; right: .75rem;
  width: 32px; height: 32px; background: rgba(62,39,35,.7); color: var(--white);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; opacity: 0; transition: opacity .2s;
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 82vw; max-height: 85vh; object-fit: contain; border-radius: 3px;
  transition: opacity .15s ease;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: var(--white); font-size: 2.5rem; cursor: pointer;
  background: none; border: none; line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none;
  color: var(--white); font-size: 3rem; line-height: 1;
  width: 56px; height: 56px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .1em;
}
@media(max-width: 600px) {
  .lightbox img { max-width: 95vw; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}


/* ── BOOKING ─────────────────────────────── */
.booking-hero {
  height: 420px;
  background:
    linear-gradient(rgba(62,39,35,.5), rgba(62,39,35,.5)),
    url('images/aurora.jpg') center/cover;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.booking-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--white); }
.booking-hero p { color: rgba(253,250,246,.8); margin-top: .5rem; }

.booking-section { background: var(--cream); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }

.form-card {
  background: var(--white); border: 2px solid var(--sand);
  border-radius: 6px; padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(62,39,35,.08);
}
.form-card h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--bark); margin-bottom: .4rem; }
.form-card > p { font-size: .9rem; color: #6B5744; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--bark); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--mist); border-radius: 4px;
  font-family: 'Lato', sans-serif; font-size: .95rem;
  color: var(--bark); background: var(--white);
  transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(212,165,116,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  width: 100%; background: var(--wood); color: var(--white);
  border: none; border-radius: 4px; padding: 1rem; margin-top: .75rem;
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--bark); transform: translateY(-1px); }
.btn-submit:disabled { background: #aaa; cursor: not-allowed; transform: none; }

.form-note {
  display: flex; align-items: flex-start; gap: .6rem;
  background: rgba(212,165,116,.12); border-radius: 4px;
  padding: .9rem 1rem; margin-top: 1.25rem;
  font-size: .85rem; color: #6B5744; line-height: 1.5;
}

.booking-right { display: flex; flex-direction: column; gap: 2rem; }

.map-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: 6px; padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(62,39,35,.06);
}
.map-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--bark); margin-bottom: .3rem; }
.map-card p { font-size: .85rem; color: #6B5744; margin-bottom: 1rem; }
.map-card iframe { width: 100%; height: 260px; border: none; border-radius: 4px; }

.info-card { background: var(--white); border: 1px solid var(--mist); border-radius: 6px; padding: 1.5rem; }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--bark); margin-bottom: 1rem; }
.info-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--mist); font-size: .9rem; }
.info-row:last-child { border-bottom: none; }
.info-row span:first-child { color: #6B5744; }
.info-row span:last-child { font-weight: 700; color: var(--bark); }

.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  background: var(--bark); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 6px;
  max-width: 340px; font-size: .9rem; line-height: 1.5;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  transform: translateY(80px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--pine); }
.toast.error { background: #c0392b; }
.toast strong { display: block; margin-bottom: .2rem; font-size: 1rem; }


/* ── RESPONSIVE ──────────────────────────── */
@media(max-width: 900px) {
  .welcome-grid,
  .booking-grid     { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .gallery-grid     { grid-template-columns: 1fr 1fr; }
  .welcome-img::after { display: none; }
}
@media(max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}
@media(max-width: 600px) {
  .features-grid,
  .gallery-grid   { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  nav             { padding: 1rem 1.25rem; }
  section         { padding: 3.5rem 1.25rem; }
}


/* ── ABOUT — HERO ────────────────────────── */
.about-hero {
  height: 420px;
  background:
    linear-gradient(to bottom, rgba(62,39,35,.5), rgba(62,39,35,.6)),
    url('images/canoe.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white); line-height: 1.15;
}
.about-hero h1 em { font-style: italic; color: var(--sand); }
.about-hero p { color: rgba(253,250,246,.8); font-size: 1.1rem; margin-top: .75rem; }


/* ── ABOUT — STORY ───────────────────────── */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-text p { color: #6B5744; line-height: 1.85; font-size: 1.03rem; margin-bottom: 1.1rem; }
.story-img { border-radius: 2px; overflow: hidden; position: relative; }
.story-img img { width: 100%; height: 440px; object-fit: cover; display: block; }
.story-img::after {
  content: ''; position: absolute; bottom: -12px; left: -12px;
  width: 100%; height: 100%; border: 3px solid var(--sand);
  border-radius: 2px; z-index: -1;
}


/* ── ABOUT — WHAT SETS US APART ──────────── */
.apart { background: var(--white); }
.apart-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; margin-top: 3rem; }
.apart-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--cream); border: 1px solid var(--mist);
  border-radius: 4px; transition: transform .2s, box-shadow .2s;
}
.apart-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(62,39,35,.1); }
.apart-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.apart-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--bark); margin-bottom: .5rem; }
.apart-card p { font-size: .88rem; color: #6B5744; line-height: 1.6; }


/* ── ABOUT — AMENITIES ───────────────────── */
.amenities { background: var(--bark); color: var(--cream); }
.amenities .section-label { color: var(--sand); }
.amenities .section-title { color: var(--white); }
.amenities .divider { background: var(--sand); }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.amenity-group h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--sand); margin-bottom: 1.25rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(212,165,116,.3);
}
.amenity-list { list-style: none; }
.amenity-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .55rem 0; font-size: .95rem;
  color: rgba(245,240,232,.85); border-bottom: 1px solid rgba(255,255,255,.06);
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list li::before { content: '✓'; color: var(--sand); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }


/* ── ABOUT — LOCATION ────────────────────── */
.location-section { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.location-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: 4px; padding: 1.75rem;
  transition: transform .2s, box-shadow .2s;
}
.location-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(62,39,35,.09); }
.location-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--bark); margin-bottom: 1rem; }
.location-card ul { list-style: none; }
.location-card ul li {
  font-size: .9rem; color: #6B5744;
  padding: .45rem 0; border-bottom: 1px solid var(--mist);
  display: flex; justify-content: space-between;
}
.location-card ul li:last-child { border-bottom: none; }
.location-card ul li span { font-weight: 700; color: var(--wood); }


/* ── ABOUT — CONTACT BAND ────────────────── */
.contact-band {
  background: var(--wood); color: var(--white);
  text-align: center; padding: 4.5rem 2rem;
}
.contact-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: .75rem;
}
.contact-band h2 em { font-style: italic; color: var(--cream); }
.contact-band p { color: rgba(253,250,246,.85); font-size: 1rem; margin-bottom: .4rem; }
.contact-band .actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.btn-light {
  background: var(--white); color: var(--wood);
  padding: .85rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: background .2s, transform .15s;
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: var(--white);
  padding: .85rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  border: 2px solid rgba(253,250,246,.6); text-decoration: none; display: inline-block;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(253,250,246,.1); transform: translateY(-2px); }


/* ── ABOUT — RESPONSIVE ──────────────────── */
@media(max-width: 900px) {
  .story-grid     { grid-template-columns: 1fr; }
  .apart-grid     { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .location-grid  { grid-template-columns: 1fr; }
  .story-img::after { display: none; }
}
@media(max-width: 600px) {
  .apart-grid { grid-template-columns: 1fr 1fr; }
}
/* ── LUCIDE ICONS ── */
.feature-icon svg,
.apart-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--wood);
  stroke-width: 1.5;
}

.amenity-group h3 svg,
.location-card h3 svg {
  width: 20px;
  height: 20px;
  stroke: var(--sand);
  stroke-width: 1.5;
  vertical-align: middle;
  margin-right: .4rem;
}

/* ── SLEEPING & LAYOUT ──────────────────── */
.sleeping { background: var(--white); padding: 5rem 2rem; }
.sleep-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.sleep-card { background: var(--cream); border: 1px solid var(--mist); border-radius: 10px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.sleep-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(62,39,35,.12); }
.sleep-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.sleep-card-body { padding: 1.5rem; }
.sleep-card-icon { width: 40px; height: 40px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: .85rem; border: 1px solid var(--mist); }
.sleep-card-icon i { color: var(--wood); font-size: 1rem; }
.sleep-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--bark); margin-bottom: .35rem; }
.sleep-bed-type { font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--wood); margin-bottom: .75rem; }
.sleep-card p { font-size: .9rem; color: #6B5744; line-height: 1.7; margin-bottom: 1rem; }
.sleeps-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--white); border: 1px solid var(--mist); border-radius: 20px; padding: .3rem .9rem; font-size: .78rem; font-weight: 700; color: var(--wood); }
.sleeps-badge i { font-size: .7rem; }
.sleep-totals { margin-top: 2.5rem; padding: 1.75rem 2rem; background: var(--bark); border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.sleep-total-item { text-align: center; color: var(--cream); }
.sleep-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--sand); display: block; }
.sleep-total-item span:last-child { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
@media(max-width: 900px) { .sleep-cards { grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px) { .sleep-cards { grid-template-columns: 1fr; } .sleep-totals { gap: 1.5rem; } }
