    :root {
      --navy: #18324a;
      --blue: #2f6f8f;
      --pale-blue: #eaf5f9;
      --cream: #fffdf7;
      --green: #5d8b63;
      --text: #24313a;
      --muted: #61717b;
      --white: #ffffff;
      --shadow: 0 14px 40px rgba(24, 50, 74, 0.12);
      --radius: 22px;
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 3rem;
      --space-xl: 4.5rem;
    }
    [data-theme="dark"] {
       --navy: #edf3f7;
       --blue: #78bdea;
       --pale-blue: #17242f;
       --cream: #0f171d;
       --green: #82bd89;
       --text: #edf3f7;
       --muted: #b7c3cc;
       --white: #1b2730;
       --shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
}

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--cream);
      line-height: 1.6;
    }

    a {
      color: inherit;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--navy);
      color: var(--white);
      padding: 0.75rem 1rem;
      z-index: 1000;
    }

    .skip-link:focus {
      left: 1rem;
      top: 1rem;
    }

    header {
      background: var(--white);
      border-bottom: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .nav {
      max-width: 1120px;
      margin: 0 auto;
      min-height: 76px;
      padding: 0 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 800;
      font-size: 1.55rem;
      color: var(--navy);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--blue);
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 1.15rem;
      box-shadow: 0 6px 18px rgba(47, 111, 143, 0.25);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.25rem;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      font-weight: 700;
      color: var(--navy);
    }

    nav a:hover,
    nav a:focus {
      text-decoration: underline;
    }

    .hero {
      background:
        radial-gradient(circle at top right, rgba(93, 139, 99, 0.16), transparent 32%),
        linear-gradient(135deg, var(--pale-blue), var(--cream));
      padding: 5.5rem 1.25rem 4.5rem;
    }

    .hero-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 1rem;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: var(--white);
      color: var(--blue);
      font-weight: 800;
      box-shadow: var(--shadow);
    }

    h1 {
      font-size: clamp(2.6rem, 6vw, 5.2rem);
      line-height: 1.02;
      margin: 0 0 1.25rem;
      color: var(--navy);
      letter-spacing: -0.04em;
    }

    .hero p {
      font-size: 1.25rem;
      max-width: 660px;
      margin: 0 0 2rem;
      color: var(--muted);
    }

    .button-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .button {
      display: inline-block;
      padding: 0.9rem 1.25rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 800;
      border: 2px solid var(--blue);
    }

    .button-primary {
      background: var(--blue);
      color: var(--white);
    }

    .button-secondary {
      background: transparent;
      color: var(--blue);
    }

    .button:hover,
    .button:focus {
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(24, 50, 74, 0.14);
    }

    .map-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.25rem;
    }

    .map-placeholder {
      min-height: 330px;
      border-radius: 16px;
      background:
        linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
        repeating-linear-gradient(0deg, #d9ebdf 0 22px, #cfe4d6 22px 44px);
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
      color: var(--navy);
      text-align: center;
      padding: 2rem;
    }

    .map-placeholder::before,
    .map-placeholder::after {
      content: "";
      position: absolute;
      border-radius: 50% 50% 50% 0;
      width: 34px;
      height: 34px;
      background: var(--blue);
      transform: rotate(-45deg);
    }

    .map-placeholder::before {
      top: 25%;
      left: 30%;
    }

    .map-placeholder::after {
      bottom: 25%;
      right: 24%;
      background: var(--green);
    }

    .map-placeholder span {
      position: relative;
      z-index: 2;
      background: rgba(255,255,255,0.9);
      padding: 1rem 1.2rem;
      border-radius: 12px;
      font-weight: 800;
    }

    main section {
      main section {padding-inline: 1.25rem;}
    }

    .section-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 2rem;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.1;
      margin: 0 0 0.8rem;
      color: var(--navy);
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.1rem;
      margin: 0;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .card {
      background: var(--white);
      border-radius: 18px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
      border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
    }

    .card-icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .card h3 {
      margin: 0 0 0.55rem;
      color: var(--navy);
      font-size: 1.25rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .coming-soon {
      background: var(--navy);
      color: var(--white);
    }

    .coming-soon h2,
    .coming-soon p {
      color: var(--white);
    }

    .coming-box {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .coming-box p {
      max-width: 720px;
      font-size: 1.1rem;
      margin: 0;
      opacity: 0.9;
    }

    footer {
      background: #10283b;
      color: var(--white);
      padding: 2rem 1.25rem;
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    footer p {
      margin: 0;
      opacity: 0.9;
    }

    @media (max-width: 800px) {
      .hero-inner,
      .cards {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 3.5rem;
      }

      .nav {
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
      }

      nav ul {
        justify-content: flex-end;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 560px) {
      .nav {
        display: block;
      }

      nav ul {
        margin-top: 0.8rem;
        justify-content: flex-start;
      }

      .map-placeholder {
        min-height: 260px;
      }
    }

    [data-theme="dark"] .map-placeholder {
  background:
    linear-gradient(rgba(15, 23, 29, 0.3), rgba(15, 23, 29, 0.3)),
    repeating-linear-gradient(
      0deg,
      #28443a 0 22px,
      #223a32 22px 44px
    );
}

[data-theme="dark"] .map-placeholder span {
  background: rgba(27, 39, 48, 0.92);
  color: var(--text);
}

.theme-toggle {
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--blue);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.theme-toggle:hover {
    background: var(--blue);
    color: var(--white);
}

.preferences-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: min(340px, 90vw);
    height: 100vh;
    background: var(--cream);
    color: var(--text);
    padding: 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease;
}

.preferences-panel.open {
    right: 0;
}

.preferences-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preferences-header h2 {
    margin: 0;
}

#closePreferences {
    background: transparent;
    color: var(--text);
    border: 0;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.preferences-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preferences-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.preferences-panel {
    overflow-y: auto;
}

.preferences-intro {
    margin: 0.25rem 0;
    font-size: 1.05rem;
}

.preferences-note {
    margin: 0 0 1.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.preferences-panel hr {
    border: 0;
    border-top: 1px solid rgba(97, 113, 123, 0.25);
    margin: 1.4rem 0;
}

.preferences-section h3 {
    margin: 0 0 0.9rem;
    color: var(--navy);
}

.preferences-section label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem 0;
    cursor: pointer;
}

.preferences-section input {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--blue);
}

.preferences-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(97, 113, 123, 0.25);
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.preferences-footer p {
    margin: 0.5rem 0;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.85rem;
}

html.larger-text {
    font-size: 112.5%;
}

html.reduced-motion *,
html.reduced-motion *::before,
html.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

.location-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.statistic {
    padding: 0.85rem 0.65rem;
    border: 1px solid rgba(120, 195, 239, 0.25);
    border-radius: 0.75rem;
    text-align: center;
    background: rgba(120, 195, 239, 0.06);
}

.statistic strong {
    display: block;
    color: var(--blue);
    font-size: 1.4rem;
    line-height: 1.2;
}

.statistic span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .location-statistics {
        grid-template-columns: repeat(2, 1fr);
    }
}

.locations-section {
    padding: 4rem 1.5rem;
}

.locations-section,
.section-heading {
    max-width: 1100px;
    margin-inline: auto;
}

.section-heading {
    margin-bottom: 1.75rem;
}

.section-heading h2 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.destination-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 850px) {
    .destination-cards {
        grid-template-columns: 1fr;
    }
}

.location-card {
    padding: 1.5rem;
    border: 1px solid rgba(120, 195, 239, 0.25);
    border-radius: 1rem;
    background: var(--card-background);
}

.location-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
}

