 /* ─── CSS VARIABLES ─── */
    :root {
      --sand: #f5ede0;
      --sand-light: #fdf8f2;
      --sand-dark: #e8d8c3;
      --ocean: #1a4a6b;
      --ocean-mid: #2a6a96;
      --ocean-light: #4a8ab8;
      --ocean-pale: #d4e8f5;
      --gold: #c9a84c;
      --gold-light: #e8c96a;
      --charcoal: #2c2c2c;
      --text: #3d3d3d;
      --text-light: #6b6b6b;
      --white: #ffffff;
      --radius: 2px;
      --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

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

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ─── INFO BAR ─── */
    .info-bar {
      background: var(--ocean);
      color: var(--white);
      text-align: center;
      padding: 10px 20px;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .info-bar span { display: flex; align-items: center; gap: 6px; }
    .info-bar strong { color: var(--gold-light); }

    /* ─── NAVBAR ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(253, 248, 242, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--sand-dark);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      transition: box-shadow var(--transition);
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(26,74,107,0.10); }

    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .nav-logo .logo-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--ocean);
      letter-spacing: 0.02em;
    }
    .nav-logo .logo-sub {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      color: var(--gold);
      text-transform: uppercase;
      margin-top: 1px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      transition: color var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--ocean); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--ocean);
      color: var(--white) !important;
      padding: 9px 22px;
      font-size: 0.78rem !important;
      letter-spacing: 0.12em !important;
      border: none;
      transition: background var(--transition) !important;
    }
    .nav-cta:hover { background: var(--ocean-mid) !important; color: var(--white) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      width: 24px; height: 2px;
      background: var(--ocean);
      transition: var(--transition);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 92vh;
      background:
        linear-gradient(to bottom, rgba(26,74,107,0.55) 0%, rgba(26,74,107,0.20) 50%, rgba(0,0,0,0.5) 100%),
        url('https://images.unsplash.com/photo-1596178065887-1198b6148b2b?w=1600&q=80') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 5% 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to top, var(--sand-light), transparent);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.2);
      border: 1px solid var(--gold);
      color: var(--gold-light);
      padding: 7px 18px;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeDown 0.8s ease both;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      line-height: 1.05;
      font-weight: 300;
      font-style: italic;
      margin-bottom: 12px;
      animation: fadeDown 0.8s 0.15s ease both;
    }

    .hero h1 em { font-style: normal; color: var(--gold-light); font-weight: 500; }

    .hero-sub {
      font-size: clamp(0.85rem, 2vw, 1.05rem);
      color: rgba(255,255,255,0.88);
      letter-spacing: 0.06em;
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.7;
      animation: fadeDown 0.8s 0.3s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeDown 0.8s 0.45s ease both;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--charcoal);
      padding: 14px 34px;
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all var(--transition);
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(201,168,76,0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 14px 34px;
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.6);
      transition: all var(--transition);
      cursor: pointer;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--white);
    }

    .hero-stats {
      position: absolute;
      bottom: 48px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 48px;
      animation: fadeUp 0.8s 0.6s ease both;
    }
    .hero-stat { text-align: center; }
    .hero-stat .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--white);
      font-weight: 300;
    }
    .hero-stat .label {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.75);
      text-transform: uppercase;
      margin-top: 2px;
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translate(-50%, 20px); }
      to { opacity: 1; transform: translate(-50%, 0); }
    }

    /* ─── SECTION BASE ─── */
    section { padding: 90px 5%; }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--ocean);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 580px;
    }

    .divider {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 20px 0;
    }

    /* ─── HIGHLIGHTS STRIP ─── */
    .highlights {
      background: var(--ocean);
      padding: 36px 5%;
    }
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
    }
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 24px;
      border-right: 1px solid rgba(255,255,255,0.12);
    }
    .highlight-item:last-child { border-right: none; }
    .hi-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
    }
    .hi-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      color: var(--white);
      font-weight: 500;
    }
    .hi-sub {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.65);
      margin-top: 2px;
      letter-spacing: 0.04em;
    }

    /* ─── ROOMS ─── */
    #rooms { background: var(--sand-light); }

    .rooms-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 60px;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .room-card {
      background: var(--white);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }
    .room-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(26,74,107,0.12);
    }
    .room-card.featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .room-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .room-img-wrap img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .room-card.featured .room-img-wrap img { height: 100%; min-height: 300px; }
    .room-card:hover .room-img-wrap img { transform: scale(1.05); }

    .room-badge {
      position: absolute;
      top: 16px; left: 16px;
      background: var(--gold);
      color: var(--charcoal);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 4px 12px;
      font-weight: 500;
    }

    .room-info {
      padding: 28px;
    }
    .room-type {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .room-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      color: var(--ocean);
      margin-bottom: 12px;
      font-weight: 400;
    }
    .room-desc {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .room-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }
    .room-feat {
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      background: var(--ocean-pale);
      color: var(--ocean);
      padding: 4px 10px;
    }
    .room-cta {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ocean);
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      transition: color var(--transition);
    }
    .room-cta:hover { color: var(--gold); }

    /* ─── DINING ─── */
    #dining {
      background: var(--ocean);
      position: relative;
      overflow: hidden;
    }
    #dining::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }

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

    .dining-text .section-label { color: var(--gold-light); }
    .dining-text .section-title { color: var(--white); }
    .dining-text .section-desc { color: rgba(255,255,255,0.75); max-width: 100%; }
    .dining-text .divider { background: var(--gold); }

    .dining-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 32px;
    }
    .dining-feat {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .dining-feat-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .dining-feat-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      color: var(--white);
      margin-bottom: 4px;
    }
    .dining-feat-desc {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    .dining-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
      height: 420px;
    }
    .dining-img-grid img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .dining-img-grid img:first-child {
      grid-row: 1 / 3;
    }
    .dining-img-grid img:hover { transform: scale(1.03); }

    /* ─── LOCATION ─── */
    #location { background: var(--sand-light); }

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

    .attractions-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }

    .attraction {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 18px 20px;
      background: var(--white);
      border-left: 3px solid var(--gold);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .attraction:hover {
      transform: translateX(4px);
      box-shadow: 4px 0 20px rgba(26,74,107,0.08);
    }

    .attr-dist {
      text-align: center;
      min-width: 70px;
    }
    .attr-dist .dist-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--ocean);
      font-weight: 300;
      line-height: 1;
    }
    .attr-dist .dist-unit {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2px;
    }
    .attr-sep {
      width: 1px;
      height: 40px;
      background: var(--sand-dark);
    }
    .attr-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--charcoal);
    }
    .attr-how {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-top: 3px;
    }

    .map-container {
      background: var(--white);
      padding: 8px;
      box-shadow: 0 8px 32px rgba(26,74,107,0.10);
    }
    .map-placeholder {
      background: var(--ocean-pale);
      height: 380px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }
    .map-placeholder iframe {
      width: 100%;
      height: 100%;
      border: none;
      position: absolute;
      top: 0; left: 0;
    }
    .map-cta {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: var(--ocean);
      color: var(--white);
      padding: 10px 20px;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      z-index: 2;
      transition: background var(--transition);
    }
    .map-cta:hover { background: var(--ocean-mid); }

    /* ─── GALLERY ─── */
    #gallery { background: var(--charcoal); padding: 90px 5%; }
    #gallery .section-label { color: var(--gold-light); }
    #gallery .section-title { color: var(--white); }
    #gallery .divider { background: var(--gold); }

    .gallery-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 240px 240px;
      gap: 10px;
    }
    .gallery-item {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item:first-child {
      grid-row: 1 / 3;
      grid-column: 1;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      filter: brightness(0.88);
    }
    .gallery-item:hover img {
      transform: scale(1.08);
      filter: brightness(1);
    }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(26,74,107,0);
      transition: background var(--transition);
    }
    .gallery-item:hover::after {
      background: rgba(26,74,107,0.12);
    }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--sand-light); }

    .testimonials-header { margin-bottom: 50px; }

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

    .testimonial {
      background: var(--white);
      padding: 32px;
      position: relative;
      border-top: 3px solid var(--gold);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .testimonial:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(26,74,107,0.10);
    }

    .t-stars {
      color: var(--gold);
      font-size: 0.9rem;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }
    .t-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text);
      font-style: italic;
      margin-bottom: 20px;
    }
    .t-author {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ocean);
      font-weight: 500;
    }
    .t-platform {
      font-size: 0.68rem;
      color: var(--text-light);
      margin-top: 3px;
    }

    .reviews-cta-wrap {
      text-align: center;
      margin-top: 44px;
    }
    .btn-secondary {
      display: inline-block;
      border: 1px solid var(--ocean);
      color: var(--ocean);
      padding: 12px 28px;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: all var(--transition);
    }
    .btn-secondary:hover {
      background: var(--ocean);
      color: var(--white);
    }

    /* ─── FAQ ─── */
    #faq { background: var(--white); }

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

    .faq-item {
      padding: 24px;
      background: var(--sand-light);
      cursor: pointer;
      transition: background var(--transition);
    }
    .faq-item:hover { background: var(--sand); }
    .faq-item.open { background: var(--ocean-pale); }

    .faq-q {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      color: var(--ocean);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .faq-toggle {
      font-size: 1.3rem;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform var(--transition);
    }
    .faq-item.open .faq-toggle { transform: rotate(45deg); }
    .faq-a {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-top: 12px;
      display: none;
    }
    .faq-item.open .faq-a { display: block; }

    /* ─── BOOKING SECTION ─── */
    #booking {
      background: linear-gradient(135deg, var(--ocean) 0%, #0d3352 100%);
      text-align: center;
      padding: 80px 5%;
    }
    #booking .section-label { color: var(--gold-light); }
    #booking .section-title { color: var(--white); margin: 0 auto 12px; }
    #booking .section-desc { color: rgba(255,255,255,0.75); margin: 0 auto 40px; text-align: center; }

    .booking-channels {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .booking-channel {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 18px 28px;
      color: var(--white);
      font-size: 0.85rem;
      transition: all var(--transition);
      min-width: 200px;
    }
    .booking-channel:hover {
      background: rgba(255,255,255,0.18);
      transform: translateY(-3px);
    }
    .bc-icon { font-size: 1.6rem; }
    .bc-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 2px; }
    .bc-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--white); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.7);
      padding: 60px 5% 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand .logo-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--white);
      display: block;
      margin-bottom: 4px;
    }
    .footer-brand .logo-sub {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .footer-brand p {
      font-size: 0.83rem;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      font-weight: 500;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.65);
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--gold-light); }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.84rem;
      margin-bottom: 14px;
    }
    .footer-contact .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      font-size: 0.76rem;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom a { color: var(--gold); }

    /* ─── FLOATING BUTTONS ─── */
    .floating-btns {
      position: fixed;
      bottom: 28px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
    }

    .float-btn {
      width: 54px; height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }
    .float-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(0,0,0,0.30);
    }

    .float-btn .tooltip {
      position: absolute;
      right: 64px;
      white-space: nowrap;
      background: var(--charcoal);
      color: var(--white);
      font-size: 0.75rem;
      padding: 5px 12px;
      border-radius: 2px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
      letter-spacing: 0.05em;
    }
    .float-btn:hover .tooltip { opacity: 1; }

    .float-btn-wa {
      background: #25D366;
    }
    .float-btn-wa svg { width: 26px; height: 26px; fill: var(--white); }

    .float-btn-phone {
      background: var(--ocean);
    }
    .float-btn-phone svg { width: 22px; height: 22px; fill: var(--white); }

    /* pulse ring */
    .float-btn::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      animation: pulse-ring 2.5s ease-out infinite;
    }
    .float-btn-wa::before { border: 2px solid rgba(37,211,102,0.5); }
    .float-btn-phone::before { border: 2px solid rgba(26,74,107,0.4); animation-delay: 1.25s; }

    @keyframes pulse-ring {
      0% { transform: scale(1); opacity: 1; }
      80%, 100% { transform: scale(1.45); opacity: 0; }
    }

    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
      .highlights-grid { grid-template-columns: repeat(2, 1fr); }
      .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
      .rooms-header { grid-template-columns: 1fr; gap: 16px; }
      .rooms-grid { grid-template-columns: 1fr; }
      .room-card.featured { grid-column: auto; grid-template-columns: 1fr; }
      .room-card.featured .room-img-wrap img { min-height: 240px; }
      .dining-grid { grid-template-columns: 1fr; gap: 40px; }
      .dining-img-grid { height: 280px; }
      .location-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:first-child { grid-row: auto; grid-column: auto; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-stats { gap: 28px; }
    }

    @media (max-width: 600px) {
      .hero h1 { font-size: 2.4rem; }
      .highlights-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .booking-channel { min-width: 160px; }
      .info-bar { gap: 16px; }
      .hero-stats { gap: 20px; bottom: 32px; }
      .hero-stat .num { font-size: 1.5rem; }
    }

    /* ─── MOBILE NAV ─── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--sand-light);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--ocean);
    }
    .mobile-close {
      position: absolute;
      top: 24px; right: 24px;
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--ocean);
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }