/* ═══════════════════════════════════════════════════════════
   MISHIKA RETREAT — Stylesheet v3.0
   All UI/UX audit fixes incorporated
   ═══════════════════════════════════════════════════════════ */

/* ── Self-hosted Canela (purchase from commercialtype.com)
   Buy: Canela Light, Regular, Medium + Regular Italic (4 styles minimum)
   Place .woff2/.woff files in /fonts/ after purchase
   ═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables — Mishika Retreat Colour System ── */
:root {
  /* ── NJ Group Core ── */
  --amber: #FF5F1E;
  --amber-hover: #E5520F;
  --amber-50: #FFF0EB;
  --amber-100: #FECAB5;
  --amber-600: #CC4C18;
  --amber-800: #993910;
  --gold: #AB826B;
  --gold-dark: #8B6A53;
  --gold-50: #F5EDE8;
  --gold-100: #E0CFC3;
  --teal: #0099AE;
  --teal-50: #E0F4F7;
  --teal-600: #007A8B;
  --teal-800: #005C68;
  --sand: #F1ECE9;
  --cream: #FDFAF6;
  --brown: #2A1800;
  --ink: #1E0E00;

  /* ── Wānaka Extensions ── */
  --lake: #2E6B7E;
  --lake-50: #E8F1F3;
  --lake-100: #B3D1D9;
  --lake-600: #245565;
  --lake-800: #1A3F4B;
  --sage: #7B8F6E;
  --sage-50: #EFF2EC;
  --sage-100: #C9D3C1;
  --sage-600: #627258;
  --sage-800: #4A5642;
  --autumn: #C89B3C;
  --autumn-50: #FBF4E5;
  --autumn-100: #EDDA9F;
  --autumn-600: #A07C30;
  --autumn-800: #785D24;
  --stone: #8C8278;

  /* ── Warm Neutral Scale ── */
  --sand-50: #F6F1EC;
  --sand-100: #E8DFD6;
  --sand-200: #D4C5B8;
  --sand-300: #B3A090;
  --sand-400: #8C7B6C;
  --sand-500: #6B5D52;
  --bark: #4A3C32;

  /* ── Functional ── */
  --success: #7B8F6E;
  --success-bg: #EFF2EC;
  --warning: #C89B3C;
  --warning-bg: #FBF4E5;
  --error: #CC4C18;
  --error-bg: #FFF0EB;
  --info: #2E6B7E;
  --info-bg: #E8F1F3;

  /* Display font: Canela (purchase web license from commercialtype.com)
     Until font files are installed, falls back to Georgia */
  --font-display: 'Canela', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);

  --nav-height: 80px;
  --container: 1140px;
  --prose-max: 740px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  overflow-x: hidden; /* Fix M06 - prevent horizontal scroll */
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden; /* Fix M06 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Fix X03 - Custom focus indicators for keyboard users */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Skip Link (fix X01) ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: var(--amber);
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
}
.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.prose { max-width: var(--prose-max); margin: 0 auto; }
.prose p { max-width: 70ch; } /* Fix T03 - line length */

/* ── SVG Icons (fix I01 - replacing emoji) ── */
.icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.icon svg {
  width: 100%;
  height: 100%;
}
.amenity-icon {
  display: flex;
  width: 40px;
  height: 40px;
  color: var(--amber);
}
.amenity-icon svg { width: 100%; height: 100%; }
.feature-icon {
  display: flex;
  width: 36px;
  height: 36px;
  color: var(--amber);
  margin-bottom: 12px;
}
.feature-icon svg { width: 100%; height: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  min-height: 48px; /* Touch target fix */
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--amber);
  color: white;
  border: 2px solid var(--amber);
}
.btn-primary:hover { background: var(--amber-hover); border-color: var(--amber-hover); }
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: white; }
.btn-secondary {
  background: transparent;
  color: var(--amber);
  border: 2px solid transparent;
  padding-left: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}
.btn-secondary:hover { color: var(--amber-hover); }
.btn-secondary::after { content: ' →'; }
.btn-full { width: 100%; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.2;
}
.lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION (fixes N01, N02)
   ═══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s var(--ease);
  background: transparent;
}
nav.scrolled {
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42, 24, 0, 0.06);
  height: 68px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  transition: height 0.3s, filter 0.3s;
  object-fit: contain;
  /* Logo is orange on transparent - show white on dark hero */
  filter: brightness(0) invert(1);
}
nav.scrolled .nav-logo-img { 
  height: 36px; 
  filter: none; /* Show original orange on cream nav */
}

