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

  :root {
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #8B6F3E;
    --deep: #0D1B2A;
    --deep2: #132237;
    --mid: #1E3A52;
    --surface: #F7F4EF;
    --surface2: #EEE9E0;
    --text: #1A1A2E;
    --text-muted: #5C6B7A;
    --white: #FFFFFF;
    --card-radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html { scroll-behavior: smooth; }

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

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transition: background var(--transition);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
  }

  .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
  }

  .logo-text span {
    color: var(--gold);
  }

  nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  nav a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: color var(--transition);
    position: relative;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
  }

  nav a:hover { color: var(--gold); }
  nav a:hover::after { width: 100%; }

  /* Mobile menu toggle (hidden on desktop) */
  .nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
  }

  .nav-toggle:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
  }

  .nav-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
  }

  .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(13, 27, 42, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-brand {
    display: none;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--deep);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: 0.3px;
  }

  /* Header call-to-action: phone icon + number aligned nicely */
  .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
  }

  .btn-call svg {
    display: block; /* prevents baseline misalignment */
    width: 18px;
    height: 18px;
  }

  /* In-drawer only — must beat .btn-call { display: inline-flex } */
  .btn-call.btn-call-in-menu {
    display: none;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* ── HERO BANNER ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(13,27,42,0.92) 40%, rgba(13,27,42,0.45) 100%),
      url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
    animation: panBg 30s ease-in-out infinite alternate;
  }

  @keyframes panBg {
    from { background-position: center top; }
    to { background-position: center bottom; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5vw;
    width: 100%;
    max-width: clamp(680px, 52vw, 1120px);
    animation: heroIn 1s ease forwards;
  }

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

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 108px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero p {
    font-size: clamp(16px, 1.15vw, 19px);
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: min(62ch, 100%);
  }

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

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    background: transparent;
    padding: 11px 24px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
  }

  .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
  }

  .hero-stats {
    position: absolute;
    right: 5vw;
    bottom: 60px;
    display: flex;
    gap: 32px;
    z-index: 2;
    animation: heroIn 1s 0.3s ease both;
  }

  .stat {
    text-align: right;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  .scroll-hint svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.4);
  }

  /* ── SEARCH BAR ── */
  .search-section {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: -40px auto 0;
    padding: 0 5vw;
  }

  .search-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
    box-shadow: 0 20px 60px rgba(13,27,42,0.18);
  }

  .search-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .search-field select,
  .search-field input {
    width: 100%;
    border: 1.5px solid #E5E0D8;
    border-radius: 10px;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--surface);
    outline: none;
    transition: border-color var(--transition);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .search-field select:focus,
  .search-field input:focus {
    border-color: var(--gold);
  }

  .search-btn {
    background: var(--deep);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .search-btn:hover {
    background: var(--mid);
    transform: translateY(-1px);
  }

  /* ── SECTION COMMON ── */
  section {
    padding: 100px 5vw;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 400;
    color: var(--deep);
    line-height: 1.15;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold-dark);
  }

  .section-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
  }

  /* ── FILTER TABS ── */
  .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .filter-tab {
    padding: 9px 22px;
    border-radius: 100px;
    border: 1.5px solid #DDD8CE;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
  }

  .filter-tab:hover,
  .filter-tab.active {
    background: var(--deep);
    border-color: var(--deep);
    color: var(--white);
  }

  /* ── PACKAGES GRID ── */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .package-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    position: relative;
  }

  .package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(13,27,42,0.13);
  }

  .card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
  }

  .package-card:hover .card-image img {
    transform: scale(1.07);
  }

  .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--deep);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .card-badge.hot { background: #E8523A; color: var(--white); }
  .card-badge.new { background: #2ECC71; color: var(--white); }
  .card-badge.sold { background: var(--text-muted); color: var(--white); }

  .card-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
  }

  .card-wishlist:hover {
    background: var(--white);
    transform: scale(1.1);
  }

  .card-wishlist svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    fill: none;
    transition: stroke var(--transition), fill var(--transition);
  }

  .card-wishlist:hover svg,
  .card-wishlist.liked svg {
    stroke: #E8523A;
    fill: #E8523A;
  }

  .card-body {
    padding: 22px 22px 20px;
  }

  .card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }

  .card-location svg {
    width: 13px;
    height: 13px;
    stroke: var(--gold-dark);
    flex-shrink: 0;
  }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--deep);
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .card-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
  }

  .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--text-muted);
  }

  .meta-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold-dark);
  }

  .card-divider {
    height: 1px;
    background: var(--surface2);
    margin-bottom: 16px;
  }

  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .card-price {
    display: flex;
    flex-direction: column;
  }

  .price-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2px;
  }

  .price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--deep);
    line-height: 1;
  }

  .price-value span {
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--text-muted);
  }

  .card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .stars {
    display: flex;
    gap: 2px;
  }

  .stars svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    stroke: none;
  }

  .rating-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 4px;
  }

  .card-book-btn {
    background: var(--deep);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
  }

  .card-book-btn:hover {
    background: var(--mid);
    transform: translateY(-1px);
  }

  /* ── WHY US SECTION ── */
  .why-us {
    background: var(--deep);
    padding: 90px 5vw;
  }

  .why-us .section-title { color: var(--white); }
  .why-us .section-eyebrow { color: var(--gold); }
  .why-us .section-sub { color: rgba(255,255,255,0.5); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 14px;
    padding: 30px 24px;
    transition: background var(--transition), border-color var(--transition);
  }

  .feature-card:hover {
    background: rgba(201,169,110,0.06);
    border-color: rgba(201,169,110,0.35);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,169,110,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
  }

  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
  }

  .feature-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--surface2);
    padding: 90px 5vw;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .testimonial-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px;
    transition: transform var(--transition), box-shadow var(--transition);
  }

  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(13,27,42,0.08);
  }

  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }

  .testimonial-stars svg {
    width: 15px;
    height: 15px;
    fill: var(--gold);
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--deep);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }

  .author-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
  }

  .author-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
  }

  .author-trip {
    font-size: 12px;
    color: var(--text-muted);
  }

  /* ── NEWSLETTER ── */
  .newsletter {
    background: linear-gradient(135deg, var(--deep2) 0%, var(--mid) 100%);
    padding: 80px 5vw;
    text-align: center;
  }

  .newsletter h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
  }

  .newsletter h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .newsletter p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
  }

  .newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 12px;
  }

  .newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
  }

  .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
  .newsletter-form input:focus { border-color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    padding: 60px 5vw 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 48px;
  }

  .footer-brand .logo { margin-bottom: 16px; }

  .footer-tagline {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 260px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 16px;
    transition: border-color var(--transition), color var(--transition);
    cursor: pointer;
    background: none;
  }

  .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

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

  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color var(--transition);
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
  }

  .footer-bottom a:hover { color: var(--gold); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .site-header {
      justify-content: space-between;
    }

    /* Logo hidden — burger takes its place */
    .logo {
      display: none;
    }

    .nav-toggle {
      display: flex;
      flex-shrink: 0;
    }

    .btn-call-header {
      flex-shrink: 1;
      min-width: 0;
      padding: 10px 14px;
      font-size: 12px;
    }

    .btn-call-header strong {
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 42vw;
      display: inline-block;
      vertical-align: bottom;
    }

    /* Slide-out menu panel (below header so burger stays tappable) */
    .site-nav {
      position: fixed;
      top: 72px;
      left: 0;
      z-index: 99;
      width: min(300px, 88vw);
      height: calc(100% - 72px);
      height: calc(100dvh - 72px);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 20px 24px 32px;
      background: var(--deep);
      border-right: 1px solid rgba(201, 169, 110, 0.2);
      box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
    }

    .site-nav.is-open {
      transform: translateX(0);
    }

    .mobile-nav-brand {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(201, 169, 110, 0.25);
    }

    .mobile-nav-brand span {
      color: var(--gold);
    }

    .site-nav a:not(.mobile-nav-brand):not(.btn-call-in-menu) {
      padding: 14px 0;
      font-size: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-nav a::after {
      display: none;
    }

    .btn-call.btn-call-in-menu {
      display: block;
      margin-top: 20px;
      text-align: center;
      width: 100%;
    }

    body.nav-open {
      overflow: hidden;
    }

    .search-bar { grid-template-columns: 1fr; }
    .hero-stats { position: relative; right: auto; bottom: auto; justify-content: flex-start; padding: 0 5vw; flex-wrap: wrap; gap: 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .newsletter-form { flex-direction: column; }
  }

  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