.location-place {
    margin: 0 0 1rem;
    color: var(--muted);
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.location-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(120, 195, 239, 0.1);
    font-size: 1.1rem;
}

.location-booking {
    margin: 1rem 0;
    font-weight: 700;
}

.location-link {
    display: inline-block;
    padding: 0.7rem 1rem;
    border: 2px solid var(--blue);
    border-radius: 0.65rem;
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.editors-pick-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

.editors-pick-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid color-mix(
        in srgb,
        var(--text) 12%,
        transparent
    );
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.editors-pick-image-wrap {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    background: var(--pale-blue);
}

.editors-pick-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editors-pick-label {
    margin: 0 0 0.75rem;
    color: var(--blue);
    font-weight: 800;
}

.editors-pick-content h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.1;
}

.editors-note {
    margin: 1rem 0;
    color: var(--muted);
    font-size: 1.05rem;
}

@media (max-width: 760px) {
    .editors-pick-card {
        grid-template-columns: 1fr;
    }
}

.editors-pick-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
    display: block;
}

/* Consistent homepage spacing */

.editors-pick-section,
.locations-section {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

/* Space above and below each main section */
.editors-pick-section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
}

.locations-section {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-xl);
}

/* Keep headings connected to their content */
.editors-pick-section > .section-heading,
.locations-section > .section-heading {
    margin-bottom: var(--space-md);
}

/* Remove stray heading margins */
.editors-pick-section .section-heading h2,
.locations-section .section-heading h2 {
    margin: 0;
}

/* Card should sit neatly beneath the heading */
#editors-pick,
.location-cards {
    margin-top: 0;
}

/* Avoid old section rules adding extra vertical space */
main .editors-pick-section,
main .locations-section {
    margin-block: 0;
}

.location-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(120, 195, 239, 0.25);
    border-radius: 1rem;
    background: var(--white);
}

.destination-card-image-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pale-blue);
}

.destination-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-card-content {
    padding: 1.25rem;
}

.destination-card-content h3 {
    margin-top: 0;
}