/* Language/Region Selector */
.lang-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}
nav.scrolled .lang-select {
  color: var(--ink);
  border-color: rgba(42,24,0,0.15);
}
.lang-select:hover { border-color: var(--amber); color: var(--amber); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-code { letter-spacing: 0.5px; }
.lang-arrow { font-size: 10px; opacity: 0.6; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid rgba(42,24,0,0.08);
  box-shadow: 0 8px 32px rgba(42,24,0,0.12);
  border-radius: 6px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.25s var(--ease);
  z-index: 1001;
  overflow: hidden;
}
.lang-select.open .lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--brown);
  transition: background 0.2s;
  cursor: pointer;
}
.lang-option:hover { background: var(--sand); }
.lang-option.active { background: rgba(255,95,30,0.06); color: var(--amber); font-weight: 500; }
.lang-option .lang-flag { font-size: 18px; }
.lang-option .lang-name { flex: 1; }
.lang-option .lang-currency { font-size: 11px; color: var(--sand-500); }
.nav-brand-text {
  display: none; /* Logo image includes text — hide duplicate */
}
/* Fix N01 - Proper separation between brand name and sub-brand */
.nav-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  transition: color 0.3s;
}
nav.scrolled .nav-name { color: var(--brown); }
/* Fix N02 - Smooth sub-brand collapse */
.nav-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  max-height: 16px;
  opacity: 1;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
nav.scrolled .nav-sub {
  max-height: 0;
  opacity: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}
nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover, .nav-links a.active {
  color: var(--amber);
}
/* Active nav indicator */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
nav.scrolled .nav-phone { color: var(--ink); }
.nav-phone .icon { width: 16px; height: 16px; }
.nav-phone svg { stroke: currentColor; }
.nav-cta {
  padding: 8px 20px;
  background: var(--amber);
  color: white;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--amber-hover); }
.nav-ham {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: white;
}
.nav-ham .icon { width: 24px; height: 24px; }
.nav-ham svg { stroke: currentColor; }
nav.scrolled .nav-ham { color: var(--brown); }

/* ── Mobile Menu ── */
.mob-menu {
  position: fixed;
  inset: 0;
  background: rgba(30, 14, 0, 0.98);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mob-menu.open { transform: translateX(0); }
.mob-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
}
.mob-close .icon { width: 24px; height: 24px; }
.mob-close svg { stroke: currentColor; }
.mob-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mob-links a {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  transition: color 0.3s;
}
.mob-links a:hover { color: var(--amber); }
.mob-cta {
  margin-top: 16px;
  padding: 14px 40px !important;
  background: var(--amber) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  border-radius: 2px;
}
.mob-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mob-contact a {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--gold) !important;
  letter-spacing: 0 !important;
}
.mob-lang {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.mob-lang span {
  cursor: pointer;
  transition: color 0.3s;
}
.mob-lang span:hover { color: var(--amber); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%; /* Fix H01 - better focal point */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,14,0,0.5) 0%, rgba(30,14,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 100px 24px 60px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-location {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 500;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.hero-tagline em { color: var(--gold); }
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.htag {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Fix H02 - Animated chevron instead of text */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: scrollBounce 2s infinite;
  transition: opacity 0.5s;
}
.hero-scroll .icon { width: 28px; height: 28px; }
.hero-scroll svg { stroke: currentColor; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF STRIP (fix M03)
   ═══════════════════════════════════════════════════════════ */
.proof-strip {
  background: var(--brown);
  padding: 24px 0;
  border-bottom: 1px solid rgba(171,130,107,0.15);
}
.proof-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: white;
}
.proof-stars {
  display: flex;
  gap: 2px;
  color: var(--amber);
}
.proof-stars .icon { width: 14px; height: 14px; } /* Fix S03 - SVG stars */
.proof-stars svg { fill: var(--autumn); }
.proof-label {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--stone);
}

/* ═══════════════════════════════════════════════════════════
   AMENITIES GRID
   ═══════════════════════════════════════════════════════════ */
.amenities {
  padding: 80px 0;
  background: var(--cream);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: white;
  border: 1px solid rgba(42,24,0,0.06);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,24,0,0.08);
}
.amenity-card .amenity-icon {
  margin: 0 auto 16px;
}
.amenity-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
}
.amenity-card p {
  font-size: 13px;
  color: var(--bark); /* Fix T01 - darker gold for contrast */
}

