
/* ============================================================
   LION RESORT — style.css
   ── HOW TO EDIT COLORS ──────────────────────────────────────
   Change the values below to update colors site-wide:
   --sage    = main green color
   --earth   = accent orange/brown color
   --dark    = dark background color
   --cream   = page background color
   --sand    = section background color
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sand:     #f4ede3;   /* warm section background */
  --cream:    #faf7f2;   /* main page background */
  --white:    #ffffff;
  --sage:     #6b8a6e;   /* primary green — change this for main color */
  --sage-lt:  #9db89f;   /* lighter version of green */
  --earth:    #b5724a;   /* accent color for italic headings */
  --dark:     #27231c;   /* dark backgrounds / footer */
  --mid:      #5a5448;   /* medium text */
  --text:     #6b6355;   /* body text */
  --wa:       #25D366;   /* WhatsApp green — don't change */
  --border:   rgba(91, 84, 72, .12);
}

/* ============================================================
   SVG ICON FIX — prevents WhatsApp icon from rendering huge
   ============================================================ */
svg { overflow: hidden; }

/* Floating WhatsApp button icon */
.waf svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  min-height: 28px;
  fill: #fff !important;
  display: block;
}

/* WhatsApp inside buttons */
.wa-btn svg,
.wa-contact svg,
.wa-yoga svg,
.yoga-wa svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  fill: #fff !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   MOBILE WHATSAPP BUTTON — full width on small screens
   ============================================================ */
@media (max-width: 480px) {
  .wa-btn {
    width: 90%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 20px;
    font-size: .78rem;
  }
  .waf {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .waf svg {
    width: 26px !important;
    height: 26px !important;
  }
}


html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 5%;
  transition: background .4s, padding .4s;
}

nav.scrolled {
  background: rgba(250, 247, 242, .96);
  border-bottom: 1px solid var(--border);
  padding: 15px 5%;
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}
nav.scrolled .nav-logo { color: var(--dark); }
.nav-logo em { font-style: italic; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .25s;
}
nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover,
.nav-links a.active { color: var(--sage-lt); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--sage); }

.nav-book {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  text-decoration: none;
  transition: all .28s;
}
nav.scrolled .nav-book { border-color: var(--sage); color: var(--sage); }
.nav-book:hover { background: var(--sage); border-color: var(--sage); color: #fff !important; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: .3s;
}
nav.scrolled .hamburger span { background: var(--dark); }

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mmenu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.mmenu.open { display: flex; }
.mmenu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  transition: color .25s;
}
.mmenu a:hover { color: var(--sage); }
.mclose {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--mid);
}

/* ============================================================
   PAGE HERO (inner pages — About, Yoga, Rooms etc)
   ============================================================ */

.page-hero {
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 56px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,22,14,.72) 0%, rgba(27,22,14,.22) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.page-hero-inner { position: relative; z-index: 2; }
.page-label {
  font-size: .65rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: block;
  margin-bottom: .9rem;
}
.page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}
.page-h1 em { font-style: italic; color: #d4c8b0; }

/* ============================================================
   AMENITIES BAR
   ============================================================ */

.ambar {
  background: var(--dark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.am {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s;
}
.am:last-child { border-right: none; }
.am:hover { color: var(--sage-lt); }

/* ============================================================
   COMMON / SHARED STYLES
   ============================================================ */

.sw { padding: 90px 5%; }   /* standard section wrapper */

/* Section labels (small uppercase above headings) */
.slabel {
  font-size: .66rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 1rem;
}

/* Section headings */
.sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.22;
}
.sh em { font-style: italic; color: var(--earth); }

/* Section paragraph */
.sp {
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  max-width: 560px;
  margin-top: 1.1rem;
}

/* Horizontal rule / divider */
.ruled {
  width: 40px;
  height: 1px;
  background: var(--sage);
  margin: 1.5rem 0;
}

/* Center a block of text */
.center-block { text-align: center; }
.center-block .sh,
.center-block .sp,
.center-block .slabel { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-sage {
  padding: 13px 34px;
  background: var(--sage);
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .28s;
  border: 1px solid var(--sage);
  display: inline-block;
}
.btn-sage:hover {
  background: var(--sage-lt);
  border-color: var(--sage-lt);
  transform: translateY(-2px);
}

.btn-out {
  padding: 13px 34px;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .28s;
  display: inline-block;
}
.btn-out:hover { background: var(--sage); color: #fff; }

/* ============================================================
   EXPERIENCE / SERVICE CARDS
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}
.card {
  background: var(--white);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(39,35,28,.1);
}
.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  display: block;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px 22px 28px; }
.card-cat {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .7rem;
  display: block;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .8rem;
}
.card-desc {
  font-size: .87rem;
  line-height: 1.8;
  color: var(--text);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1rem;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  transition: gap .25s;
}
.card-link:hover { gap: 12px; }
.card.hl { border-top: 3px solid var(--sage); } /* highlighted card */

/* ============================================================
   SPLIT LAYOUT (image + text side by side)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.split-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s;
}
.split-img:hover img { transform: scale(1.04); }
.split-badge {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--sage);
  padding: 20px 22px;
}
.split-badge p {
  font-size: .67rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.split-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-top: 4px;
}
.split-txt p {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--text);
  margin-top: 1.2rem;
}

/* ============================================================
   FULL-WIDTH SPLIT (used for Yoga feature)
   ============================================================ */

.full-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.full-split-img { overflow: hidden; }
.full-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s;
}
.full-split:hover .full-split-img img { transform: scale(1.04); }
.full-split-c {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
}

/* Bullet list inside full-split */
.blist {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.blist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.6;
}
.blist li::before {
  content: "—";
  color: var(--sage);
  flex-shrink: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */

.stats-bg {
  background:
    linear-gradient(to right, rgba(107,138,110,.92), rgba(107,138,110,.78)),
    url('https://images.unsplash.com/photo-1582610116397-edb72e301a40?w=1400&q=80') center / cover;
  padding: 80px 5%;
  text-align: center;
}
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.sn {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
}
.sl {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-top: .5rem;
}

/* ============================================================
   CTA DARK SECTION (book now)
   ============================================================ */

.cta-dark {
  background: var(--dark);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 'assets/images/4.jpg' center / cover;
  opacity: .14;
}
.cta-dark > * { position: relative; z-index: 1; }

/* WhatsApp big button */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 16px 42px;
  background: var(--wa);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
  margin-top: 2rem;
}
.wa-btn:hover { background: #1ebe59; transform: translateY(-3px); }
.wa-btn svg { width: 22px; height: 22px; fill: #fff; }

/* ============================================================
   ROOMS GRID
   ============================================================ */

.rooms-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1160px;
  margin: 0 auto;
}
.rm {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}
.rm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  display: block;
}
.rm:hover img { transform: scale(1.07); }
.rm-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,22,14,.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px;
}
.rm-cat {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage-lt);
  margin-bottom: 6px;
}
.rm-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.rm-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, opacity .4s;
  opacity: 0;
}
.rm:hover .rm-sub { max-height: 60px; opacity: 1; }

