/* Moonchild Mammoth Home + site adaptations */

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

    :root {
      --navy: #0D1B2A;
      --forest: #2D4A3E;
      --accent: #1E90FF;
      --warm-white: #FAFAFA;
      --text: #1A1A1A;
      --gray-bg: #F8F8F8;
      --gold: #F5A623;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text);
      background: var(--warm-white);
      overflow-x: hidden;
    }

    /* ── NAV ─────────────────────────────────── */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 56px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      transition: background 0.4s ease, backdrop-filter 0.4s ease;
    }
    .site-nav.scrolled {
      background: rgba(13, 27, 42, 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .nav-logo {
      font-family: 'Georgia', serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      white-space: nowrap;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: #fff; }

    .nav-phone {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.01em;
      white-space: nowrap;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: color 0.2s;
    }
    .nav-phone:hover { color: var(--accent); }
    .nav-phone i { font-size: 12px; }

    /* ── HERO ────────────────────────────────── */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          to bottom,
          var(--navy) 0%,
          #1a3a5c 20%,
          #1e4d3a 55%,
          #2D4A3E 80%,
          #1a2f26 100%
        );
      z-index: 0;
    }

    .hero-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      opacity: 0.75;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(13,27,42,0.35) 0%,
        rgba(13,27,42,0.15) 40%,
        rgba(13,27,42,0.6) 75%,
        rgba(13,27,42,0.92) 100%
      );
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      margin-top: -80px;
    }

    .hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: rgba(255,255,255,0.4);
    }

    .hero-headline {
      font-family: 'Georgia', serif;
      font-size: 100px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .hero-headline-sub {
      font-family: 'Georgia', serif;
      font-size: 38px;
      font-weight: 400;
      color: rgba(255,255,255,0.88);
      letter-spacing: 0.08em;
      margin-bottom: 22px;
    }

    .hero-subhead {
      font-family: 'Georgia', serif;
      font-style: italic;
      font-size: 20px;
      color: rgba(255,255,255,0.78);
      font-weight: 400;
      margin-bottom: 44px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-pill-solid {
      padding: 14px 36px;
      border-radius: 50px;
      background: #fff;
      color: var(--navy);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
    }
    .btn-pill-solid:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.25);
      background: var(--warm-white);
    }
    .btn-pill-solid:active { transform: translateY(0); }

    .btn-pill-ghost {
      padding: 14px 36px;
      border-radius: 50px;
      background: transparent;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      border: 1.5px solid rgba(255,255,255,0.6);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, background 0.2s, border-color 0.2s;
    }
    .btn-pill-ghost:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.9);
    }
    .btn-pill-ghost:active { transform: translateY(0); }

    /* ── SEARCH BAR ──────────────────────────── */
    .search-float-wrap {
      position: absolute;
      bottom: -34px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      width: 100%;
      max-width: 820px;
      padding: 0 24px;
    }

    .search-bar {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.22), 0 4px 20px rgba(0,0,0,0.12);
      display: flex;
      align-items: stretch;
      padding: 10px 10px 10px 0;
      gap: 0;
    }

    .search-field {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 12px 24px;
      border-right: 1px solid #e8e8e8;
      cursor: pointer;
      transition: background 0.2s;
      border-radius: 8px;
    }
    .search-field:hover { background: #f5f7fa; }
    .search-field:last-of-type { border-right: none; }

    .search-field label,
.search-field > span:first-child {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .search-field input, .search-field select {
      border: none;
      background: transparent;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      outline: none;
      cursor: pointer;
      width: 100%;
    }
    .search-field select option { color: var(--text); }

    .search-btn {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 0 30px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 9px;
      margin-left: 6px;
      white-space: nowrap;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .search-btn:hover {
      background: #0a7de8;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(30,144,255,0.35);
    }
    .search-btn:active { transform: translateY(0); }

    /* ── INTRO ───────────────────────────────── */
    .intro {
      background: #fff;
      padding: 130px 24px 100px;
      text-align: center;
    }

    .mountain-icon {
      margin: 0 auto 24px;
      width: 48px;
      height: 48px;
    }

    .intro h2 {
      font-family: 'Georgia', serif;
      font-size: 44px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 22px;
      line-height: 1.2;
    }

    .intro p {
      font-size: 17px;
      line-height: 1.85;
      color: #4a5568;
      max-width: 700px;
      margin: 0 auto;
      font-weight: 400;
    }

    .section-divider {
      width: 52px;
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
      margin: 28px auto 0;
    }

    /* ── STATS BAR ───────────────────────────── */
    .stats-bar {
      background: var(--gray-bg);
      padding: 40px 56px;
      display: flex;
      justify-content: center;
      gap: 80px;
      border-top: 1px solid #ececec;
      border-bottom: 1px solid #ececec;
    }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Georgia', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--navy);
      display: block;
    }
    .stat-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #6b7280;
      margin-top: 4px;
      display: block;
    }

    /* ── PROPERTY GRID ───────────────────────── */
    .properties {
      background: var(--gray-bg);
      padding: 80px 56px 100px;
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 48px;
    }
    .section-header h2 {
      font-family: 'Georgia', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
    }
    .section-rule {
      flex: 1;
      height: 2px;
      background: linear-gradient(to right, #d1d5db, transparent);
      max-width: 200px;
    }
    .section-badge {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(30,144,255,0.1);
      padding: 6px 14px;
      border-radius: 50px;
    }

    .property-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .property-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .property-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.13);
    }

    .property-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .property-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .property-card:hover .property-img-wrap img {
      transform: scale(1.05);
    }

    .property-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--navy);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 50px;
    }

    .property-body {
      padding: 22px 22px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .property-name {
      font-family: 'Georgia', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .property-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 18px;
    }
    .tag {
      font-size: 11px;
      font-weight: 600;
      color: #5a6a7e;
      background: #f0f4f8;
      padding: 5px 11px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .tag i { font-size: 10px; color: var(--accent); }

    .property-actions {
      display: flex;
      gap: 10px;
      margin-top: auto;
    }

    .btn-details {
      flex: 1;
      padding: 10px;
      border: 1.5px solid #d1d5db;
      background: transparent;
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }
    .btn-details:hover {
      border-color: var(--navy);
      background: var(--navy);
      color: #fff;
    }

    .btn-book {
      flex: 1;
      padding: 10px;
      border: none;
      background: var(--accent);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-book:hover {
      background: #0a7de8;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(30,144,255,0.3);
    }

    /* ── AMENITIES ───────────────────────────── */
    .amenities {
      background: var(--navy);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 580px;
    }

    .amenities-left {
      padding: 90px 80px 90px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .amenities-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .amenities-left h2 {
      font-family: 'Georgia', serif;
      font-size: 52px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
      line-height: 1.1;
    }

    .amenities-left p {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      margin-bottom: 46px;
      max-width: 420px;
    }

    .amenity-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px 32px;
    }

    .amenity-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      transition: background 0.2s, border-color 0.2s;
    }
    .amenity-item:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(30,144,255,0.35);
    }

    .amenity-icon {
      width: 38px;
      height: 38px;
      background: rgba(30,144,255,0.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .amenity-icon i {
      font-size: 16px;
      color: var(--accent);
    }

    .amenity-label {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.88);
    }

    .amenities-right {
      position: relative;
      overflow: hidden;
    }
    .amenities-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .amenities-right-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(13,27,42,0.35) 0%, transparent 40%);
    }

    /* ── REVIEWS ─────────────────────────────── */
    .reviews {
      background: #fff;
      padding: 100px 56px;
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .reviews-header .eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
      display: block;
    }
    .reviews-header h2 {
      font-family: 'Georgia', serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1160px;
      margin: 0 auto;
    }

    .review-card {
      background: var(--gray-bg);
      border-radius: 12px;
      padding: 36px 36px 34px;
      border: 1px solid #ececec;
      position: relative;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: default;
    }
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.09);
    }

    .review-quote-icon {
      font-size: 48px;
      color: rgba(30,144,255,0.12);
      font-family: 'Georgia', serif;
      line-height: 1;
      margin-bottom: 6px;
      display: block;
    }

    .review-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 18px;
    }
    .review-stars i {
      font-size: 14px;
      color: var(--gold);
    }

    .review-quote {
      font-family: 'Georgia', serif;
      font-style: italic;
      font-size: 16px;
      line-height: 1.75;
      color: #374151;
      margin-bottom: 24px;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 13px;
    }
    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }
    .review-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      display: block;
    }
    .review-location {
      font-size: 12px;
      color: #9ca3af;
      display: block;
      margin-top: 2px;
    }

    /* ── FOOTER ──────────────────────────────── */
    .site-footer {
      background: var(--navy);
      padding: 64px 56px 0;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 48px;
      align-items: start;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-brand .footer-logo {
      font-family: 'Georgia', serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 14px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      max-width: 260px;
    }

    .footer-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .footer-nav a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: #fff; }

    .footer-contact {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
    }
    .footer-contact a {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 9px;
      transition: color 0.2s;
    }
    .footer-contact a:hover { color: var(--accent); }
    .footer-contact i { color: var(--accent); font-size: 13px; }

    .footer-bottom {
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-copyright {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
    }
    .footer-tagline {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      font-style: italic;
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 1200px) {
      .property-grid { grid-template-columns: repeat(2, 1fr); }
      nav { padding: 0 32px; }
      .properties { padding: 80px 32px 100px; }
      .reviews { padding: 80px 32px; }
      .site-footer { padding: 56px 32px 0; }
    }

    @media (max-width: 900px) {
      .hero-headline { font-size: 72px; }
      .amenities { grid-template-columns: 1fr; }
      .amenities-right { min-height: 320px; }
      .amenities-left { padding: 60px 40px; }
      .reviews-grid { grid-template-columns: 1fr; max-width: 500px; }
      .footer-main { grid-template-columns: 1fr; }
      .footer-contact { align-items: flex-start; }
      .stats-bar { gap: 40px; flex-wrap: wrap; }
    }

    @media (max-width: 640px) {
      .hero-headline { font-size: 52px; }
      .hero-headline-sub { font-size: 26px; }
      .property-grid { grid-template-columns: 1fr; }
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .search-bar { flex-direction: column; padding: 16px; }
      .search-field { border-right: none; border-bottom: 1px solid #e8e8e8; border-radius: 0; }
      .search-btn { width: 100%; justify-content: center; padding: 14px; border-radius: 8px; }
    }
  

/* ── Site adaptations ───────────────────────── */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 20px; top: 12px; z-index: 200;
  background: #fff; padding: 10px 16px; border-radius: 8px;
}
[hidden] { display: none !important; }

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 56px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.site-nav.scrolled,
.site-nav.is-solid {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.site-nav.is-solid { position: sticky; }
body.has-solid-nav { padding-top: 0; }

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.nav-phone-icon { font-size: 14px; }

.search-btn .material-symbols-outlined,
.btn-pill-solid .material-symbols-outlined,
.btn-pill-ghost .material-symbols-outlined { font-size: 1rem; }

/* Stay cards (Moonchild property cards + carousel) */
.property-grid.stay-grid { /* alias */ }
.stay-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.stay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}
.stay-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f4f8;
}
.stay-card-media-link,
.stay-card-track {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.stay-card-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 280ms ease;
}
.stay-card-slide.is-active { opacity: 1; }
.stay-card-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.55);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
}
.stay-card-media:hover .stay-card-nav,
.stay-card-media:focus-within .stay-card-nav { opacity: 1; }
.stay-card-prev { left: 10px; }
.stay-card-next { right: 10px; }
.stay-card-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
}
.stay-badge, .property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
}
.stay-card-body, .property-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.stay-card-main { color: inherit; display: block; }
.stay-card-body h2, .property-name {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.3;
}
.stay-card-place { display: none; }
.stay-meta-row, .property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}
.stay-meta-row span, .tag {
  font-size: 11px;
  font-weight: 600;
  color: #5a6a7e;
  background: #f0f4f8;
  padding: 5px 11px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.stay-meta-row span::after { display: none !important; }
.stay-meta-row .material-symbols-outlined {
  font-size: 12px;
  color: var(--accent);
}

.empty-state, .match-count { margin-top: 12px; color: #6b7280; font-size: 0.9rem; }
.filter-page {
  padding: 40px 56px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.page-shell { padding-top: 68px; }

/* Listing / inner pages */
.section { padding: 80px 56px; }
.wrap { width: min(100% - 48px, 1160px); margin: 0 auto; }
.prose { max-width: 68ch; }
.prose h1 { font-family: Georgia, serif; color: var(--navy); margin-bottom: 1rem; }
.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.button:hover { background: #0a7de8; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.meta { color: #6b7280; }
.listing-head { padding: 40px 0 24px; }
.listing-head h1 { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 2.75rem); color: var(--navy); margin: 0 0 8px; }
.listing-facts { display: flex; flex-wrap: wrap; gap: 8px 16px; list-style: none; padding: 0; margin: 16px 0 0; font-weight: 600; color: #5a6a7e; }
.listing-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 40px; padding: 32px 0 80px; }
.book-panel { background: #f8f8f8; border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); position: sticky; top: 88px; }
.book-rate { font-family: Georgia, serif; font-size: 1.75rem; color: var(--navy); margin: 0 0 8px; }
.book-facts { list-style: none; padding: 0 0 16px; margin: 0 0 16px; border-bottom: 1px solid #e5e7eb; display: grid; gap: 8px; }
.book-facts li { display: flex; justify-content: space-between; gap: 12px; }
.gallery-3up { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; min-height: 400px; }
.gallery-3up > .gallery-tile:first-child { grid-row: span 2; }
.gallery-tile { padding: 0; border: 0; border-radius: 12px; overflow: hidden; cursor: zoom-in; background: #f0f4f8; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-more { display: block; margin: 14px 0 0 auto; min-height: 40px; padding: 0.5rem 1rem; border: 1px solid #d1d5db; border-radius: 8px; background: #fff; font-weight: 600; cursor: pointer; }
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px 16px; list-style: none; padding: 0; margin: 0; }
.contact-list { list-style: none; padding: 0; max-width: 36rem; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.contact-list li { display: flex; justify-content: space-between; gap: 16px; padding: 16px 20px; border-bottom: 1px solid #ececec; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list a { color: var(--accent); font-weight: 600; }
.mobile-book-bar { display: none; }
.lightbox { width: 100%; max-width: 100vw; height: 100%; max-height: 100vh; padding: 0; border: 0; background: transparent; color: #fff; }
.lightbox::backdrop { background: rgba(13,27,42,0.96); }
.lightbox-shell { display: grid; grid-template-rows: auto minmax(0,1fr) auto; height: 100%; padding: 14px 20px 20px; }
.lightbox-bar { display: flex; justify-content: space-between; align-items: center; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  min-width: 44px; min-height: 44px; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px; background: rgba(255,255,255,0.08); color: #fff; cursor: pointer;
}
.lightbox-figure { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 16px; min-height: 0; }
.lightbox-image { max-width: 100%; max-height: 100%; margin: 0 auto; object-fit: contain; }
.footer-address { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.host-band { max-width: 48rem; margin: 0 auto; text-align: center; padding: 80px 24px; }
.host-band blockquote { margin: 0 0 24px; }
.host-band blockquote p { font-family: Georgia, serif; font-size: clamp(1.25rem, 2.4vw, 1.65rem); font-style: italic; color: var(--navy); line-height: 1.5; }
.host-band blockquote footer { margin-top: 16px; font-family: Inter, sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-style: normal; }

.page-hero-collection {
  position: relative;
  height: 360px;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-collection::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(13,27,42,0.55);
}
.page-hero-copy { position: relative; z-index: 1; text-align: center; padding: 40px 24px; }
.page-hero-copy h1 { font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 3.5rem); margin: 0 0 10px; }
.page-hero-copy p { color: rgba(255,255,255,0.85); margin: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(13,27,42,0.98);
    transform: none;
    left: 0;
  }
  .site-nav .nav-links.is-open { display: flex; }
  .site-nav .nav-links a { padding: 12px 0; }
  .listing-layout, .gallery-3up { grid-template-columns: 1fr; }
  .gallery-3up { min-height: 0; }
  .gallery-3up > .gallery-tile:first-child { grid-row: auto; }
  .gallery-tile img { aspect-ratio: 3/2; height: auto; }
  .stay-card-nav { opacity: 1; }
  .mobile-book-bar {
    display: flex;
    position: sticky;
    bottom: 0;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #fff;
    box-shadow: 0 -12px 32px -20px rgba(13,27,42,0.45);
  }
  .filter-page, .section, .properties, .reviews, .site-nav { padding-left: 20px; padding-right: 20px; }
  .site-nav { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stay-card, .stay-card-slide, .property-card { transition: none; }
  .stay-card:hover { transform: none; }
}