/* ═══════════════════════════════════════════════════════════
   ESTATE INTRO / TWO-COLUMN
   ═══════════════════════════════════════════════════════════ */
.estate-intro {
  padding: 80px 0;
  background: var(--sand);
}
.estate-grid, .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.estate-text h2 { margin-bottom: 20px; }
.estate-text p {
  margin-bottom: 16px;
  color: var(--ink);
  line-height: 1.8;
}
.estate-image img, .rounded-img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════
   POOL FULL-BLEED
   ═══════════════════════════════════════════════════════════ */
.pool-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pool-bg {
  position: absolute;
  inset: 0;
}
.pool-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pool-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,14,0,0.6);
}
.pool-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 600px;
}
.pool-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  color: white;
  text-shadow: 0 2px 20px rgba(46,107,126,0.3);
  margin-bottom: 16px;
}
.pool-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HEROES (interior pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,14,0,0.4) 0%, rgba(30,14,0,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 40px;
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}
.page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

/* Page hero backgrounds - developer: add actual images */
.page-hero-estate  { background: url('images/hero-estate.jpg') center/cover; }
.page-hero-rooms   { background: url('images/hero-rooms.jpg') center/cover; }
.page-hero-gallery { background: url('images/hero-gallery.jpg') center/cover; }
.page-hero-wanaka  { background: url('images/hero-wanaka.jpg') center/cover; }
.page-hero-rates   { background: url('images/hero-rates.jpg') center/cover; }
.page-hero-enquiry { background: url('images/hero-enquiry.jpg') center/cover; }

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════════════════════════ */
.content-section {
  padding: 80px 0;
}
.content-section p {
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}
.feature {
  padding: 24px;
  background: white;
  border: 1px solid rgba(42,24,0,0.06);
}
.feature h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.feature p {
  font-size: 13px;
  color: var(--sand-500);
}

/* CTA blocks */
.cta-block {
  text-align: center;
  padding: 48px 24px;
  margin: 48px 0 0;
  background: var(--sand);
  border-radius: 4px;
}
.cta-block h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.cta-block p { margin-bottom: 24px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Room cards */
.room-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.room-card {
  background: white;
  border: 1px solid rgba(42,24,0,0.06);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,24,0,0.08);
}
.room-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.room-info { padding: 20px 24px; }
.room-info h3 { font-size: 20px; margin-bottom: 8px; }
.room-info p { font-size: 13px; color: var(--sand-500); }

/* ═══════════════════════════════════════════════════════════
   GALLERY + LIGHTBOX (fix S01)
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-zoom {
  position: absolute;
  inset: 0;
  background: rgba(30,14,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: white;
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   ACTIVITY CARDS (Wānaka page)
   ═══════════════════════════════════════════════════════════ */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.activity-card {
  background: white;
  border: 1px solid rgba(42,24,0,0.06);
  overflow: hidden;
}
.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.activity-card h3 {
  font-size: 18px;
  color: var(--lake);
  padding: 16px 20px 0;
}
.activity-card p {
  font-size: 13px;
  padding: 8px 20px 20px;
  color: var(--sand-500);
}

/* Seasons */
.seasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.season {
  padding: 20px;
  background: white;
  border: 1px solid rgba(42,24,0,0.06);
  border-left: 3px solid var(--sage);
}
.season h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--sage-800);
  margin-bottom: 8px;
}
.season p { font-size: 13px; color: var(--sand-500); }

/* ═══════════════════════════════════════════════════════════
   RATE CARDS (fix S02)
   ═══════════════════════════════════════════════════════════ */
