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

    :root {
      --navy: #1a2e4a;
      --teal: #2a7f8f;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #fdf8f2;
      --text: #2d2d2d;
      --text-light: #666;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      background: var(--white);
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 5%;
      background: rgba(26, 46, 74, 0.95);
      backdrop-filter: blur(8px);
      transition: background 0.3s;
    }

    .nav-brand {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      line-height: 1.1;
    }

    .nav-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 2px solid var(--gold);
      flex-shrink: 0;
    }

    .nav-brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .nav-brand .brand-main {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .nav-brand .brand-sub {
      color: rgba(255,255,255,0.65);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 0.45rem 1.1rem;
      border-radius: 3px;
      font-weight: 600 !important;
    }

    .nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

    /* ── HERO ── */
    #hero {
      height: 100vh;
      min-height: 600px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1559494007-9f5847c49d94?w=1600&auto=format&fit=crop&q=80');
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      animation: heroZoom 18s ease-in-out infinite alternate;
    }

    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.12); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(26,46,74,0.55) 0%, rgba(26,46,74,0.72) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 1rem;
      max-width: 800px;
    }

    .hero-eyebrow {
      color: var(--gold-light);
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .hero-content h1 {
      color: var(--white);
      font-size: clamp(2.4rem, 6vw, 4rem);
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }

    .hero-content h1 span { color: var(--gold-light); }

    .hero-content p {
      color: rgba(255,255,255,0.88);
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 0.85rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }

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

    .btn-outline {
      border: 2px solid rgba(255,255,255,0.7);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255,255,255,0.6);
      font-size: 1.3rem;
      animation: bounce 2s infinite;
    }

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

    /* ── SECTION SHARED ── */
    section { padding: 5.5rem 5%; }

    .section-label {
      color: var(--teal);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--text-light);
      font-size: 1rem;
      line-height: 1.75;
      max-width: 580px;
    }

    .section-header { margin-bottom: 3.5rem; }

    .section-header.centered {
      text-align: center;
    }

    .section-header.centered .section-sub {
      margin: 0 auto;
    }

    .divider {
      width: 50px;
      height: 3px;
      background: var(--gold);
      margin: 1rem 0 1.25rem;
    }

    .divider.centered { margin: 1rem auto 1.25rem; }

    /* ── ABOUT ── */
    #about {
      background: var(--cream);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: 4px;
      display: block;
    }

    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--navy);
      color: var(--white);
      padding: 1.5rem;
      border-radius: 4px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .about-badge .badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: var(--gold-light);
      font-weight: 700;
      line-height: 1;
    }

    .about-badge .badge-text {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      margin-top: 0.3rem;
    }

    .about-text { padding-right: 1rem; }

    .about-text p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 1.25rem;
      font-size: 0.97rem;
    }

    .about-perks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin: 1.75rem 0 2rem;
    }

    .perk {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--text);
    }

    .perk i { color: var(--gold); font-size: 0.9rem; }

    /* ── SERVICES ── */
    #services { background: var(--white); }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .service-card {
      flex: 1 1 230px;
      max-width: 280px;
      border: 1px solid #e8e8e8;
      border-radius: 6px;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    }

    .service-img {
      height: 180px;
      background-size: cover;
      background-position: center;
    }

    .service-body {
      padding: 1.25rem;
    }

    .service-icon {
      width: 42px;
      height: 42px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.85rem;
    }

    .service-icon i { color: var(--gold-light); font-size: 1rem; }

    .service-body h3 {
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .service-body p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* ── DESTINATIONS ── */
    #destinations { background: var(--cream); }

    .dest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 260px 260px;
      gap: 1rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .dest-card {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .dest-card:first-child {
      grid-row: 1 / 3;
    }

    .dest-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
      display: block;
    }

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

    .dest-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,46,74,0.85) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem;
    }

    .dest-overlay h3 {
      color: var(--white);
      font-size: 1.2rem;
    }

    .dest-overlay span {
      color: var(--gold-light);
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .dest-explore {
      color: var(--gold-light);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 0.4rem;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.25s, transform 0.25s;
    }

    .dest-card:hover .dest-explore { opacity: 1; transform: translateY(0); }

    /* ── WHY US ── */
    #why {
      background: var(--navy);
      text-align: center;
    }

    #why .section-title { color: var(--white); }
    #why .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto; }
    #why .section-label { color: var(--gold-light); }
    #why .divider { background: var(--gold); margin: 1rem auto 1.25rem; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2.5rem;
      max-width: 1000px;
      margin: 3.5rem auto 0;
    }

    .why-item { padding: 0 0.5rem; }

    .why-icon {
      width: 64px;
      height: 64px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
    }

    .why-icon i { color: var(--gold-light); font-size: 1.4rem; }

    .why-item h3 {
      color: var(--white);
      font-size: 1rem;
      margin-bottom: 0.6rem;
    }

    .why-item p {
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
      line-height: 1.7;
    }

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

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.75rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--cream);
      border-radius: 6px;
      padding: 2rem;
      border-left: 4px solid var(--gold);
    }

    .stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.85rem; }

    .testimonial-card blockquote {
      font-size: 0.93rem;
      color: var(--text);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.25rem;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .reviewer-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .reviewer-name {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--navy);
    }

    .reviewer-trip {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    /* ── CONTACT ── */
    #contact { background: var(--cream); }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 1000px;
      margin: 0 auto;
      align-items: start;
    }

    .contact-info p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 2rem;
      font-size: 0.95rem;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      font-size: 0.9rem;
      color: var(--text);
    }

    .contact-detail i {
      color: var(--gold);
      width: 18px;
      text-align: center;
    }

    .contact-detail a {
      color: var(--text);
      text-decoration: none;
    }

    .contact-detail a:hover { color: var(--teal); }

    .social-links {
      display: flex;
      gap: 0.75rem;
    }

    .social-link {
      width: 38px;
      height: 38px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      font-size: 0.9rem;
      transition: background 0.2s, transform 0.2s;
    }

    .social-link:hover { background: var(--teal); transform: translateY(-2px); }

    .contact-form {
      background: var(--white);
      padding: 2.25rem;
      border-radius: 6px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

    .contact-form h3 {
      color: var(--navy);
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }

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

    .form-group {
      margin-bottom: 1.1rem;
    }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.4rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.7rem 0.9rem;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }

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

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

    .form-submit {
      width: 100%;
      background: var(--navy);
      color: var(--white);
      border: none;
      padding: 0.9rem;
      border-radius: 4px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      margin-top: 0.5rem;
    }

    .form-submit:hover { background: var(--teal); transform: translateY(-1px); }

    .form-success {
      text-align: center;
      padding: 2.5rem 1rem;
    }
    .form-success i { font-size: 2.5rem; color: var(--teal); margin-bottom: 1rem; display: block; }
    .form-success h3 { color: var(--navy); margin-bottom: 0.5rem; }
    .form-success p { color: var(--text-light); font-size: 0.9rem; }

    /* ── FOOTER ── */
    footer {
      background: #111c2d;
      color: rgba(255,255,255,0.55);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.82rem;
      line-height: 1.8;
    }

    footer strong { color: var(--gold-light); }

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

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

    /* ── DEALS ── */
    @keyframes sectionPulse {
      0%, 100% { background: var(--navy); }
      50%       { background: #22395c; }
    }

    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.7); }
      50%       { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
    }

    @keyframes navDot {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }

    #deals { background: var(--navy); animation: sectionPulse 3s ease-in-out infinite; }
    #deals .section-title { color: var(--white); }
    #deals .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto; }
    #deals .section-label { color: var(--gold-light); }
    #deals .divider { background: var(--gold); }

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

    .deal-card {
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0,0,0,0.25);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s;
    }

    .deal-card:hover { transform: translateY(-4px); }

    .deal-img {
      height: 190px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .deal-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--gold);
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 20px;
      animation: badgePulse 1.5s ease-out infinite;
    }

    .nav-deals-dot::before {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      background: #e53935;
      border-radius: 50%;
      margin-right: 5px;
      vertical-align: middle;
      animation: navDot 1s ease-in-out infinite;
    }

    .deal-body {
      padding: 1.4rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .deal-destination {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .deal-body h3 {
      color: var(--navy);
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }

    .deal-body p {
      color: var(--text-light);
      font-size: 0.87rem;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1rem;
    }

    .deal-pricing {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.85rem;
    }

    .deal-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: var(--navy);
      font-weight: 700;
    }

    .deal-savings {
      background: #e8f5e9;
      color: #2e7d32;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
    }

    .deal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 0.85rem;
      border-top: 1px solid #eee;
      margin-top: auto;
    }

    .deal-expiry {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gold);
    }

    .deal-expiry.urgent { color: #e53935; }

    .deal-expiry i { margin-right: 0.3rem; }

    .deal-cta {
      background: var(--navy);
      color: var(--white);
      padding: 0.5rem 1.1rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.2s;
    }

    .deal-cta:hover { background: var(--teal); }

    /* ── SUB-PAGE HERO ── */
    .subpage-hero {
      height: 60vh;
      min-height: 420px;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-top: 80px;
    }

    .subpage-hero .hero-bg {
      animation: none;
    }

    .subpage-hero .hero-overlay {
      background: linear-gradient(to bottom, rgba(26,46,74,0.35) 0%, rgba(26,46,74,0.82) 100%);
    }

    .subpage-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 5% 3.5rem;
    }

    .breadcrumb {
      color: rgba(255,255,255,0.65);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
    }

    .breadcrumb a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

    .subpage-hero-content h1 {
      color: var(--white);
      font-size: clamp(2rem, 5vw, 3.4rem);
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }

    .subpage-hero-content .hero-eyebrow {
      margin-bottom: 0.6rem;
    }

    .subpage-hero-content p {
      color: rgba(255,255,255,0.85);
      font-size: 1rem;
      font-weight: 300;
      max-width: 580px;
      line-height: 1.75;
    }

    /* ── SPOTS GRID ── */
    #spots { background: var(--cream); }

    .spots-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.75rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .spot-card {
      flex: 1 1 290px;
      max-width: 340px;
      background: var(--white);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
    }

    .spot-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    }

    .spot-img {
      height: 200px;
      background-size: cover;
      background-position: center;
    }

    .spot-body {
      padding: 1.35rem 1.35rem 1.6rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .spot-body h3 {
      color: var(--navy);
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
    }

    .spot-body p {
      color: var(--text-light);
      font-size: 0.875rem;
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.25rem;
    }

    .spot-cta {
      display: inline-block;
      background: var(--navy);
      color: var(--white);
      padding: 0.55rem 1.25rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      align-self: flex-start;
      transition: background 0.2s, transform 0.15s;
    }

    .spot-cta:hover { background: var(--teal); transform: translateY(-1px); }

    /* ── BACK STRIP ── */
    .back-strip {
      background: var(--navy);
      text-align: center;
      padding: 3rem 5%;
    }

    .back-strip p {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      margin-bottom: 1.25rem;
      font-family: 'Playfair Display', serif;
    }

    .back-strip .btn-outline {
      margin-left: 1rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-inner,
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-image { display: none; }
      .dest-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .dest-card:first-child { grid-row: auto; }
      .spots-grid { gap: 1.25rem; }
    }

    @media (max-width: 640px) {
      .nav-links { display: none; }
      .dest-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .about-perks { grid-template-columns: 1fr; }
      .spots-grid { gap: 1rem; }
      .back-strip .btn-outline { margin-left: 0; margin-top: 0.75rem; display: block; width: fit-content; margin: 0.75rem auto 0; }
    }
