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

  :root {
    --forest: #1a2e1c;
    --moss: #2d4a2f;
    --fern: #3d6b40;
    --leaf: #5a8f5d;
    --mist: #a8c9aa;
    --cream: #f5f0e8;
    --sand: #e8dfc8;
    --gold: #c8a04a;
    --amber: #d4834a;
    --bark: #6b4c35;
    --white: #fdfcf8;
    --ink: #1a1a18;
    --gray: #5c5c58;
    --light-gray: #e0dbd0;
  }

  html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(26,46,28,0.95);
    backdrop-filter: blur(12px);
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    left: 0;
    transition: transform 0.3s ease;
  }
  .nav-toggle span::before { transform: translateY(-6px); }
  .nav-toggle span::after { transform: translateY(6px); }
  .nav-open .nav-toggle span { background: transparent; }
  .nav-open .nav-toggle span::before { transform: rotate(45deg); }
  .nav-open .nav-toggle span::after { transform: rotate(-45deg); }
  .nav-open .nav-links { display: flex; }
  .nav-open .nav-links li { width: 100%; }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); letter-spacing: -0.01em;
    text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .nav-logo span { color: var(--gold); font-style: italic; }
  .nav-logo-img {
    width: 28px; height: 28px;
    object-fit: contain; flex-shrink: 0;
  }
  .footer-logo-img {
    width: 52px; height: 52px;
    object-fit: contain; margin-bottom: 0.75rem;
    display: block;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.875rem; font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--forest) !important;
    padding: 0.6rem 1.5rem; border-radius: 2px;
    font-weight: 500 !important; letter-spacing: 0.04em !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--cream) !important; color: var(--forest) !important; }

  /* ── HERO ── */
  .hero {
    height: 100vh; min-height: 700px;
    position: relative; display: flex; align-items: flex-end;
    padding: 0 3rem 5rem;
    background: var(--forest);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(10,25,12,0.85) 100%),
      url('../images/DSC09472.webp') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
  }
  .hero-content { position: relative; z-index: 1; max-width: 800px; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: var(--gold); font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 40px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900; line-height: 0.95;
    color: var(--white); margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  .hero h1 em { font-style: italic; color: var(--mist); }
  .hero-desc {
    color: rgba(255,255,255,0.7); font-size: 1.1rem;
    font-weight: 300; max-width: 480px; line-height: 1.7;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; align-items: center; }
  .btn-primary {
    background: var(--gold); color: var(--forest);
    padding: 1rem 2.5rem; font-size: 0.875rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    border: none; cursor: pointer; text-decoration: none;
    border-radius: 2px; transition: all 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--cream); transform: translateY(-1px); }
  .btn-ghost {
    color: var(--white); font-size: 0.875rem;
    font-weight: 400; letter-spacing: 0.06em;
    text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
    transition: gap 0.2s;
  }
  .btn-ghost:hover { gap: 0.9rem; }
  .btn-ghost svg { width: 18px; height: 18px; }
  .hero-scroll {
    position: absolute; right: 3rem; bottom: 5rem; z-index: 1;
    writing-mode: vertical-lr; text-orientation: mixed;
    color: rgba(255,255,255,0.4); font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-scroll::after {
    content: ''; width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.6); }
  }

  /* ── INTRO STRIP ── */
  .intro-strip {
    background: var(--forest);
    padding: 2rem 3rem;
    display: flex; gap: 3rem; justify-content: center; align-items: center;
    flex-wrap: wrap;
  }
  .strip-stat { text-align: center; color: var(--white); }
  .strip-stat span { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); font-weight: 400; }
  .strip-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

  /* ── SECTION SHARED ── */
  section { padding: 7rem 3rem; }
  .section-label {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: var(--fern); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: ''; display: block;
    width: 30px; height: 1px; background: var(--fern);
  }
  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.02em; color: var(--forest);
    margin-bottom: 1.5rem;
  }
  h2.section-title em { font-style: italic; color: var(--fern); }

  /* ── ABOUT ── */
  .about { background: var(--cream); }
  .about-intro {
    max-width: 1200px; margin: 0 auto 5rem; text-align: center;
  }
  .about-intro p {
    color: var(--gray); font-size: 1.05rem; line-height: 1.8;
    font-weight: 300; max-width: 680px; margin: 0 auto;
  }
  .team-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  }
  .team-card {
    background: var(--white); border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,46,28,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,46,28,0.14);
  }
  .team-photo {
    width: 100%; height: 340px; object-fit: cover;
    object-position: center top; display: block;
  }
  .team-photo-alex { object-position: center 35%; }
  .team-body { padding: 2rem 2.2rem 2.4rem; }
  .team-role {
    display: inline-block; font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--fern); margin-bottom: 0.5rem;
  }
  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem; font-weight: 800; color: var(--forest);
    line-height: 1.1; margin-bottom: 1rem;
  }
  .team-name em { font-style: italic; color: var(--fern); }
  .team-origin {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: var(--gray); letter-spacing: 0.04em;
    margin-bottom: 1.2rem; font-weight: 400;
  }
  .team-origin svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
  .team-desc {
    color: var(--gray); font-size: 0.95rem; line-height: 1.85;
    font-weight: 300; border-top: 1px solid var(--light-gray);
    padding-top: 1.2rem;
  }
  @media (max-width: 900px) {
    .team-grid { grid-template-columns: 1fr; }
  }

  /* ── TOURS ── */
  .tours { background: var(--white); }
  .tours-header { max-width: 1200px; margin: 0 auto 4rem; display: flex; justify-content: space-between; align-items: flex-end; }
  .tours-desc {
    max-width: 400px;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
  }
  .tours-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto;
    gap: 2px;
  }
  .tour-card {
    position: relative; aspect-ratio: 3/4;
    overflow: hidden; cursor: pointer;
    background: var(--forest);
  }
  .tour-card:first-child { grid-column: 1; grid-row: 1 / span 4; aspect-ratio: auto; }
  .tour-card:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
  .tour-card:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
  .tour-card:nth-child(4) { grid-column: 2; grid-row: 3 / span 2; }
  .tour-card:nth-child(5) { grid-column: 3; grid-row: 3 / span 2; }
  .tour-card img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.75);
  }
  .tour-card:hover img { transform: scale(1.05); filter: brightness(0.55); }
  .tour-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem; background: linear-gradient(to top, rgba(10,25,12,0.9) 0%, transparent 60%);
  }
  .tour-tag {
    display: inline-block; background: var(--gold); color: var(--forest);
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 1px;
    margin-bottom: 0.75rem; width: fit-content;
  }
  .tour-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--white);
    line-height: 1.2; margin-bottom: 0.5rem;
  }
  .tour-card:first-child .tour-name { font-size: 2rem; }
  .tour-meta {
    display: flex; gap: 1.5rem;
    font-size: 0.75rem; color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
  }
  .tour-meta span { display: flex; align-items: center; gap: 0.4rem; }
  .tour-meta svg { width: 14px; height: 14px; }
  .tour-action {
    position: absolute; top: 1.5rem; right: 1.5rem;
    opacity: 0; transition: opacity 0.3s;
  }
  .tour-card:hover .tour-action { opacity: 1; }
  .tour-btn {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--white); border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1.2rem; font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
    border-radius: 1px; text-decoration: none; display: inline-block;
  }
  .tour-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

  /* ── EXPERIENCE ── */
  .experience { background: var(--forest); overflow: hidden; position: relative; }
  .experience::before {
    content: 'NATURALEZA';
    position: absolute; top: -2rem; right: -2rem;
    font-family: 'Playfair Display', serif;
    font-size: 14rem; font-weight: 900;
    color: rgba(255,255,255,0.03); pointer-events: none;
    white-space: nowrap; letter-spacing: -0.05em;
  }
  .experience .section-label::before {
    background: transparent;
  }
  .exp-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .exp-features { list-style: none; }
  .exp-feature {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .exp-feature:last-child { border-bottom: none; }
  .exp-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(200,160,74,0.15); border: 1px solid rgba(200,160,74,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gold);
  }
  .exp-icon svg { width: 22px; height: 22px; }
  .exp-feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--white);
    margin-bottom: 0.4rem;
  }
  .exp-feature p { color: rgba(255,255,255,0.5); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }
  .exp-image {
    position: relative;
  }
  .exp-image img {
    width: 100%; height: 550px; object-fit: cover;
    border-radius: 2px;
  }
  .exp-quote {
    position: absolute; bottom: -2rem; left: -2rem;
    background: var(--gold); padding: 2rem;
    max-width: 280px; border-radius: 2px;
  }
  .exp-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1rem;
    color: var(--forest); line-height: 1.5;
    margin-bottom: 0.75rem;
  }
  .exp-quote cite { font-size: 0.75rem; color: var(--bark); letter-spacing: 0.05em; text-transform: uppercase; }

  /* ── GALLERY ── */
  .gallery { background: var(--ink); padding: 7rem 0; }
  .gallery-header { padding: 0 3rem; max-width: 1200px; margin: 0 auto 3rem; display: flex; justify-content: space-between; align-items: flex-end; }
  .gallery-header .section-label::before { background: var(--gold); }
  .gallery-header .section-label { color: var(--gold); }
  .gallery-header h2.section-title { color: var(--white); }
  .gallery-header h2.section-title em { color: var(--mist); }
  .gallery-scroll {
    display: flex; gap: 4px; overflow-x: auto;
    padding: 0 3rem; scrollbar-width: none; cursor: grab;
  }
  .gallery-scroll::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex-shrink: 0; position: relative; overflow: hidden;
    border-radius: 2px;
  }
  .gallery-item:nth-child(odd) { width: 340px; height: 480px; }
  .gallery-item:nth-child(even) { width: 260px; height: 380px; align-self: flex-end; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-item-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: rgba(255,255,255,0.8); font-size: 0.75rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-item-caption { opacity: 1; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--cream); }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .testimonials-header { text-align: center; margin-bottom: 4rem; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .testimonial-card {
    background: var(--white); padding: 2.5rem;
    border-radius: 2px; border-left: 3px solid var(--fern);
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem; color: var(--sand); line-height: 0;
    position: absolute; top: 2.5rem; right: 2rem;
  }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
  .testimonial-text {
    font-size: 0.95rem; color: var(--gray); line-height: 1.8;
    font-weight: 300; margin-bottom: 1.5rem; font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  /* avatar removed: keep spacing for author info */
  .testimonial-author-info { margin-left: 0; }
  .testimonial-author-info strong { font-size: 0.875rem; color: var(--forest); font-weight: 500; display: block; }
  .testimonial-author-info span { font-size: 0.75rem; color: var(--gray); }

  /* ── CONTACT ── */
  .contact { background: var(--white); }
  .contact-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  }
  .contact-info p {
    color: var(--gray); font-size: 1rem; line-height: 1.8;
    font-weight: 300; margin-bottom: 2.5rem;
  }
  .contact-details { list-style: none; }
  .contact-details li {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0; border-bottom: 1px solid var(--light-gray);
    color: var(--gray); font-size: 0.9rem;
  }
  .contact-details li svg { width: 18px; height: 18px; color: var(--fern); flex-shrink: 0; }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1px solid var(--light-gray); border-radius: 2px;
    padding: 0.9rem 1rem; font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; color: var(--ink);
    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(--fern); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    background: var(--forest); color: var(--white);
    padding: 1.1rem 3rem; font-size: 0.875rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 2px;
    transition: background 0.2s; align-self: flex-start;
  }
  .form-submit:hover { background: var(--fern); }

  /* ── FOOTER ── */
  footer {
    background: var(--forest); color: var(--white);
    padding: 4rem 3rem 2rem;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--white);
    margin-bottom: 1rem; display: block;
  }
  .footer-brand .logo span { color: var(--gold); font-style: italic; }
  .footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 300; line-height: 1.7; }
  .footer-col h4 {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; font-weight: 300; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1200px; margin: 2rem auto 0;
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.3); font-size: 0.8rem;
  }

  /* ── LANGUAGE SWITCHER ── */
  .lang-switcher {
    display: flex; align-items: center; gap: 0.25rem;
    background: rgba(255,255,255,0.1); border-radius: 2px;
    padding: 0.25rem; border: 1px solid rgba(255,255,255,0.15);
  }
  .lang-btn {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.55); font-size: 0.7rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500; letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem; border-radius: 1px;
    transition: all 0.2s; text-transform: uppercase;
  }
  .lang-btn:hover { color: var(--white); }
  .lang-btn.active {
    background: var(--gold); color: var(--forest);
  }

  /* ── ANIMATIONS ── */
  .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-toggle { display: inline-flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 1.5rem;
      right: 1.5rem;
      flex-direction: column;
      gap: 0.25rem;
      padding: 1rem 1.25rem;
      background: rgba(26,46,28,0.98);
      border-radius: 10px;
      box-shadow: 0 20px 45px rgba(0,0,0,0.18);
      z-index: 99;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      width: 100%;
      padding: 0.85rem 0;
    }
    .nav-links li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .lang-switcher { margin-left: 1rem; }
    .hero { padding: 0 1.5rem 4rem; }
    section { padding: 5rem 1.5rem; }
    .about-grid, .exp-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .exp-grid { gap: 2rem; }
    .exp-feature {
      display: flex; flex-direction: column; gap: 1rem;
      padding: 1.5rem 0; border-bottom-width: 1px;
    }
    .exp-feature h3 { font-size: 1rem; }
    .exp-feature p { font-size: 0.95rem; line-height: 1.7; }
    .exp-image img { height: 320px; }
    .exp-quote {
      position: static; margin-top: 1.5rem;
      max-width: none; width: auto;
    }
    .experience::before { display: none; }
    .tours-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .tours-desc {
      max-width: 100%;
      width: 100%;
      font-size: 1rem;
    }
    .tours-grid { grid-template-columns: 1fr; }
    .tour-card:first-child,
    .tour-card:nth-child(2),
    .tour-card:nth-child(3),
    .tour-card:nth-child(4),
    .tour-card:nth-child(5) {
      grid-column: auto;
      grid-row: auto;
    }
    .tour-card { aspect-ratio: 4/3; }
    .tour-card img { object-position: center top; }
    .tour-card:nth-child(4) img { object-position: center 28%; }
    .tour-overlay { padding: 2rem 2rem 1rem; }
    .tour-action { top: 1rem; right: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .testimonial-card { padding: 1.75rem; }
    .testimonial-card::before { top: 1.5rem; right: 1.5rem; font-size: 4rem; }
    .testimonial-text { font-size: 0.95rem; }
    .testimonials-header { margin-bottom: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-image-stack { height: 380px; }
    .intro-strip { gap: 2rem; }
  }

  @media (max-width: 600px) {
    section { padding: 4rem 1rem; }
    .hero { padding-bottom: 3rem; }
    .exp-feature { padding: 1.25rem 0; }
    .exp-image img { height: 260px; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-card::before { font-size: 3.5rem; }
    .testimonial-text { font-size: 0.9rem; }
    .testimonial-author-info strong { font-size: 0.85rem; }
    .testimonial-author-info span { font-size: 0.7rem; }
    .section-title { font-size: clamp(2rem, 5vw, 2.3rem); }
  }