.rate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.rate-card {
  background: white;
  border: 1px solid rgba(42,24,0,0.08);
  padding: 32px 24px;
  position: relative;
}
.rate-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
}
.rate-desc {
  font-size: 14px;
  color: var(--sand-500);
  margin-bottom: 20px;
}
.rate-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.rate-card li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(42,24,0,0.04);
  padding-left: 16px;
  position: relative;
}
.rate-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 600;
}
.rate-featured {
  border: 2px solid var(--autumn);
  box-shadow: 0 8px 32px rgba(200,155,60,0.15);
}
.rate-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--autumn);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  letter-spacing: 0.5px;
}
.rate-notes {
  padding: 24px;
  background: var(--sand);
  border-radius: 4px;
  margin-top: 24px;
}
.rate-notes h3 { font-size: 18px; margin-bottom: 8px; }
.rate-notes p { font-size: 14px; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════
   ENQUIRY FORM
   ═══════════════════════════════════════════════════════════ */
.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(42,24,0,0.12);
  background: white;
  font-family: var(--font-body);
  font-size: 15px; /* Fix M07 - prevent iOS zoom */
  color: var(--brown);
  border-radius: 2px;
  transition: border-color 0.3s;
  min-height: 48px;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lake);
  outline: none;
}

/* Enquiry sidebar */
.enquiry-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card, .address-card, .response-card {
  background: white;
  border: 1px solid rgba(42,24,0,0.06);
  padding: 24px;
}
.contact-card h3, .address-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(42,24,0,0.06);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(42,24,0,0.04);
  transition: color 0.3s;
}
.contact-item:hover { color: var(--lake); }
.contact-item .icon { width: 18px; height: 18px; color: var(--lake); }
.contact-item svg { stroke: currentColor; }
.contact-item strong { display: block; font-size: 13px; }
.contact-item span { font-size: 13px; color: var(--sand-500); }
.address-card .icon { width: 18px; height: 18px; color: var(--amber); margin-bottom: 8px; }
.address-card svg { stroke: currentColor; }
.response-card p { font-size: 13px; margin-bottom: 6px; }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: var(--sand);
}
.faq-grid {
  max-width: 740px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: white;
  border: 1px solid rgba(42,24,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--amber); font-size: 22px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { background: rgba(255,95,30,0.03); }
.faq-item p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.newsletter {
  padding: 80px 0;
  background: var(--brown);
}
.nl-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.nl-inner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: white;
  margin-bottom: 12px;
}
.nl-inner p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.nl-form {
  display: flex;
  gap: 8px;
}
.nl-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 2px;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.ft-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(171,130,107,0.1);
}
.ft-brand img { margin-bottom: 16px; }
.ft-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--autumn-100);
  margin-bottom: 12px;
}
.ft-desc { font-size: 13px; line-height: 1.7; }
.ft-nav h4, .ft-contact h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ft-nav a, .ft-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: color 0.3s;
}
.ft-nav a:hover, .ft-contact a:hover { color: var(--autumn); }
.ft-contact .icon { width: 16px; height: 16px; }
.ft-contact svg { stroke: currentColor; }
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { font-size: 12px; color: rgba(255,255,255,0.35); }
.ft-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   FLOATING ELEMENTS
   ═══════════════════════════════════════════════════════════ */
