:root {
        --gold: #c8a96e;
        --gold-dark: #a8863e;
        --gold-light: #e8d4a8;
        --ink: #1a1614;
        --ink-soft: #3d3530;
        --white: #fdfcf8;
        --parchment: #f0ebe0;
        --mist: #8c8178;
        --jade: #2d7a5f;
        --red-viet: #c0392b;
        --shadow: rgba(26, 22, 20, 0.12);
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "DM Sans", sans-serif;
        background: var(--white);
        color: var(--ink);
        overflow-x: hidden;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2.5rem;
        background: rgba(26, 22, 20, 0.85);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(200, 169, 110, 0.15);
        transition: background 0.3s;
      }
      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 0.02em;
      }
      .nav-logo span {
        color: var(--white);
      }
      .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.85rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 0.04em;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-cta {
        padding: 0.5rem 1.2rem;
        border-radius: 2rem;
        background: var(--gold);
        border: none;
        font-family: "DM Sans", sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--ink);
        cursor: pointer;
        transition:
          transform 0.15s,
          box-shadow 0.15s;
        letter-spacing: 0.02em;
      }
      .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(200, 169, 110, 0.45);
      }

      /* ── NAV TOGGLE (mobile hamburger) ── */
      .nav-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        border: none;
        background: transparent;
        cursor: pointer;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
      }
      .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
      }
      .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .nav-toggle.open span:nth-child(2) {
        opacity: 0;
      }
      .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 199;
        background: rgba(26, 22, 20, 0.55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
      }
      .mobile-nav-overlay.open {
        opacity: 1;
        pointer-events: all;
      }

      /* ── HERO ── */
      .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url("https://images.unsplash.com/photo-1559592413-7cec4d0cae2b?w=1800&q=85");
        background-size: cover;
        background-position: center 40%;
        transform: scale(1.05);
        transition: transform 8s ease;
      }
      .hero:hover .hero-bg {
        transform: scale(1);
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(26, 22, 20, 0.55) 0%,
          rgba(26, 22, 20, 0.3) 50%,
          rgba(26, 22, 20, 0.75) 100%
        );
      }
      .hero-pattern {
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(
            circle at 20% 80%,
            rgba(200, 169, 110, 0.08) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(200, 169, 110, 0.06) 0%,
            transparent 50%
          );
      }
      .hero-content {
        position: relative;
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 2rem;
      }
      .hero-badge {
        display: inline-block;
        padding: 0.4rem 1.2rem;
        border: 1px solid rgba(200, 169, 110, 0.5);
        border-radius: 2rem;
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--gold);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        background: rgba(200, 169, 110, 0.08);
        backdrop-filter: blur(4px);
      }
      .hero-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(3rem, 7vw, 5.5rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.05;
        margin-bottom: 1.25rem;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
      }
      .hero-title em {
        color: var(--gold);
        font-style: italic;
      }
      .hero-sub {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 520px;
        line-height: 1.6;
        font-weight: 300;
      }

      /* ── SEARCH CARD ── */
      .search-card {
        position: relative;
        background: rgba(253, 252, 248, 0.97);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 1.5rem;
        width: min(860px, 92vw);
        box-shadow:
          0 24px 60px rgba(0, 0, 0, 0.25),
          0 0 0 1px rgba(200, 169, 110, 0.2);
      }
      .search-tabs {
        display: flex;
        gap: 0.25rem;
        margin-bottom: 1.25rem;
      }
      .search-tab {
        padding: 0.5rem 1rem;
        border-radius: 10px;
        border: none;
        background: transparent;
        font-family: "DM Sans", sans-serif;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--mist);
        cursor: pointer;
        transition: all 0.2s;
      }
      .search-tab.active,
      .search-tab:hover {
        background: var(--parchment);
        color: var(--ink);
      }
      .search-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr auto;
        gap: 0.75rem;
        align-items: end;
      }
      .search-field label {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--mist);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        display: block;
        margin-bottom: 0.4rem;
      }
      .search-input-wrap {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--parchment);
        border-radius: 12px;
        padding: 0.65rem 1rem;
        border: 1.5px solid transparent;
        transition: border-color 0.2s;
      }
      .search-input-wrap:focus-within {
        border-color: var(--gold);
        background: #fff;
      }
      .search-input-wrap input,
      .search-input-wrap select {
        background: transparent;
        border: none;
        outline: none;
        font-family: "DM Sans", sans-serif;
        font-size: 0.9rem;
        color: var(--ink);
        width: 100%;
      }
      .search-icon {
        font-size: 0.9rem;
        flex-shrink: 0;
      }
      .search-btn {
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        border: none;
        border-radius: 12px;
        font-family: "DM Sans", sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--ink);
        cursor: pointer;
        white-space: nowrap;
        transition:
          transform 0.15s,
          box-shadow 0.15s;
        box-shadow: 0 4px 14px rgba(200, 169, 110, 0.4);
      }
      .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(200, 169, 110, 0.5);
      }

      /* ── STATS ── */
      .stats-bar {
        display: flex;
        justify-content: center;
        gap: 4rem;
        padding: 2.5rem 2rem;
        background: var(--ink);
        border-bottom: 1px solid rgba(200, 169, 110, 0.2);
      }
      .stat-item {
        text-align: center;
      }
      .stat-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
      }
      .stat-label {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 0.3rem;
        letter-spacing: 0.05em;
      }

      /* ── SECTION COMMON ── */
      section {
        padding: 5rem 2.5rem;
      }
      .section-header {
        text-align: center;
        margin-bottom: 3rem;
      }
      .section-eyebrow {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 0.75rem;
      }
      .section-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--ink);
        line-height: 1.15;
      }
      .section-title em {
        color: var(--gold-dark);
        font-style: italic;
      }

      /* ── HOTEL GRID ── */
      .hotel-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.75rem;
        max-width: 1280px;
        margin: 0 auto;
      }
      .hotel-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px var(--shadow);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        cursor: pointer;
        border: 1px solid var(--parchment);
      }
      .hotel-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(26, 22, 20, 0.16);
      }
      .hotel-img-wrap {
        height: 220px;
        position: relative;
        overflow: hidden;
      }
      .hotel-img-wrap img {
        transition: transform 0.5s;
      }
      .hotel-card:hover .hotel-img-wrap img {
        transform: scale(1.06);
      }
      .hotel-badge {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        background: var(--ink);
        color: var(--gold);
        font-size: 0.68rem;
        font-weight: 600;
        padding: 0.3rem 0.7rem;
        border-radius: 2rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .hotel-fav {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: rgba(253, 252, 248, 0.9);
        border: none;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        cursor: pointer;
        transition: transform 0.2s;
      }
      .hotel-fav:hover {
        transform: scale(1.2);
      }
      .hotel-body {
        padding: 1.25rem 1.5rem 1.5rem;
      }
      .hotel-stars {
        font-size: 0.75rem;
        color: var(--gold);
        margin-bottom: 0.4rem;
      }
      .hotel-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 0.3rem;
        line-height: 1.2;
      }
      .hotel-location {
        font-size: 0.78rem;
        color: var(--mist);
        margin-bottom: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }
      .hotel-amenities {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1rem;
      }
      .amenity-tag {
        background: var(--parchment);
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
        border-radius: 2rem;
        color: var(--ink-soft);
      }
      .hotel-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--parchment);
        padding-top: 1rem;
      }
      .hotel-price-label {
        font-size: 0.7rem;
        color: var(--mist);
      }
      .hotel-price {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--ink);
      }
      .hotel-price span {
        font-size: 0.75rem;
        font-weight: 400;
        font-family: "DM Sans", sans-serif;
        color: var(--mist);
      }
      .hotel-rating {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        background: var(--jade);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 0.3rem 0.7rem;
        border-radius: 0.5rem;
      }
      .book-btn {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        border: none;
        border-radius: 10px;
        padding: 0.5rem 1.1rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--ink);
        cursor: pointer;
        transition: transform 0.15s;
      }
      .book-btn:hover {
        transform: translateY(-1px);
      }

      /* ── FILTER PILLS ── */
      .filter-pills {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2.5rem;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
      }
      .pill {
        padding: 0.5rem 1.1rem;
        border-radius: 2rem;
        border: 1.5px solid var(--parchment);
        background: var(--white);
        font-family: "DM Sans", sans-serif;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--mist);
        cursor: pointer;
        transition: all 0.2s;
      }
      .pill.active,
      .pill:hover {
        background: var(--ink);
        border-color: var(--ink);
        color: var(--gold);
      }

      /* ── HIGHLIGHT ── */
      .highlight-section {
        background: var(--ink);
        padding: 6rem 2.5rem;
      }
      .highlight-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
      }
      .highlight-desc {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        line-height: 1.75;
        margin: 1.5rem 0 2rem;
      }
      .highlight-section .section-title {
        color: var(--white);
      }
      .highlight-features {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
      }
      .hf-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.65);
      }
      .hf-icon {
        width: 30px;
        height: 30px;
        background: rgba(200, 169, 110, 0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        flex-shrink: 0;
      }
      .hf-icon-img {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        border: 1.5px solid rgba(200,169,110,0.25);
      }
      .hf-icon-img img {
        width: 100%; height: 100%; object-fit: cover;
      }
      .btn-primary {
        display: inline-block;
        padding: 0.85rem 2rem;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--ink);
        transition:
          transform 0.15s,
          box-shadow 0.15s;
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(200, 169, 110, 0.4);
      }
      .highlight-img-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
        gap: 1rem;
      }
      .himg {
        border-radius: 16px;
        overflow: hidden;
      }
      .himg:first-child {
        grid-column: 1/-1;
        height: 220px;
      }

      /* ── AREA STRIP ── */
      .area-strip {
        padding: 2.5rem 2.5rem;
        max-width: 1280px;
        margin: 0 auto;
      }
      .area-strip-label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold-dark);
        margin-bottom: 1.25rem;
      }
      .area-strip-pills {
        display: flex;
        gap: 0.9rem;
        flex-wrap: wrap;
      }
      .area-pill {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        padding: 0.5rem 1rem 0.5rem 0.5rem;
        background: var(--white);
        border: 1.5px solid var(--parchment);
        border-radius: 50px;
        cursor: pointer;
        transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
        text-decoration: none;
        color: inherit;
      }
      .area-pill:hover {
        border-color: var(--gold);
        box-shadow: 0 4px 16px rgba(200,169,110,0.18);
        transform: translateY(-2px);
      }
      .area-pill-img {
        width: 38px; height: 38px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
      }
      .area-pill-img img { width:100%; height:100%; object-fit:cover; }
      .area-pill-info {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
      }
      .area-pill-info strong {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--ink);
      }
      .area-pill-info em {
        font-size: 0.72rem;
        color: var(--mist);
        font-style: normal;
      }

      /* ── PROMO ── */
      .promo-section {
        padding: 3rem 2.5rem;
      }
      .promo-banner {
        max-width: 1280px;
        margin: 0 auto;
        background: linear-gradient(135deg, var(--ink) 0%, #2d2420 100%);
        border-radius: 24px;
        padding: 3rem 3.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        border: 1px solid rgba(200, 169, 110, 0.2);
        position: relative;
        overflow: hidden;
      }
      .promo-banner-bg {
        position: absolute;
        inset: 0;
        background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1400&q=70');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        border-radius: 24px;
      }
      .promo-banner::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(200, 169, 110, 0.12),
          transparent 70%
        );
      }
      .promo-text h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 2rem;
        color: var(--white);
        margin-bottom: 0.5rem;
      }
      .promo-text p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
      }
      .promo-code {
        text-align: right;
      }
      .promo-label {
        font-size: 0.72rem;
        color: var(--gold);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.4rem;
      }
      .promo-tag {
        font-family: "Cormorant Garamond", serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--gold);
        border: 1.5px dashed rgba(200, 169, 110, 0.4);
        padding: 0.5rem 1.5rem;
        border-radius: 10px;
        letter-spacing: 0.12em;
      }

      /* ── OFFERS ── */
      .offers-section {
        padding: 5rem 2.5rem;
        background: var(--parchment);
      }
      .offers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1280px;
        margin: 0 auto;
      }
      .offer-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        box-shadow: 0 4px 16px var(--shadow);
      }
      .offer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 36px rgba(26, 22, 20, 0.14);
      }
      .offer-img {
        height: 200px;
        position: relative;
        overflow: hidden;
      }
      .offer-img img {
        transition: transform 0.5s;
      }
      .offer-card:hover .offer-img img {
        transform: scale(1.06);
      }
      .offer-tag {
        position: absolute;
        bottom: 0.75rem;
        left: 0.75rem;
        background: rgba(26, 22, 20, 0.85);
        color: var(--gold);
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.3rem 0.75rem;
        border-radius: 2rem;
        backdrop-filter: blur(4px);
      }
      .offer-body {
        padding: 1.25rem 1.5rem 1.5rem;
      }
      .offer-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        color: var(--ink);
      }
      .offer-desc {
        font-size: 0.78rem;
        color: var(--mist);
        line-height: 1.5;
        margin-bottom: 1rem;
      }
      .offer-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .offer-discount {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--jade);
      }
      .offer-btn {
        background: var(--ink);
        color: var(--gold);
        border: none;
        border-radius: 10px;
        padding: 0.5rem 1.1rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
      }
      .offer-btn:hover {
        background: var(--gold);
        color: var(--ink);
      }

      /* ── FOOTER ── */
      footer {
        background: var(--ink);
        color: rgba(255, 255, 255, 0.6);
      }
      .footer-top {
        max-width: 1280px;
        margin: 0 auto;
        padding: 4rem 2.5rem 3rem;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
      }
      .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-top: 0.75rem;
        color: rgba(255, 255, 255, 0.45);
      }
      .footer-col h4 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1rem;
        color: var(--gold);
        margin-bottom: 1rem;
        font-weight: 600;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }
      .footer-col a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.45);
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: var(--gold);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.25rem 2.5rem;
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.3);
      }

      /* ── AUTH OVERLAY ── */
      #authOverlay {
        position: fixed;
        inset: 0;
        z-index: 500;
        background: rgba(26, 22, 20, 0.8);
        backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
      }
      #authModal {
        background: var(--white);
        border-radius: 28px;
        width: min(480px, 96vw);
        overflow: hidden;
        transform: scale(0.92) translateY(20px);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
      }
      .auth-header {
        background: var(--ink);
        padding: 2rem 2.5rem 0;
        position: relative;
      }
      .auth-hero-img {
        position: absolute;
        inset: 0;
        opacity: 0.18;
        background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=60");
        background-size: cover;
        background-position: center;
      }
      .auth-header-content {
        position: relative;
      }
      .auth-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 1.5rem;
      }
      .auth-logo span {
        color: var(--white);
      }
      .auth-close {
        position: absolute;
        top: -0.5rem;
        right: 0;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
      }
      .auth-close:hover {
        background: rgba(255, 255, 255, 0.2);
      }
      .auth-tabs {
        display: flex;
      }
      .auth-tab {
        flex: 1;
        padding: 0.85rem;
        border: none;
        background: transparent;
        font-family: "DM Sans", sans-serif;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.2s;
      }
      .auth-tab.active {
        color: var(--gold);
        font-weight: 600;
        border-bottom: 2px solid var(--gold);
      }
      .auth-tab:not(.active) {
        color: rgba(255, 255, 255, 0.4);
        font-weight: 500;
        border-bottom: 2px solid transparent;
      }
      .auth-body {
        padding: 2rem 2.5rem 2.5rem;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        margin-bottom: 1rem;
      }
      .form-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--mist);
        text-transform: uppercase;
        letter-spacing: 0.09em;
      }
      .form-input {
        background: var(--parchment);
        border: 1.5px solid transparent;
        border-radius: 12px;
        padding: 0.75rem 1rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.9rem;
        color: var(--ink);
        outline: none;
        transition:
          border-color 0.2s,
          background 0.2s;
        width: 100%;
      }
      .form-input:focus {
        border-color: var(--gold);
        background: #fff;
      }
      .form-input-wrap {
        position: relative;
      }
      .form-input-wrap .form-input {
        padding-right: 3rem;
      }
      .toggle-pass {
        position: absolute;
        right: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        cursor: pointer;
        color: var(--mist);
        font-size: 0.85rem;
      }
      .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        padding: 0.75rem;
        border: 1.5px solid var(--parchment);
        border-radius: 12px;
        background: var(--white);
        font-family: "DM Sans", sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--ink);
        cursor: pointer;
        transition: all 0.2s;
        margin-bottom: 0.6rem;
      }
      .social-btn.google:hover {
        border-color: #db4437;
        background: #fff5f5;
      }
      .social-btn.facebook:hover {
        border-color: #1877f2;
        background: #f0f6ff;
      }
      .divider {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 1.25rem 0;
      }
      .divider::before,
      .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--parchment);
      }
      .divider span {
        font-size: 0.78rem;
        color: var(--mist);
      }
      .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        border: none;
        border-radius: 12px;
        padding: 0.9rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--ink);
        cursor: pointer;
        transition:
          transform 0.15s,
          box-shadow 0.15s;
        box-shadow: 0 4px 16px rgba(200, 169, 110, 0.4);
      }
      .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200, 169, 110, 0.5);
      }
      .strength-bar {
        display: flex;
        gap: 3px;
        margin-top: 0.5rem;
      }
      .sb {
        flex: 1;
        height: 3px;
        border-radius: 2px;
        background: var(--parchment);
        transition: background 0.3s;
      }
      .switch-link {
        text-align: center;
        font-size: 0.82rem;
        color: var(--mist);
        margin-top: 1.25rem;
      }
      .switch-link button {
        border: none;
        background: none;
        color: var(--gold-dark);
        font-weight: 600;
        cursor: pointer;
        font-size: 0.82rem;
      }

      /* ── MODAL ── */
      .modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 400;
        background: rgba(26, 22, 20, 0.6);
        backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1rem;
      }
      .modal-overlay.open {
        display: flex;
      }
      .modal {
        background: var(--white);
        border-radius: 24px;
        padding: 2.5rem;
        width: min(540px, 92vw);
        max-height: 85vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
      }
      .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--parchment);
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s;
      }
      .modal-close:hover {
        background: #e0d8cc;
      }

      /* ── TOAST ── */
      .toast {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: var(--ink);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        font-size: 0.875rem;
        font-weight: 500;
        opacity: 0;
        transition:
          opacity 0.3s,
          transform 0.3s;
        z-index: 1000;
        white-space: nowrap;
        border: 1px solid rgba(200, 169, 110, 0.2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      }
      .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
      .toast-icon {
        color: var(--gold);
        margin-right: 0.5rem;
      }

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

      @media (max-width: 900px) {
        .search-grid {
          grid-template-columns: 1fr 1fr;
        }
        .search-btn {
          grid-column: 1/-1;
        }
        .highlight-inner {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        .offers-grid {
          grid-template-columns: 1fr 1fr;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
        }
        nav {
          padding: 0.85rem 1.25rem;
        }
        .nav-toggle {
          display: flex;
        }
        .nav-links {
          display: flex !important;
          flex-direction: column;
          position: fixed;
          top: 0;
          right: 0;
          height: 100dvh;
          width: min(300px, 82vw);
          background: var(--ink);
          padding: 5.5rem 1.75rem 2rem;
          gap: 0;
          box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
          transform: translateX(100%);
          transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
          z-index: 200;
          overflow-y: auto;
          list-style: none;
        }
        .nav-links.open {
          transform: translateX(0);
        }
        .nav-links li {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .nav-links a {
          display: block;
          padding: 1.05rem 0.1rem;
          font-size: 0.98rem;
        }
        #navAuthArea {
          gap: 0.5rem !important;
        }
        #navAuthArea .nav-cta {
          padding: 0.5rem 0.85rem;
          font-size: 0.76rem;
        }
        #navUserName {
          display: none;
        }
      }

      @media (max-width: 768px) {
        /* ── HERO ── */
        .hero {
          height: auto;
          min-height: unset;
          padding: 6.5rem 1rem 2.5rem;
        }
        .hero-content {
          margin-bottom: 1.5rem;
        }
        .hero-title {
          font-size: clamp(2.1rem, 9vw, 2.9rem);
        }
        .hero-sub {
          font-size: 0.92rem;
          max-width: 100%;
        }
        .hero-badge {
          font-size: 0.68rem;
          padding: 0.35rem 0.9rem;
        }

        /* ── SEARCH CARD ── */
        .search-card {
          width: 100%;
          padding: 1.1rem;
          border-radius: 16px;
        }
        .search-tabs {
          gap: 0.15rem;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          padding-bottom: 0.2rem;
          margin-bottom: 1rem;
        }
        .search-tab {
          white-space: nowrap;
          padding: 0.5rem 0.8rem;
          font-size: 0.78rem;
        }
        .search-grid {
          grid-template-columns: 1fr;
          gap: 0.65rem;
        }
        .search-btn {
          padding: 0.85rem 1.5rem;
          font-size: 0.95rem;
        }

        /* ── SECTIONS ── */
        section {
          padding: 3rem 1.25rem;
        }
        .section-header {
          margin-bottom: 2rem;
        }
        .section-title {
          font-size: clamp(1.6rem, 6vw, 2.2rem);
        }

        /* ── HOTEL GRID ── */
        .hotel-grid {
          grid-template-columns: 1fr;
          gap: 1.25rem;
        }
        .hotel-img-wrap {
          height: 200px;
        }
        .hotel-body {
          padding: 1.1rem 1.25rem 1.25rem;
        }

        /* ── FILTER PILLS ── */
        .filter-pills {
          flex-wrap: nowrap;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          justify-content: flex-start;
          padding-bottom: 0.5rem;
          margin-bottom: 1.75rem;
          scrollbar-width: none;
        }
        .filter-pills::-webkit-scrollbar {
          display: none;
        }
        .pill {
          flex-shrink: 0;
        }

        /* ── HIGHLIGHT ── */
        .highlight-section {
          padding: 3.5rem 1.25rem;
        }
        .highlight-inner {
          gap: 2.5rem;
        }
        .highlight-features {
          grid-template-columns: 1fr 1fr;
        }
        .highlight-img-grid {
          grid-template-rows: 140px 140px;
        }
        .himg:first-child {
          height: 160px;
        }

        /* ── AREA STRIP ── */
        .area-strip {
          padding: 1.5rem 1.25rem;
        }
        .area-strip-pills {
          flex-wrap: nowrap;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          gap: 0.6rem;
          padding-bottom: 0.4rem;
        }
        .area-pill {
          flex-shrink: 0;
        }

        /* ── PROMO BANNER ── */
        .promo-section {
          padding: 1.5rem 1.25rem;
        }
        .promo-banner {
          padding: 2rem 1.5rem;
          flex-direction: column;
          text-align: center;
          border-radius: 18px;
        }
        .promo-code {
          text-align: center;
        }

        /* ── OFFERS ── */
        .offers-section {
          padding: 3rem 1.25rem;
        }
        .offers-grid {
          grid-template-columns: 1fr;
        }

        /* ── FOOTER ── */
        .footer-top {
          grid-template-columns: 1fr;
          gap: 2rem;
          padding: 3rem 1.25rem 2rem;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 0.5rem;
          text-align: center;
          padding: 1.25rem 1.25rem;
        }

        /* ── MODALS ── */
        .modal-overlay {
          padding: 0;
          align-items: flex-end;
        }
        .modal {
          width: 100%;
          max-height: 92vh;
          border-radius: 24px 24px 0 0;
          padding: 2rem 1.25rem 1.75rem;
        }
        #authOverlay {
          padding: 0;
          align-items: flex-end;
        }
        #authModal {
          width: 100%;
          border-radius: 24px 24px 0 0;
          max-height: 92vh;
          overflow-y: auto;
        }
        .auth-header {
          padding: 1.5rem 1.5rem 0;
        }
        .auth-body {
          padding: 1.5rem 1.5rem 2rem;
        }

        /* ── TOAST ── */
        .toast {
          left: 1rem;
          right: 1rem;
          transform: translateY(20px);
          white-space: normal;
          text-align: center;
          bottom: 1.25rem;
        }
        .toast.show {
          transform: translateY(0);
        }
      }

      @media (max-width: 480px) {
        .nav-logo {
          font-size: 1.25rem;
        }
        .hero-title {
          font-size: clamp(1.85rem, 10vw, 2.4rem);
        }
        .stats-bar {
          gap: 1.5rem 2rem;
          flex-wrap: wrap;
          padding: 2rem 1.25rem;
        }
        .stat-num {
          font-size: 1.7rem;
        }
        .highlight-features {
          grid-template-columns: 1fr;
        }
        .promo-tag {
          font-size: 1.5rem;
          padding: 0.4rem 1rem;
        }
        .hotel-footer {
          flex-wrap: wrap;
          gap: 0.6rem;
        }
        .hotel-price {
          font-size: 1.3rem;
        }
      }

      /* ── INLINE-STYLED MODALS (booking form / room detail / my bookings) ── */
      @media (max-width: 640px) {
        #bookFormOverlay,
        #roomDetailOverlay,
        #bookingsOverlay {
          padding: 0 !important;
          align-items: flex-end !important;
        }
        #bookFormModal,
        #roomDetailModal,
        #bookingsModal {
          width: 100% !important;
          max-width: 100% !important;
          border-radius: 24px 24px 0 0 !important;
          max-height: 90vh !important;
        }
      }
      @media (max-width: 400px) {
        #bookFormModal > div:first-child,
        #bookFormModal > div:last-child {
          padding-left: 1.25rem !important;
          padding-right: 1.25rem !important;
        }
      }