:root {
    --cream: #f5f0e8;
    --warm-white: #faf7f2;
    --sand: #e8dcc8;
    --amber: #c8813a;
    --deep-amber: #9e5f20;
    --teal: #2a6b8a;
    --deep-teal: #1a4a63;
    --ice: #d6eef5;
    --ice-dark: #a8d4e6;
    --charcoal: #2c2c2c;
    --mid-grey: #5a5a5a;
    --light-grey: #8a8a8a;
    --section-bg: #f7f3ec;
    --card-bg: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(42,107,138,0.10);
    --shadow-lg: 0 8px 40px rgba(42,107,138,0.16);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.75;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(26,74,99,0.97);
    backdrop-filter: blur(8px);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .nav-logo svg { flex-shrink: 0; }

  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--ice);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--amber); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all .3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--deep-teal);
    position: fixed;
    top: 64px; left: 0; right: 0;
    z-index: 99;
    padding: 1rem 2rem 1.5rem;
    gap: 0.8rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--ice);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--amber); }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-home.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.55);
    z-index: 0;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,74,99,0.35) 0%, rgba(10,30,45,0.65) 100%);
    z-index: 1;
  }
  .hero-content { position: relative; z-index: 2; max-width: 780px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200,129,58,0.22);
    border: 1px solid rgba(200,129,58,0.5);
    color: #f5c98a;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.32rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }

  .hero-slogan {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    color: #f5c98a;
    margin-bottom: 1.4rem;
    letter-spacing: 0.04em;
  }

  .hero-intro {
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin: 0 auto 2.2rem;
    line-height: 1.8;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all .25s;
    cursor: pointer;
    border: none;
    text-align: center;
  }
  .btn-primary {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 4px 18px rgba(200,129,58,0.38);
  }
  .btn-primary:hover {
    background: var(--deep-amber);
    box-shadow: 0 6px 24px rgba(200,129,58,0.48);
    transform: translateY(-2px);
  }
  .btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
  }
  .btn-outline:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
  }
  .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.65);
  }
  .btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
  }
  .btn-teal {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 18px rgba(42,107,138,0.30);
  }
  .btn-teal:hover {
    background: var(--deep-teal);
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--mid-grey);
    border: 1.5px solid var(--sand);
    font-size: 0.85rem;
    padding: 0.58rem 1.7rem;
    box-shadow: none;
  }
  .btn-ghost:hover {
    background: var(--ice);
    color: var(--teal);
    border-color: var(--ice-dark);
    transform: translateY(-2px);
  }

  /* ── SECTIONS ── */
  section { padding: 5rem 1.5rem; }

  .container { max-width: 1080px; margin: 0 auto; }

  .section-label {
    display: inline-block;
    color: var(--teal);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-body);
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-intro {
    font-size: 1.02rem;
    color: var(--mid-grey);
    max-width: 640px;
    line-height: 1.85;
  }

  .text-center { text-align: center; }
  .text-center .section-intro { margin: 0 auto; }

  /* ── ADVANTAGES / CARDS (reused for Quick Info chips, Highlights, Why Choose) ── */
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .adv-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    border-top: 4px solid var(--teal);
  }
  .adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .adv-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice), var(--ice-dark));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.7rem;
  }
  .adv-card h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
  }
  .adv-card p { font-size: 0.93rem; color: var(--mid-grey); line-height: 1.75; }

  /* ── HISTORY / ABOUT (image + text) ── */
  #history, #about, #map-overview { background: var(--deep-teal); color: #fff; }
  #history .section-label, #about .section-label, #map-overview .section-label { color: var(--ice-dark); }
  #history .section-title, #about .section-title, #map-overview .section-title { color: #fff; }
  #history .section-intro, #about .section-intro, #map-overview .section-intro { color: rgba(255,255,255,0.78); max-width: 860px; }

  /* ── MAP OVERVIEW (continuation of About) ── */
  #map-overview { padding-top: 0; }
  .map-overview-img {
    margin: 3rem auto 0;
    max-width: 1080px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .map-overview-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s;
  }
  .map-overview-img:hover img { transform: scale(1.02); }

  /* ── ABOUT SLIDESHOW (Discover Nuuk Fjord By Boat) ── */
  .history-media { display: flex; flex-direction: column; gap: 0.9rem; }
  .slideshow { position: relative; width: 100%; height: 100%; }
  .slide-track { position: relative; width: 100%; height: 100%; }
  .history-img .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1s ease, transform .4s;
    pointer-events: none;
  }
  .history-img .slide.active { opacity: 1; pointer-events: auto; }
  .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(10,30,45,0.45);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .25s, background .2s;
    z-index: 3;
  }
  .slideshow:hover .slide-arrow { opacity: 1; }
  .slide-arrow:hover { background: rgba(10,30,45,0.72); }
  .slide-arrow.prev { left: 12px; }
  .slide-arrow.next { right: 12px; }
  .slide-dots { display: flex; justify-content: center; gap: 0.5rem; }
  .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--ice-dark);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .25s, transform .25s;
  }
  .dot.active { background: var(--amber); transform: scale(1.25); }
  @media (hover: none) {
    .slide-arrow { display: none; }
  }
  .history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
  }
  .history-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
  }
  .history-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
  }
  .history-img:hover img { transform: scale(1.04); }
  .history-text p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 1.2rem;
    line-height: 1.85;
  }
  .history-text p:first-child { margin-top: 0; }

  /* ── TOURS / LARGE IMAGE+TEXT (reused for What You'll See) ── */
  #tours, #see { background: var(--warm-white); }
  .tours-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 4rem; }
  .tour-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .25s;
  }
  .tour-block:hover { box-shadow: var(--shadow-lg); }
  .tour-block.reverse { direction: rtl; }
  .tour-block.reverse > * { direction: ltr; }
  .tour-img {
    height: 340px;
    overflow: hidden;
  }
  .tour-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
  }
  .tour-block:hover .tour-img img { transform: scale(1.04); }
  .tour-copy {
    padding: 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .tour-copy h2, .tour-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--charcoal);
    line-height: 1.2;
  }
  .tour-copy p {
    font-size: 0.97rem;
    color: var(--mid-grey);
    line-height: 1.85;
  }
  .tour-copy ul { margin: 0; padding-left: 1.2rem; color: var(--mid-grey); font-size: 0.95rem; line-height: 1.9; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    border-radius: 14px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem auto 0;
    max-width: 820px;
  }
  .cta-banner h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 0.6rem;
  }
  .cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 1.8rem; font-size: 0.97rem; }
  .cta-btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ── DARK CTA SECTION ── */
  #cta-final { background: var(--deep-teal); }

  /* ── INLINE CTAs (between sections) ── */
  .inline-cta { padding: 1rem 1.5rem 2rem; text-align: center; }
  .inline-cta.dark { background: var(--deep-teal); }

  /* Tighter transition out of the map sections specifically — their default
     5rem bottom padding plus .inline-cta's own top padding was creating an
     oversized gap above the CTA buttons that follow them. */
  #map, #map-overview { padding-bottom: 1.5rem; }

  /* ── FAQ ── */
  #faq { background: var(--section-bg); }
  .faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; max-width: 820px; margin-left: auto; margin-right: auto; }
  .faq-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--sand);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--charcoal);
    text-align: left;
    gap: 1rem;
    transition: background .2s;
  }
  .faq-question:hover { background: var(--ice); }
  .faq-question.open { background: var(--teal); color: #fff; }
  .faq-arrow {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--ice);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: var(--teal);
    transition: transform .3s, background .2s;
  }
  .faq-question.open .faq-arrow {
    transform: rotate(180deg);
    background: rgba(255,255,255,0.2);
    color: #fff;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    padding: 0 1.5rem;
  }
  .faq-answer.open {
    max-height: 400px;
    padding: 1.1rem 1.5rem 1.4rem;
  }
  .faq-answer p { font-size: 0.94rem; color: var(--mid-grey); line-height: 1.85; }
  .faq-answer a { color: var(--teal); text-decoration: underline; }

  /* ── REVIEWS ── */
  #reviews { background: var(--warm-white); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 3rem;
  }
  .review-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--teal);
    transition: transform .25s, box-shadow .25s;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .review-stars { color: #e8a020; font-size: 0.9rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
  .review-text {
    font-size: 0.93rem;
    color: var(--mid-grey);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.2rem;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ice-dark);
  }
  .review-avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  .review-name { font-family: var(--font-display); font-size: 0.92rem; color: var(--charcoal); font-weight: 600; }
  .review-location { font-size: 0.78rem; color: var(--light-grey); }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.75);
    padding: 4rem 1.5rem 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-logo-block .nav-logo { margin-bottom: 1rem; font-size: 1.35rem; }
  .footer-logo-block p { font-size: 0.88rem; line-height: 1.75; }
  .footer-col h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
  .footer-col ul a:hover { color: var(--amber); }
  .footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.8; }
  .footer-col address a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; }
  .footer-col address a:hover { color: var(--amber); }
  .footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
  }
  .footer-cta-strip {
    background: var(--amber);
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .footer-cta-strip p {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  /* ── DIVIDER ── */
  .divider { width: 60px; height: 3px; background: var(--amber); margin: 1rem auto 0; border-radius: 3px; }
  .divider-left { margin-left: 0; }

  /* ── QUICK INFO ── */
  #quick-info { background: var(--section-bg); padding: 3.5rem 1.5rem; }
  .quick-info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    max-width: 1080px;
    margin: 0 auto;
  }
  .info-chip {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    border-top: 3px solid var(--amber);
  }
  .info-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .info-chip-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice), var(--ice-dark));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.7rem;
    font-size: 1.3rem;
  }
  .info-chip h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
  }
  .info-chip p { font-size: 0.8rem; color: var(--mid-grey); line-height: 1.5; }

  /* ── HIGHLIGHTS ── */
  #highlights { background: var(--warm-white); }
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  /* ── ITINERARY (timeline) ── */
  #itinerary { background: var(--section-bg); }
  .itinerary {
    margin-top: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 2.6rem;
  }
  .itinerary::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--ice-dark);
  }
  .itinerary-item {
    position: relative;
    padding-bottom: 2.2rem;
  }
  .itinerary-item:last-child { padding-bottom: 0; }
  .itinerary-dot {
    position: absolute;
    left: -2.6rem;
    top: 2px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--card-bg);
    box-shadow: 0 0 0 2px var(--ice-dark);
  }
  .itinerary-item.start .itinerary-dot,
  .itinerary-item.end .itinerary-dot { background: var(--amber); box-shadow: 0 0 0 2px var(--sand); }
  .itinerary-item h4 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
  }
  .itinerary-item p { font-size: 0.93rem; color: var(--mid-grey); line-height: 1.75; }

  /* ── MAP ── */
  #map { background: var(--warm-white); }
  .map-frame {
    margin-top: 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
  .map-frame a { display: block; width: 100%; line-height: 0; }
  .map-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s;
  }
  .map-frame:hover img { transform: scale(1.03); }
  .map-cta { margin-top: 24px; text-align: center; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .advantages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .highlights-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .quick-info-grid { grid-template-columns: repeat(2, 1fr); max-width: 520px; margin-left: auto; margin-right: auto; }
    .history-grid { grid-template-columns: 1fr; }
    .history-img { aspect-ratio: 16/7; }
    .tour-block, .tour-block.reverse { grid-template-columns: 1fr; direction: ltr; }
    .tour-img { height: 240px; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { justify-content: center; text-align: center; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .text-center,
    .hero-content,
    .hero-title,
    .hero-slogan,
    .hero-intro,
    .tour-copy,
    .tour-copy h2,
    .tour-copy h3,
    .tour-copy p,
    .adv-card,
    .faq-question,
    .review-card,
    .info-chip { text-align: center; }
    .cta-btn-group { flex-direction: column; align-items: center; }
    .divider-left { margin-left: auto; }
    .tour-copy { align-items: center; }
    .section-intro { text-align: center; }
    .quick-info-grid { grid-template-columns: 1fr; }
    .itinerary { padding-left: 2.2rem; }
  }