/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3), 0 2px 8px rgba(42,24,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-fab .icon { width: 28px; height: 28px; color: white; }
.wa-fab svg { fill: white; }

/* Back to top */
.btt {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid rgba(42,24,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(42,24,0,0.08);
}
.btt.visible { opacity: 1; pointer-events: all; }
.btt .icon { width: 20px; height: 20px; color: var(--brown); }
.btt svg { stroke: currentColor; }

/* Mobile sticky CTA bar (fix M01) */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--brown);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(42,24,0,0.15);
}
.ms-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 14px;
  font-weight: 500;
  min-height: 48px;
}
.ms-call .icon { width: 18px; height: 18px; }
.ms-call svg { stroke: currentColor; }
.ms-reserve {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--amber);
  color: white;
  font-size: 14px;
  font-weight: 600;
  min-height: 48px;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: transform, opacity; /* Fix A01 - GPU promotion */
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* Fix X04 - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links, .nav-phone-text, .lang-select { display: none; }
  .nav-ham { display: flex; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rate-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .rate-featured { order: -1; } /* Recommended card first on mobile */
  .enquiry-layout { grid-template-columns: 1fr; }
  .enquiry-sidebar { order: -1; }
  .activity-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); } /* Space for sticky bar */
  
  .nav-actions { display: none; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
  
  .mobile-sticky { display: flex; } /* Show mobile sticky bar */
  
  /* Fix M01 - WhatsApp FAB above sticky bar */
  .wa-fab {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px) + 16px);
    width: 48px;
    height: 48px;
  }
  .wa-fab .icon { width: 24px; height: 24px; }
  
  /* Fix A03 - Back to top on left to avoid FAB conflict */
  .btt { left: 16px; bottom: calc(76px + env(safe-area-inset-bottom, 0px) + 16px); }
  
  .hero-content { padding: 80px 20px 48px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  /* Fix M05 - Fewer tags on mobile */
  .htag:nth-child(n+4) { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  
  /* Fix M03 - Hide less important proof items */
  .proof-hide-sm { display: none; }
  .proof-inner { gap: 24px; }
  
  .estate-grid, .two-col { grid-template-columns: 1fr; gap: 32px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .room-cards { grid-template-columns: 1fr; }
  .seasons { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  
  .ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .ft-legal { justify-content: center; }
  
  /* Fix M07 - iOS input zoom prevention */
  input, select, textarea { font-size: 16px !important; }
  
  .content-section { padding: 48px 0; }
  .amenities, .newsletter { padding: 48px 0; }
  .faq-section {
  padding: 48px 0; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤ 390px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .proof-inner { gap: 16px; }
  .proof-num { font-size: 22px; }
}


/* ═══════════════════════════════════════════════════════════
   NAIA CHATBOT
   ═══════════════════════════════════════════════════════════ */
.naia-fab {
  position: fixed;
  bottom: 30px;
  right: 100px;
  z-index: 890;
  width: 56px;
  height: 56px;
  background: var(--brown);
  border: 2px solid var(--autumn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(42,24,0,0.25);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.naia-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(42,24,0,0.35);
}
.naia-fab .naia-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--autumn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-family: var(--font-display);
  font-weight: 500;
}
.naia-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: var(--amber);
  border-radius: 50%;
  border: 2px solid var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
}
.naia-panel {
  position: fixed;
  bottom: 100px;
  right: 100px;
  z-index: 889;
  width: 360px;
  max-height: 500px;
  background: var(--brown);
  border: 1px solid rgba(200,155,60,0.2);
  border-top: 3px solid var(--amber);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(42,24,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(16px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.naia-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.naia-header {
  padding: 16px 18px;
  background: rgba(255,95,30,0.08);
  border-bottom: 1px solid rgba(200,155,60,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.naia-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.naia-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
}
.naia-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--autumn-100);
}
.naia-status {
  font-size: 10px;
  color: var(--sand-300);
  display: flex;
  align-items: center;
  gap: 5px;
}
.naia-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}
.naia-close {
  color: var(--sand-300);
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.naia-close:hover { color: var(--amber); }
.naia-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(30,14,0,0.4);
}
.naia-msg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.naia-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--autumn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  flex-shrink: 0;
}
.naia-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,155,60,0.12);
  border-radius: 2px 8px 8px 8px;
}
.naia-quick-replies {
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: rgba(30,14,0,0.5);
}
.naia-qr {
  padding: 6px 12px;
  border: 1px solid rgba(255,95,30,0.3);
  font-size: 11px;
  font-weight: 500;
  color: var(--amber);
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255,95,30,0.05);
  border-radius: 2px;
  font-family: var(--font-body);
}
.naia-qr:hover {
  background: var(--amber);
  color: white;
}
.naia-input-row {
  display: flex;
  padding: 12px 14px;
  gap: 8px;
  border-top: 1px solid rgba(200,155,60,0.1);
  background: rgba(30,14,0,0.4);
}
.naia-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,155,60,0.18);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  border-radius: 2px;
}
.naia-input:focus { border-color: var(--amber); outline: none; }
.naia-input::placeholder { color: rgba(255,255,255,0.3); }
.naia-send {
  background: var(--amber);
  color: white;
  padding: 10px 14px;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.naia-send:hover { background: var(--amber-hover); }
.naia-powered {
  text-align: center;
  padding: 6px;
  font-size: 9px;
  color: var(--sand-400);
  letter-spacing: 1px;
  background: rgba(30,14,0,0.5);
}

/* Mobile: NAIA above WhatsApp, above sticky bar */
@media (max-width: 768px) {
  .naia-fab {
    right: 30px;
    bottom: calc(140px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
  }
  .naia-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: calc(200px + env(safe-area-inset-bottom, 0px));
    max-height: 60vh;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */
@media print {
  nav, .wa-fab, .btt, .mobile-sticky, .mob-menu { display: none !important; }
  .hero { min-height: auto; page-break-after: always; }
  body { padding-bottom: 0; }
}