/* Room amenity icons row */
.room-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.rf {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
}
.rf .ico { font-size: 1.8rem; display: block; margin-bottom: .8rem; }
.rf h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .4rem;
}
.rf p { font-size: .82rem; color: var(--text); line-height: 1.6; }

/* ============================================================
   GALLERY GRID
   ============================================================ */

.gal-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 4px;
  margin-top: 2.5rem;
}
.gc { overflow: hidden; cursor: pointer; }
.gc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.gc:hover img { transform: scale(1.05); }
.gc:first-child { grid-row: span 2; } /* big left image */

.gal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.gal-row .gc { aspect-ratio: 1; }

/* ============================================================
   YOGA SCHEDULE
   ============================================================ */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.sc {
  background: var(--white);
  padding: 28px 24px;
  border-left: 3px solid var(--sage);
}
.sc-time {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .6rem;
  display: block;
}
.sc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: .5rem;
}
.sc-desc { font-size: .86rem; line-height: 1.8; color: var(--text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 2rem;
}
.info-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.info-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .4rem;
}
.info-item p,
.info-item a {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.75;
  text-decoration: none;
}
.info-item a:hover { color: var(--sage); }

.wa-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--wa);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .28s;
  margin-top: .5rem;
}
.wa-contact:hover { background: #1ebe59; transform: translateY(-2px); }
.wa-contact svg { width: 18px; height: 18px; fill: #fff; }

.map-box {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 2rem 0; }
.chip {
  padding: 8px 18px;
  border: 1px solid rgba(107,138,110,.3);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ============================================================
   VALUES GRID (About page)
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.val-card {
  padding: 34px 26px;
  background: var(--white);
  border-bottom: 3px solid var(--sage);
}
.val-card .ico { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.val-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .8rem;
}
.val-card p { font-size: .89rem; line-height: 1.85; color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px 5% 28px;
}
.frow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.flogo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.flogo em { font-style: italic; color: var(--sage-lt); }
.fabout {
  font-size: .87rem;
  line-height: 1.85;
  color: rgba(255,255,255,.36);
  max-width: 255px;
}
.fcol h5 {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sage-lt);
  margin-bottom: 1.3rem;
}
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: .72rem; }
.fcol ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.36);
  text-decoration: none;
  transition: color .25s;
}
.fcol ul li a:hover { color: var(--sage-lt); }
.fcol address {
  font-style: normal;
  font-size: .87rem;
  line-height: 2;
  color: rgba(255,255,255,.36);
}
.fcol address a { color: var(--sage-lt); text-decoration: none; }
.fbot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: .73rem;
  color: rgba(255,255,255,.2);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.waf {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  animation: waPulse 3s ease-in-out infinite;
}
.waf svg { width: 27px; height: 27px; fill: #fff; }
.waf .wtip {
  position: absolute;
  right: 66px; bottom: 12px;
  background: var(--dark);
  color: #fff;
  font-size: .72rem;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.waf:hover .wtip { opacity: 1; }
@keyframes waPulse {
  0%,  100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%        { box-shadow: 0 6px 36px rgba(37,211,102,.65), 0 0 0 10px rgba(37,211,102,.07); }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1000px) {
  .card-grid     { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .frow          { grid-template-columns: 1fr 1fr; }
  .full-split    { grid-template-columns: 1fr; }
  .full-split-img{ aspect-ratio: 16/7; }
  .full-split-c  { padding: 52px 40px; }
  .contact-wrap  { grid-template-columns: 1fr; }
  .room-features { grid-template-columns: repeat(2, 1fr); }
  .gal-hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gc:first-child {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/7;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger             { display: flex; }
  .split                 { grid-template-columns: 1fr; }
  .split-badge           { display: none; }
  .rooms-main            { grid-template-columns: 1fr 1fr; }
  .schedule-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .card-grid     { grid-template-columns: 1fr; }
  .rooms-main    { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .frow          { grid-template-columns: 1fr; }
  .gal-row       { grid-template-columns: 1fr 1fr; }
  .room-features { grid-template-columns: 1fr 1fr; }
  .full-split-c  { padding: 40px 24px; }
  .sw            { padding: 64px 5%; }
}
