    /* ========================================
       DESIGN SYSTEM AND RESET
       ======================================== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --olive: #3D5A3E;
      --olive-light: #4E7250;
      --terracotta: #C17547;
      --terracotta-light: #D4915F;
      --sand: #F5EDE0;
      --sand-light: #FAF6EF;
      --blue: #2E6B8A;
      --blue-light: #3A85A8;
      --charcoal: #2C2C2C;
      --charcoal-light: #4A4A4A;
      --cream: #FDFAF5;
      --white: #FFFFFF;
      --gold: #B8963E;

      --font-heading: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

      --nav-height: 72px;
      --section-padding: clamp(60px, 10vw, 120px);
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-text-size-adjust: 100%;
    }

    /* Anchored sections (e.g. #book) clear the fixed navbar when jumped to via a
       URL fragment, so a hash link never hides the target under the nav. */
    [id] {
      scroll-margin-top: calc(var(--nav-height) + 16px);
    }

    body {
      font-family: var(--font-body);
      color: var(--charcoal);
      background-color: var(--cream);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul, ol { list-style: none; }

    /* ========================================
       UTILITY CLASSES
       ======================================== */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-padding {
      padding: var(--section-padding) 0;
    }

    .section-label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 12px;
      display: block;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--charcoal);
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--charcoal-light);
      max-width: 600px;
      line-height: 1.8;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      background: var(--terracotta);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(193, 117, 71, 0.3);
    }

    .btn-primary:hover {
      background: var(--terracotta-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(193, 117, 71, 0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: transparent;
      color: var(--olive);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      border: 2px solid var(--olive);
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: var(--olive);
      color: var(--white);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      background: rgba(61, 90, 62, 0.08);
      color: var(--olive);
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 50px;
      white-space: nowrap;
    }

    .badge svg { width: 14px; height: 14px; }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: calc(var(--reveal-i, 0) * 70ms);
      will-change: opacity, transform;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ========================================
       IMAGE PLACEHOLDERS
       ======================================== */
    .img-placeholder {
      background: linear-gradient(135deg, #e8e0d4 0%, #d4cbbf 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--charcoal-light);
      font-size: 0.85rem;
      font-weight: 500;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .img-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b0a494' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }

    .img-placeholder .placeholder-content {
      position: relative;
      z-index: 1;
    }

    .img-placeholder .placeholder-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 12px;
      opacity: 0.5;
    }

    .img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 1;
    }

    .img-placeholder:has(img) {
      background: var(--charcoal);
    }

    .img-placeholder:has(img)::before {
      display: none;
    }

    /* ========================================
       NAVIGATION
       ======================================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-height);
      z-index: 1000;
      /* Always solid white, including at the very top */
      background: rgba(253, 250, 245, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(44, 44, 44, 0.06);
      transition: box-shadow 0.4s ease, height 0.4s ease;
    }

    .nav.scrolled {
      box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    }

    .nav-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--charcoal);
      letter-spacing: 3px;
      transition: color 0.4s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .logo-img {
      height: 48px;
      width: auto;
      color: var(--charcoal);
      filter: none;
      transition: filter 0.4s, height 0.4s, color 0.4s;
    }
    .nav.scrolled .logo-img {
      height: 40px;
    }
    .footer-logo-img {
      color: var(--white);
      height: 36px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--charcoal-light);
      transition: color 0.3s;
      letter-spacing: 0.3px;
    }

    .nav-links a:hover { color: var(--charcoal); }

    .lang-toggle {
      display: flex;
      align-items: center;
      background: rgba(61, 90, 62, 0.08);
      border-radius: 50px;
      padding: 3px;
      gap: 2px;
      transition: background 0.4s;
    }

    .lang-btn {
      padding: 6px 12px;
      font-size: 0.78rem;
      font-weight: 600;
      border-radius: 50px;
      color: var(--charcoal-light);
      transition: all 0.3s;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 5px;
      text-decoration: none;
    }

    .lang-btn .flag {
      width: 22px;
      height: 16px;
      border-radius: 3px;
      flex-shrink: 0;
      object-fit: cover;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    }

    .lang-btn.active {
      background: var(--olive);
      color: var(--white);
    }

    .nav-cta {
      padding: 10px 24px !important;
      background: var(--terracotta) !important;
      color: var(--white) !important;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: 0.82rem !important;
      transition: all 0.3s !important;
      box-shadow: 0 2px 12px rgba(193, 117, 71, 0.3);
    }

    .nav-cta:hover { background: var(--terracotta-light) !important; transform: translateY(-1px); }

    .book-alternatives {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      color: var(--charcoal-light);
      margin-top: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .book-alternatives a {
      color: var(--blue);
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .book-alternatives a:hover { color: var(--blue-light); }

    /* Booking Form */
    .booking-section { background: var(--olive); color: #fff; position: relative; overflow: hidden; }
    .booking-section::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .booking-section .section-label { color: rgba(255,255,255,0.7); }
    .booking-section .section-title { color: #fff; }
    .booking-section .section-subtitle { color: rgba(255,255,255,0.8); }
    .booking-form-card {
      background: #fff;
      border-radius: 16px;
      padding: 2rem;
      max-width: 640px;
      margin: 2rem auto 0;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      color: var(--charcoal);
    }
    .booking-form-card .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .booking-form-card .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 14px;
    }
    .booking-form-card label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--charcoal-light);
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .booking-form-card input,
    .booking-form-card select {
      padding: 12px 14px;
      border: 1.5px solid var(--sand-dark);
      border-radius: 10px;
      font-size: 0.95rem;
      font-family: var(--font-body);
      color: var(--charcoal);
      background: var(--sand-light);
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .booking-form-card input[type="date"] {
      position: relative;
      padding-right: 40px;
      cursor: pointer;
      min-height: 48px;
    }
    .booking-form-card input[type="date"]::-webkit-calendar-picker-indicator {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.2s;
    }
    .booking-form-card input[type="date"]:hover::-webkit-calendar-picker-indicator {
      opacity: 0.8;
    }
    .booking-form-card input:focus,
    .booking-form-card select:focus {
      outline: none;
      border-color: var(--olive);
      box-shadow: 0 0 0 3px rgba(61,90,62,0.12);
    }
    .booking-form-card .btn-primary {
      width: 100%;
      justify-content: center;
      font-size: 1rem;
      padding: 14px 24px;
      margin-top: 6px;
    }
    .booking-step { display: none; }
    .booking-step.active { display: block; }
    .booking-rooms {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 12px 0;
    }
    .booking-room-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      border: 2px solid var(--sand-dark);
      border-radius: 12px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .booking-room-card:hover,
    .booking-room-card.selected {
      border-color: var(--olive);
      background: rgba(61,90,62,0.05);
    }
    .booking-room-card .room-name {
      font-weight: 600;
      font-size: 0.95rem;
    }
    .booking-room-card .room-price {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--olive);
    }
    .booking-msg {
      text-align: center;
      padding: 12px;
      border-radius: 10px;
      font-size: 0.9rem;
      margin-bottom: 12px;
      display: none;
    }
    .booking-msg.success { display: block; background: rgba(61,90,62,0.1); color: var(--olive); }
    .booking-msg.error { display: block; background: rgba(193,117,71,0.1); color: var(--terracotta); }
    .booking-loading {
      display: inline-block;
      width: 18px; height: 18px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.6s linear infinite;
      vertical-align: middle;
      margin-right: 6px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
    }

    .mobile-toggle span {
      width: 24px;
      height: 2px;
      background: var(--charcoal);
      transition: all 0.3s;
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(253, 250, 245, 0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      color: var(--charcoal);
      font-weight: 400;
    }

    .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--charcoal);
    }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: #2a4a3a;
    }

    .hero-bg .img-placeholder {
      position: absolute;
      inset: 0;
      opacity: 1;
    }

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

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.22) 28%, rgba(0,0,0,0.18) 55%),
        linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.58) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 800px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50px;
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 500;
    }

    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(3.5rem, 10vw, 7rem);
      font-weight: 300;
      color: var(--white);
      letter-spacing: 8px;
      line-height: 1;
      margin-bottom: 20px;
      text-shadow: 0 2px 40px rgba(0,0,0,0.2);
    }

    .hero-subtitle {
      font-family: var(--font-heading);
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.85);
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .hero-location {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 40px;
    }

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

    .hero-ctas .btn-secondary {
      color: var(--white);
      border-color: rgba(255,255,255,0.4);
    }

    .hero-ctas .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }

    .hero-direct-note {
      margin: 18px auto 0;
      max-width: 560px;
      color: rgba(255,255,255,0.82);
      font-size: 0.9rem;
      line-height: 1.7;
      text-shadow: 0 1px 8px rgba(0,0,0,0.45);
    }

    /* Hero slideshow: distinct full-bleed carousel */
    .hero-slideshow .hero-bg {
      background: #1a2e22;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.4s;
      z-index: 0;
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }

    .hero-slide img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.06);
      transition: transform 5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hero-slide.active img {
      transform: scale(1);
    }

    .hero-slideshow .hero-overlay {
      background:
        linear-gradient(105deg, rgba(26,46,34,0.55) 0%, transparent 42%),
        linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.12) 35%, rgba(0,0,0,0.2) 60%),
        linear-gradient(to bottom, transparent 0%, rgba(26,46,34,0.75) 100%);
      z-index: 2;
    }

    .hero-slide-captions {
      position: absolute;
      left: 24px;
      bottom: 88px;
      z-index: 3;
      max-width: 280px;
    }

    .hero-slide-caption {
      position: absolute;
      left: 0;
      bottom: 0;
      margin: 0;
      padding: 10px 16px;
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-style: italic;
      color: rgba(255,255,255,0.92);
      background: rgba(61,90,62,0.35);
      backdrop-filter: blur(12px);
      border-left: 3px solid var(--terracotta-light);
      border-radius: 0 10px 10px 0;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      pointer-events: none;
      white-space: nowrap;
    }

    .hero-slide-caption.active {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-slideshow .hero-content {
      z-index: 4;
    }

    .hero-controls {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 8px 14px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px;
    }

    .hero-nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.1);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.25s, transform 0.25s, border-color 0.25s;
    }

    .hero-nav-btn:hover {
      background: rgba(255,255,255,0.22);
      border-color: rgba(255,255,255,0.45);
      transform: scale(1.05);
    }

    .hero-nav-btn svg {
      width: 20px;
      height: 20px;
    }

    .hero-dots {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      padding: 0;
      background: rgba(255,255,255,0.35);
      /* purely an indicator: visitors cannot click to change the photo */
      pointer-events: none;
      transition: transform 0.3s, background 0.3s, width 0.35s;
    }

    .hero-dot.active {
      width: 28px;
      border-radius: 5px;
      background: var(--terracotta-light);
    }

    .hero-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: rgba(255,255,255,0.12);
      z-index: 5;
      overflow: hidden;
    }

    .hero-progress-bar {
      display: block;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
      transition: width 0.1s linear;
    }

    .hero-slideshow.is-paused .hero-progress-bar {
      transition: none;
    }

    @media (max-width: 768px) {
      .hero-slide-captions {
        display: none;
      }
      .hero-controls {
        bottom: 20px;
        gap: 10px;
        padding: 6px 10px;
      }
      .hero-nav-btn {
        width: 36px;
        height: 36px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide,
      .hero-slide img,
      .hero-slide-caption,
      .hero-progress-bar {
        transition: none !important;
      }
      .hero-slide.active img {
        transform: none;
      }
    }


    /* ========================================
       KEY STATS BAR
       ======================================== */
    .stats-bar {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding: 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      text-align: center;
    }

    .stat-item {
      padding: 28px 16px;
      border-right: 1px solid rgba(0,0,0,0.06);
    }

    .stat-item:last-child { border-right: none; }

    .stat-icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 10px;
      color: var(--terracotta);
    }

    .stat-value {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 2px;
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--charcoal-light);
      letter-spacing: 0.5px;
    }

    /* ========================================
       ABOUT SECTION
       ======================================== */
    .about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-image {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4/5;
    }

    .about-text .section-subtitle { margin-bottom: 28px; }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
    }

    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--white);
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .about-feature-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(61, 90, 62, 0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--olive);
    }

    .about-feature-icon svg { width: 20px; height: 20px; }

    .about-feature h4 {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .about-feature p {
      font-size: 0.8rem;
      color: var(--charcoal-light);
      line-height: 1.5;
    }

    /* ========================================
       PHOTO STRIP
       ======================================== */
    .photo-strip {
      overflow: hidden;
      background: var(--white);
      padding: 4px 0;
    }

    .photo-strip-inner {
      display: flex;
      gap: 4px;
    }

    .photo-strip-item {
      flex: 1;
      min-width: 0;
      aspect-ratio: 1/1;
      overflow: hidden;
    }

    .photo-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .photo-strip-item:hover img {
      transform: scale(1.08);
    }

    @media (max-width: 768px) {
      .photo-strip-inner { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
      .photo-strip-item { min-width: 45%; flex: none; scroll-snap-align: start; }
    }

    /* ========================================
       APARTMENTS SECTION
       ======================================== */
    .apartments {
      background: var(--sand-light);
    }

    .apt-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .apt-header .section-subtitle {
      margin: 0 auto;
    }

    .apt-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .apt-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 30px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .apt-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    }

    .apt-gallery {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
    }

    .apt-gallery-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .apt-gallery-slide.active { opacity: 1; }

    .apt-gallery-nav {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
    }

    .apt-gallery-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .apt-gallery-dot.active { background: var(--white); width: 20px; border-radius: 4px; }

    .apt-gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.85);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--charcoal);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: all 0.3s;
      opacity: 0;
    }

    .apt-gallery:hover .apt-gallery-arrow { opacity: 1; }

    .apt-gallery-arrow:hover {
      background: var(--white);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    }

    .apt-gallery-arrow.prev { left: 10px; }
    .apt-gallery-arrow.next { right: 10px; }

    .apt-gallery-arrow svg { width: 18px; height: 18px; pointer-events: none; }

    .apt-gallery-counter {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 3;
      background: rgba(0,0,0,0.45);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 50px;
      letter-spacing: 0.5px;
      backdrop-filter: blur(4px);
    }

    @media (max-width: 768px) {
      .apt-gallery-arrow { opacity: 1; width: 34px; height: 34px; }
      .apt-gallery-arrow.prev { left: 6px; }
      .apt-gallery-arrow.next { right: 6px; }
    }

    .apt-info { padding: 28px; }

    .apt-name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .apt-meta {
      font-size: 0.82rem;
      color: var(--charcoal-light);
      margin-bottom: 20px;
    }

    .apt-amenities {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 24px;
    }

    .apt-amenity {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--charcoal-light);
    }

    .apt-amenity svg {
      width: 16px;
      height: 16px;
      color: var(--olive);
      flex-shrink: 0;
    }

    .apt-cta {
      display: flex;
      gap: 12px;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .apt-cta .rating-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--olive);
    }

    /* ========================================
       GARDEN SECTION
       ======================================== */
    .garden {
      background: var(--olive);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .garden::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }

    .garden .section-label { color: rgba(255,255,255,0.5); }
    .garden .section-title { color: var(--white); }
    .garden .section-subtitle { color: rgba(255,255,255,0.75); }

    .garden-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 48px;
    }

    .garden-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
    }

    .garden-images .img-placeholder {
      border-radius: 16px;
      min-height: 180px;
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      overflow: hidden;
    }

    .garden-images .img-placeholder img {
      border-radius: 16px;
    }

    .garden-images .img-placeholder:first-child {
      grid-column: 1 / -1;
      min-height: 220px;
    }

    .garden-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }

    .garden-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: rgba(255,255,255,0.06);
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      transition: background 0.3s;
    }

    .garden-feature:hover { background: rgba(255,255,255,0.1); }

    .garden-feature-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .garden-feature-icon svg { width: 22px; height: 22px; }

    .garden-feature h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .garden-feature p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    /* ========================================
       REVIEWS SECTION
       ======================================== */
    .reviews {
      background: var(--cream);
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .reviews-header .section-subtitle { margin: 0 auto; }

    .aggregate-score {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: var(--white);
      padding: 20px 36px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      margin-top: 28px;
    }

    .aggregate-number {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 600;
      color: var(--olive);
      line-height: 1;
    }

    .aggregate-text {
      text-align: left;
    }

    .aggregate-text .stars {
      color: var(--gold);
      font-size: 1.1rem;
      letter-spacing: 2px;
    }

    .aggregate-text p {
      font-size: 0.82rem;
      color: var(--charcoal-light);
    }

    .platforms-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .platform-card {
      background: var(--white);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .platform-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }

    .platform-logo {
      height: 32px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.5px;
    }

    .platform-logo.booking { color: #003580; }
    .platform-logo.google { color: #4285F4; }

    .platform-rating {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 4px;
    }

    .platform-label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--terracotta);
      margin-bottom: 2px;
    }

    .platform-count {
      font-size: 0.75rem;
      color: var(--charcoal-light);
    }

    .review-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-cards .review-card:nth-child(n+7) {
      display: none;
    }

    .review-card {
      background: var(--white);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }

    .review-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1rem;
      color: var(--olive);
    }

    .review-meta h4 { font-size: 0.9rem; font-weight: 600; }

    .review-meta span {
      font-size: 0.75rem;
      color: var(--charcoal-light);
    }

    .review-stars {
      color: var(--gold);
      font-size: 0.85rem;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .review-text {
      font-size: 0.88rem;
      color: var(--charcoal-light);
      line-height: 1.7;
      font-style: italic;
    }

    .review-platform-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 14px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--charcoal-light);
      opacity: 0.6;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .reviews-actions {
      display: flex;
      justify-content: center;
      margin-top: 32px;
    }

    .reviews-direct-cta {
      margin-top: 48px;
      padding: 32px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--olive) 0%, #2a4a3a 100%);
      color: var(--white);
      text-align: center;
      box-shadow: 0 16px 44px rgba(61,90,62,0.18);
    }

    .reviews-direct-cta h3 {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 400;
      margin-bottom: 8px;
    }

    .reviews-direct-cta p {
      color: rgba(255,255,255,0.78);
      margin: 0 auto 22px;
      max-width: 620px;
    }

    /* ========================================
       BEACHES SECTION
       ======================================== */
    .beaches {
      background: var(--sand-light);
    }

    .beaches-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .beaches-header .section-subtitle { margin: 0 auto; }

    .beaches-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .beach-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .beach-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    .beach-card.featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .beach-image {
      aspect-ratio: 16/10;
      overflow: hidden;
      position: relative;
    }

    .beach-image a {
      display: block;
      width: 100%;
      height: 100%;
    }

    .beach-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .beach-card:hover .beach-image img {
      transform: scale(1.05);
    }

    .beach-image .maps-badge {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(255,255,255,0.92);
      color: var(--charcoal);
      font-size: 0.68rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 4px;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    .beach-card:hover .maps-badge {
      opacity: 1;
    }

    .beach-card.featured .beach-image { aspect-ratio: auto; min-height: 280px; }

    .beach-info {
      padding: 20px;
    }

    .beach-card.featured .beach-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 36px;
    }

    .beach-distance {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .beach-name {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .beach-card.featured .beach-name { font-size: 1.6rem; }

    .beach-desc {
      font-size: 0.82rem;
      color: var(--charcoal-light);
      line-height: 1.6;
    }

    .beach-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }

    .beach-tag {
      padding: 4px 10px;
      background: rgba(46, 107, 138, 0.08);
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 600;
      border-radius: 50px;
    }

    /* ========================================
       LOCATION SECTION
       ======================================== */
    .location {
      background: var(--cream);
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .location-map {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
      aspect-ratio: 1/1;
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .location-directions {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .direction-card {
      background: var(--white);
      border-radius: 14px;
      padding: 24px;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .direction-card h4 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .direction-card h4 svg { width: 20px; height: 20px; color: var(--terracotta); }

    .direction-card p {
      font-size: 0.88rem;
      color: var(--charcoal-light);
      line-height: 1.7;
    }

    .direction-card .highlight {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(61, 90, 62, 0.08);
      color: var(--olive);
      padding: 2px 10px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    /* ========================================
       HOUSE RULES
       ======================================== */
    .rules-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .rule-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--white);
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .rule-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rule-icon.green { background: rgba(61, 90, 62, 0.1); color: var(--olive); }
    .rule-icon.amber { background: rgba(193, 117, 71, 0.1); color: var(--terracotta); }
    .rule-icon.red { background: rgba(200, 60, 60, 0.1); color: #C83C3C; }

    .rule-icon svg { width: 18px; height: 18px; }

    .rule-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
    .rule-item p { font-size: 0.78rem; color: var(--charcoal-light); }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--charcoal);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--charcoal);
      background: var(--cream);
      transition: border-color 0.3s;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--olive);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.7);
      padding: 60px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand .nav-logo {
      font-size: 1.4rem;
      color: var(--white);
      display: block;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      transition: all 0.3s;
    }

    .footer-social a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
    .footer-social a svg { width: 18px; height: 18px; }

    .footer-col h4 {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }

    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }

    .footer-col a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      transition: color 0.3s;
    }

    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
    }

    /* ========================================
       MOBILE STICKY CTA
       ======================================== */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(253, 250, 245, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 12px 16px;
      z-index: 998;
      box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .sticky-cta-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 600px;
      margin: 0 auto;
    }

    .sticky-cta .btn-primary {
      flex: 1;
      justify-content: center;
      padding: 14px 20px;
      font-size: 0.88rem;
    }

    .sticky-cta .phone-btn {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      background: var(--olive);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sticky-cta .phone-btn svg { width: 20px; height: 20px; }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 1024px) {
      .about-grid,
      .garden-grid,
      .location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .apt-showcase { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

      .beaches-grid { grid-template-columns: 1fr 1fr; }
      .beach-card.featured { grid-template-columns: 1fr; }

      .platforms-grid { grid-template-columns: repeat(3, 1fr); }

      .review-cards { grid-template-columns: repeat(3, 1fr); }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

      .rules-grid { grid-template-columns: 1fr 1fr; }

      .about-image { max-height: 400px; }
      .location-map { aspect-ratio: 16/9; }
    }

    @media (max-width: 768px) {
      :root { --nav-height: 64px; }

      .nav-links { display: none; }
      .mobile-toggle { display: flex; }

      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-item { border-bottom: 1px solid rgba(0,0,0,0.06); }

      .hero-title { letter-spacing: 4px; }
      .hero-badges { gap: 8px; }
      .hero-badge { padding: 6px 14px; font-size: 0.72rem; }

      .beaches-grid { grid-template-columns: 1fr; }
      .platforms-grid { grid-template-columns: 1fr; }
      .rules-grid { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      /* Higher specificity than `.booking-form-card .form-row` so the booking
         fields actually stack to one column on phones. */
      .booking-form-card .form-row { grid-template-columns: 1fr; }

      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

      .review-cards { grid-template-columns: repeat(2, 1fr); }

      .sticky-cta { display: block; }
      body { padding-bottom: 80px; }

      .aggregate-score { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      /* Compact hero buttons so they don't dominate / cover the hero photo */
      .hero-ctas { flex-direction: column; gap: 10px; }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-secondary {
        width: auto;
        justify-content: center;
        padding: 11px 26px;
        font-size: 0.85rem;
        min-height: 44px;
      }

      .apt-amenities { grid-template-columns: 1fr; }
      .review-cards { grid-template-columns: 1fr; }

      .stats-grid { grid-template-columns: 1fr; }
      .hero-title { letter-spacing: 2px; }
      .hero-badges { gap: 8px; }
      .amenities-popular-list { flex-direction: column; align-items: stretch; }
      .amenities-popular-list li { text-align: center; }
    }

    /* ========================================
       MOBILE UX (touch, safe areas, readability)
       ======================================== */
    @media (max-width: 768px) {
      .container,
      .nav-inner {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
      }

      .hero {
        min-height: 100svh;
        min-height: 100dvh;
      }

      .hero-content {
        padding: 0 max(16px, env(safe-area-inset-left, 0px)) 100px;
      }

      .hero-title { letter-spacing: 3px; }
      .hero-subtitle { padding: 0 4px; }
      .hero-location {
        letter-spacing: 1px;
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 8px;
      }

      .hero-direct-note {
        font-size: 0.85rem;
        padding: 0 12px;
      }

      .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
        -webkit-tap-highlight-color: transparent;
      }

      .mobile-menu {
        padding:
          max(20px, env(safe-area-inset-top, 0px))
          max(20px, env(safe-area-inset-right, 0px))
          max(20px, env(safe-area-inset-bottom, 0px))
          max(20px, env(safe-area-inset-left, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .mobile-menu a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.55rem;
        padding: 4px 12px;
      }

      .mobile-menu-close {
        min-width: 44px;
        min-height: 44px;
        top: max(16px, env(safe-area-inset-top, 0px));
        right: max(16px, env(safe-area-inset-right, 0px));
      }

      .mobile-menu .lang-toggle {
        flex-wrap: wrap;
        justify-content: center;
      }

      .mobile-menu .lang-btn {
        min-height: 44px;
        min-width: 72px;
      }

      body {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
      }

      .sticky-cta {
        padding:
          12px
          max(16px, env(safe-area-inset-left, 0px))
          calc(12px + env(safe-area-inset-bottom, 0px))
          max(16px, env(safe-area-inset-right, 0px));
      }

      .sticky-cta .btn-primary,
      .sticky-cta .phone-btn {
        min-height: 48px;
      }

      .whatsapp-widget {
        right: max(16px, env(safe-area-inset-right, 0px));
        bottom: calc(96px + env(safe-area-inset-bottom, 0px));
      }

      .whatsapp-fab {
        width: 56px;
        height: 56px;
      }

      .booking-form-card {
        padding: 22px 16px;
      }

      .booking-form-card input,
      .booking-form-card select,
      .form-group input,
      .form-group select {
        font-size: 16px;
        min-height: 48px;
      }

      .booking-form-card .btn-primary,
      .btn-primary,
      .btn-secondary {
        min-height: 48px;
      }

      .book-alternatives {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
      }

      .book-alternatives a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }

      .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

      .page-hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
      }

      .page-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 8px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
        padding-bottom: max(8px, env(safe-area-inset-bottom, 0px));
      }

      .footer-bottom > span {
        line-height: 1.5;
        max-width: 28rem;
      }

      .footer-bottom a {
        min-height: 44px;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
      }

      .explore-card-overlay {
        padding: 20px 18px 22px;
      }

      .garden-images {
        grid-template-columns: 1fr;
      }

      .apt-gallery-arrow {
        opacity: 1;
        width: 40px;
        height: 40px;
      }
    }

    @media (hover: none) and (pointer: coarse) {
      .apt-gallery-arrow { opacity: 1; }
      .explore-card:hover { transform: none; }
    }

    /* ========================================
       MULTI-PAGE: transitions, page hero, explore
       ======================================== */
    @view-transition {
      navigation: auto;
    }

    ::view-transition-old(root),
    ::view-transition-new(root) {
      animation-duration: 0.35s;
      animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    @media (prefers-reduced-motion: reduce) {
      ::view-transition-old(root),
      ::view-transition-new(root) { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }

    body {
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    body.page-ready {
      opacity: 1;
    }

    .page-main {
      animation: pageFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
      animation-delay: 0.05s;
    }

    @keyframes pageFadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .nav-links a[data-nav].active,
    .mobile-menu a[data-nav].active {
      color: var(--olive);
      position: relative;
    }

    .nav-links a[data-nav].active::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 2px;
      background: var(--terracotta);
      border-radius: 2px;
    }

    .page-hero {
      position: relative;
      min-height: 42vh;
      display: flex;
      align-items: flex-end;
      padding: calc(var(--nav-height) + 48px) 0 56px;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .page-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.03);
      transition: transform 8s ease;
    }

    .page-hero:hover .page-hero-bg img {
      transform: scale(1.06);
    }

    .page-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(44,44,44,0.25) 0%, rgba(44,44,44,0.55) 55%, rgba(61,90,62,0.75) 100%);
      z-index: 1;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 720px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
      opacity: 0.85;
    }

    .breadcrumb a {
      color: rgba(255,255,255,0.9);
      transition: color 0.2s;
    }

    .breadcrumb a:hover { color: var(--sand); }

    .breadcrumb span { opacity: 0.5; }

    .page-hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .page-hero-subtitle {
      font-size: 1.05rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.9);
      max-width: 560px;
    }

    /* Plain text header: no photo, no band, just the title on the page background.
       The double class beats the mobile `.page-hero { min-height: 36vh }` rule so
       the text header never gets a tall empty band on phones. */
    .page-hero.page-hero-text {
      min-height: auto;
      padding: calc(var(--nav-height) + 40px) 0 4px;
      background: var(--cream);
      overflow: visible;
    }
    .page-hero-text .page-hero-content { color: var(--charcoal); }
    .page-hero-text .breadcrumb { opacity: 1; }
    .page-hero-text .breadcrumb a { color: var(--charcoal-light); }
    .page-hero-text .breadcrumb a:hover { color: var(--olive); }
    .page-hero-text .breadcrumb span { color: var(--charcoal-light); opacity: 0.45; }
    .page-hero-text .page-hero-title { color: var(--charcoal); }
    .page-hero-text .page-hero-subtitle { color: var(--charcoal-light); }

    .explore {
      background: var(--sand-light);
    }

    .explore-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 48px;
    }

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

    .explore-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4/5;
      display: block;
      box-shadow: 0 8px 32px rgba(44,44,44,0.1);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
    }

    .explore-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 48px rgba(44,44,44,0.16);
    }

    .explore-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .explore-card:hover img { transform: scale(1.06); }

    .explore-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(44,44,44,0.85) 0%, rgba(44,44,44,0.1) 55%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 24px;
      color: #fff;
    }

    .explore-card-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--terracotta-light);
      margin-bottom: 8px;
    }

    .explore-card-title {
      font-family: var(--font-heading);
      font-size: 1.65rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .explore-card-text {
      font-size: 0.88rem;
      opacity: 0.85;
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .explore-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--sand);
    }

    .amenities-overview {
      background: var(--cream);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .amenity-tile {
      background: var(--white);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
      box-shadow: 0 2px 16px rgba(44,44,44,0.05);
      /* hover only; the entrance is a keyframe animation so the two never clash */
      transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Staggered entrance, driven by an animation so hover transforms stay independent */
    .amenity-tile.visible {
      animation: tileIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
      animation-delay: calc(var(--reveal-i, 0) * 70ms);
    }

    @keyframes tileIn {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .amenity-tile:hover {
      box-shadow: 0 12px 32px rgba(44,44,44,0.10);
    }
    .amenity-tile:hover .amenity-tile-icon {
      transform: translateY(-3px);
    }

    .amenity-tile-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(61,90,62,0.08);
      border-radius: 12px;
      color: var(--olive);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
    }
    .amenity-tile:hover .amenity-tile-icon {
      background: rgba(61,90,62,0.14);
    }

    .amenity-tile-icon svg { width: 24px; height: 24px; }

    .amenity-tile h4 {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 6px;
    }

    .amenity-tile p {
      font-size: 0.8rem;
      color: var(--charcoal-light);
      line-height: 1.5;
    }

    .amenities-detail {
      background: var(--white);
    }

    .amenities-popular {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 48px;
      padding: 28px 24px;
      background: var(--cream);
      border-radius: 16px;
    }

    .amenities-popular-label {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--olive);
      margin-bottom: 16px;
    }

    .amenities-popular-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 20px;
    }

    .amenities-popular-list li {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--charcoal);
      padding: 8px 16px;
      background: var(--white);
      border-radius: 999px;
      box-shadow: 0 2px 10px rgba(44, 44, 44, 0.06);
    }

    /* Masonry-style packing: a short category (e.g. a single item) no longer
       reserves a whole column. Categories flow and stack tightly together. */
    .amenities-categories {
      columns: 235px;
      column-gap: 40px;
      margin-top: 8px;
    }

    .amenities-category {
      break-inside: avoid;
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      margin-bottom: 28px;
    }

    .amenities-category h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--olive);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(61, 90, 62, 0.15);
    }

    .amenities-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .amenities-list li {
      position: relative;
      padding: 6px 0 6px 22px;
      font-size: 0.88rem;
      color: var(--charcoal-light);
      line-height: 1.45;
    }

    .amenities-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 12px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--olive);
      opacity: 0.55;
    }

    .amenities-rules {
      background: var(--cream);
    }

    /* ========================================
       AMENITIES: smooth staggered reveals
    ======================================== */
    .amenity-tile-icon svg,
    .amenities-list li::before {
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .amenity-tile:hover .amenity-tile-icon svg {
      transform: scale(1.12) rotate(-3deg);
    }

    /* Each amenity item fades and slides in as its category scrolls into view */
    .amenities-list li,
    .amenities-popular-list li,
    .rules-grid .rule-item {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                  background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
      transition-delay: calc(var(--reveal-i, 0) * 45ms);
    }
    .amenities-category.visible .amenities-list li,
    .amenities-popular.visible .amenities-popular-list li,
    .direction-card.visible .rules-grid .rule-item {
      opacity: 1;
      transform: none;
    }

    .amenities-list li:hover {
      color: var(--charcoal);
    }
    .amenities-list li:hover::before {
      transform: scale(1.4);
      opacity: 0.9;
    }
    .amenities-popular-list li:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 22px rgba(44, 44, 44, 0.12);
    }
    .rules-grid .rule-item:hover {
      transform: translateY(-3px);
    }

    @media (prefers-reduced-motion: reduce) {
      .amenities-list li,
      .amenities-popular-list li,
      .rules-grid .rule-item {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .amenity-tile.visible {
        animation: none;
      }
    }

    .amenities-rules .direction-card h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0;
    }

    .rules-intro {
      margin-top: 16px;
      font-size: 0.9rem;
      color: var(--charcoal-light);
    }

    .rule-note {
      font-size: 0.82rem;
      color: var(--charcoal-light);
      margin-top: 4px;
    }

    .page-cta-bar {
      background: var(--olive);
      color: #fff;
      padding: 48px 0;
      text-align: center;
    }

    .page-cta-bar h3 {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 10px;
    }

    .page-cta-bar p {
      opacity: 0.85;
      margin-bottom: 24px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .location #map { scroll-margin-top: calc(var(--nav-height) + 24px); }

    @media (max-width: 900px) {
      .explore-grid { grid-template-columns: 1fr; }
      .explore-card { aspect-ratio: 16/10; }
      .page-hero { min-height: 36vh; }
    }

    /* Plain-text summary for assistive tech and crawlers (not shown visually) */
    .ai-site-summary {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* WhatsApp widget */
    .whatsapp-widget {
      position: fixed;
      right: 20px;
      bottom: 88px;
      z-index: 9990;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      pointer-events: none;
    }

    .whatsapp-widget > * { pointer-events: auto; }

    .whatsapp-popup {
      width: min(300px, calc(100vw - 40px));
      background: var(--white);
      border-radius: 16px;
      padding: 20px 18px 18px;
      box-shadow: 0 12px 40px rgba(44, 44, 44, 0.18);
      opacity: 0;
      transform: translateY(12px) scale(0.96);
      visibility: hidden;
      transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    }

    .whatsapp-popup.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      visibility: visible;
    }

    .whatsapp-popup-close {
      position: absolute;
      top: 10px;
      right: 12px;
      border: none;
      background: none;
      font-size: 1.4rem;
      line-height: 1;
      color: var(--charcoal-light);
      cursor: pointer;
      padding: 4px;
    }

    .whatsapp-popup-title {
      font-weight: 600;
      font-size: 1rem;
      color: var(--charcoal);
      margin: 0 28px 8px 0;
      line-height: 1.35;
    }

    .whatsapp-popup-text {
      font-size: 0.88rem;
      color: var(--charcoal-light);
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .whatsapp-popup-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px 16px;
      background: #25d366;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 10px;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .whatsapp-popup-btn:hover {
      background: #1ebe57;
      transform: translateY(-1px);
    }

    .whatsapp-fab {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .whatsapp-fab:hover {
      transform: scale(1.06);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    }

    @media (max-width: 768px) {
      .whatsapp-widget {
        right: 16px;
        bottom: 96px;
      }
    }

    /* ========================================
       FAQ ACCORDION
    ======================================== */
    .faq {
      background: var(--cream);
    }

    .faq-list {
      max-width: 820px;
      margin: 44px auto 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid rgba(44, 44, 44, 0.07);
      border-radius: 16px;
      box-shadow: 0 2px 14px rgba(44, 44, 44, 0.04);
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .faq-item.open {
      border-color: rgba(61, 90, 62, 0.22);
      box-shadow: 0 8px 26px rgba(44, 44, 44, 0.08);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-body);
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--charcoal);
      transition: color 0.25s ease;
    }

    .faq-q:hover { color: var(--olive); }

    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--olive);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq-item.open .faq-chevron { transform: rotate(180deg); }

    .faq-a {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq-item.open .faq-a { grid-template-rows: 1fr; }

    .faq-a-inner {
      overflow: hidden;
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq-item.open .faq-a-inner {
      opacity: 1;
      transform: none;
      transition: opacity 0.4s ease 0.12s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq-a-inner p {
      margin: 0;
      padding: 0 24px 22px;
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--charcoal-light);
    }

    @media (prefers-reduced-motion: reduce) {
      .faq-a { transition: none; }
      .faq-a-inner { transition: none; }
      .faq-chevron { transition: none; }
    }

    @media (max-width: 600px) {
      .faq-q { padding: 16px 18px; font-size: 0.95rem; }
      .faq-a-inner p { padding: 0 18px 18px; }
    }
