/* =========================================================================
   NOMAD ASSOS — Stylesheet
   Palette: olive green · earth · deep sea · cream · sand
   Type: Cormorant Garamond (display) + Inter (UI)
   ========================================================================= */

:root {
  /* Brand palette */
  --olive-deep:    #3a4a2c;   /* deep olive green — headers / dark sections */
  --olive:         #5e7548;   /* olive — accents */
  --olive-soft:    #93a378;   /* soft olive — borders / highlights */
  --olive-bg:      #e9ecdf;   /* very light olive bg */

  --earth-deep:    #5a3a26;   /* deep brown earth */
  --earth:         #8b5a3c;   /* terracotta earth */
  --terracotta:    #c8553d;   /* warm clay accent (caravan markers) */

  --sand:          #e8d4ad;   /* sand */
  --sand-soft:     #f3ead4;   /* light sand */
  --cream:         #faf6ec;   /* page cream */
  --paper:         #fffaef;

  --sea:           #3a6a82;   /* deep aegean */
  --sea-light:     #5fa8c7;
  --sea-soft:      #cfe6f0;

  --ink:           #2a2a24;
  --ink-soft:      #5a5a50;
  --ink-faint:     #8a8a80;

  --white:         #fff;

  /* Type */
  --ff-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 10px rgba(58, 74, 44, 0.06);
  --shadow-md: 0 6px 24px rgba(58, 74, 44, 0.10);
  --shadow-lg: 0 18px 50px rgba(58, 74, 44, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
}
.btn-primary:hover {
  background: var(--earth);
  border-color: var(--earth);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--olive-deep);
}
.btn-outline {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--olive-deep);
  width: 100%;
  margin-top: auto;
}
.btn-outline:hover {
  background: var(--olive-deep);
  color: var(--cream);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  height: 160px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .preloader-logo { height: 110px; }
}
.preloader-text {
  font-family: var(--ff-display);
  font-size: 36px;
  letter-spacing: .25em;
  color: var(--olive-deep);
  margin-bottom: 18px;
}
.preloader-bar {
  width: 220px;
  height: 2px;
  background: var(--olive-bg);
  margin: 18px auto 0;
  overflow: hidden;
  border-radius: 2px;
}
.preloader-bar-fill {
  width: 30%;
  height: 100%;
  background: var(--olive-deep);
  animation: prebar 1.4s ease-in-out infinite;
}
@keyframes prebar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(250, 246, 236, 0.0);
  backdrop-filter: blur(0);
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
}
.nav.scrolled {
  background: rgba(250, 246, 236, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}
.nav-brand-text {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: .22em;
  color: var(--cream);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  transition: color .3s ease, text-shadow .3s ease, font-size .3s ease;
}
.nav.scrolled .nav-brand-text {
  color: var(--olive-deep);
  text-shadow: none;
  font-size: 22px;
}
.nav-brand-sub {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.7);
  margin-top: 4px;
  transition: color .3s ease, margin-top .3s ease;
}
.nav.scrolled .nav-brand-sub {
  color: var(--terracotta);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: .05em;
  color: var(--cream);
  font-weight: 500;
  position: relative;
  transition: color .2s ease;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  letter-spacing: .08em;
  font-size: 13px !important;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--earth); }
.nav-cta::after { display: none; }

.nav-lang {
  border: 1.5px solid currentColor;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 12px !important;
  letter-spacing: .1em;
}
.nav-lang::after { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 110; /* above nav-links overlay */
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform .3s ease, opacity .3s ease, background .2s ease;
  transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(28,40,32,0.35), transparent);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,40,32,0.4));
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 40px;
  color: rgba(250,246,236,0.92);
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
}
.hero-scroll span {
  display: block;
  width: 100%;
  height: 30%;
  background: var(--cream);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

/* ---------- Section base ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section-cream     { background: var(--cream); color: var(--ink); }
.section-sand      { background: var(--sand-soft); color: var(--ink); }
.section-olive     { background: var(--olive-deep); color: var(--cream); }
.section-olive-soft{ background: var(--olive-bg);  color: var(--ink); }
.section-dark      { background: var(--earth-deep); color: var(--cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-head-light .section-eyebrow { color: var(--sand); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.section-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}
.section-head-light .section-lead { color: rgba(250,246,236,0.85); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.about-card {
  background: var(--paper);
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(58, 74, 44, 0.08);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-icon {
  color: var(--terracotta);
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}
.about-icon svg { width: 100%; height: 100%; }
.about-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--olive-deep);
  margin: 0 0 12px;
}
.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Facilities ---------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.facility {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid rgba(250,246,236,0.15);
  border-radius: var(--radius);
  transition: all .3s ease;
}
.facility:hover {
  background: rgba(250,246,236,0.05);
  border-color: var(--sand);
  transform: translateY(-3px);
}
.facility-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--sand);
}
.facility-icon svg { width: 100%; height: 100%; }
.facility-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* ---------- Site Plan ---------- */
.siteplan-wrap {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
}
.siteplan-svg-frame {
  background: var(--paper);
  border: 1px solid rgba(58, 74, 44, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.siteplan-svg {
  width: 100%;
  height: auto;
  display: block;
}
.siteplan-legend {
  background: var(--paper);
  border: 1px solid rgba(58, 74, 44, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}
.legend-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
}
.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.plan {
  background: var(--paper);
  border: 1px solid rgba(58, 74, 44, 0.12);
  border-radius: var(--radius);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan-highlight {
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
  transform: scale(1.03);
}
.plan-highlight:hover { transform: scale(1.03) translateY(-4px); }
.plan-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.plan-price {
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 8px;
  line-height: 1;
}
.plan-highlight .plan-price { color: var(--sand); }
.plan-price span {
  font-size: 14px;
  color: var(--ink-faint);
  font-family: var(--ff-body);
  font-weight: 400;
}
.plan-highlight .plan-price span { color: rgba(250,246,236,0.7); }
.plan-features {
  margin: 28px 0;
  flex-grow: 1;
}
.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(58, 74, 44, 0.08);
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}
.plan-highlight .plan-features li {
  border-color: rgba(250,246,236,0.15);
}
.plan-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.plan-highlight .plan-features li::before { color: var(--sand); }
.plan-highlight .btn-outline {
  color: var(--cream);
  border-color: var(--sand);
}
.plan-highlight .btn-outline:hover {
  background: var(--sand);
  color: var(--olive-deep);
}

/* ---------- Guide ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-card {
  background: var(--paper);
  border: 1px solid rgba(58, 74, 44, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all .3s ease;
  border-left: 3px solid var(--olive-soft);
}
.guide-card:hover {
  transform: translateY(-3px);
  border-left-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}
.guide-icon {
  width: 36px;
  height: 36px;
  color: var(--olive);
  margin-bottom: 18px;
}
.guide-icon svg { width: 100%; height: 100%; }
.guide-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--olive-deep);
  margin: 0 0 6px;
}
.guide-distance {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.guide-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gallery-item {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background: rgba(58, 74, 44, 0.0);
  color: rgba(250,246,236,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 200;
  transition: all .3s ease;
}
.gallery-item:hover::after {
  background: rgba(58, 74, 44, 0.5);
  color: rgba(250,246,236,1);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}
.contact-row svg {
  width: 22px;
  height: 22px;
  color: var(--sand);
  flex-shrink: 0;
}
.contact-row a:hover { color: var(--sand); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(250,246,236,0.08);
  border: 1px solid rgba(250,246,236,0.2);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  transition: all .25s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(250,246,236,0.55);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(250,246,236,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- Footer ---------- */
.footer {
  background: #1f2a1c;
  color: rgba(250,246,236,0.8);
  padding: 70px 0 24px;
}
.footer-inner { display: flex; flex-direction: column; gap: 50px; }
.footer-brand {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(250,246,236,0.1);
}
.footer-brand img {
  margin: 0 auto 16px;
  height: 140px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(250, 246, 236, 0.12));
}
@media (max-width: 720px) {
  .footer-brand img { height: 100px; }
}
.footer-brand-text {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: .15em;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  color: var(--sand);
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--cream);
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: .04em;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(250,246,236,0.65);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,236,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(250,246,236,0.5);
}

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform .25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 35, 22, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s ease;
}
.lb-close { top: 20px; right: 20px; font-size: 36px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 60px; }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 60px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 0.7; }

/* ---------- Scroll-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1024px) {
  .about-grid       { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid  { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid     { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plan-highlight   { transform: none; }
  .plan-highlight:hover { transform: translateY(-4px); }
  .guide-grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid     { grid-template-columns: repeat(3, 1fr); }
  .siteplan-wrap    { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols      { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 720px) {
  .nav-brand-text { font-size: 18px; letter-spacing: .18em; }
  .nav.scrolled .nav-brand-text { font-size: 17px; }
  .nav-brand-sub { font-size: 8.5px; letter-spacing: .25em; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 50px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    transition: right .35s ease;
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--ink); font-size: 16px; }
  .nav-cta { width: 100%; text-align: center; }

  .hero { min-height: 90vh; padding: 100px 24px 60px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: .25em; }

  .about-grid       { grid-template-columns: 1fr; }
  .facilities-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .guide-grid       { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-cols      { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-bottom    { justify-content: center; text-align: center; }

  .wa-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; height: 24px; }
}
