
:root {
  --red: #d52732;
  --red-dark: #a91320;
  --navy: #101a33;
  --navy-2: #182540;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --ink: #172033;
  --muted: #697182;
  --line: rgba(23, 32, 51, 0.13);
  --gold: #d8aa59;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.page-width { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #f1cf91; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 25px; border: 0; border-radius: 2px; font-size: .76rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-red { background: var(--red); color: white; }
.button-red:hover { background: var(--red-dark); }
.button-glass { color: white; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; height: 94px; padding: 0 max(32px, calc((100vw - 1240px)/2)); display: flex; align-items: center; gap: 48px; color: white; border-bottom: 1px solid rgba(255,255,255,.18); }
.logo img { width: 190px; height: auto; }
.site-header nav { display: flex; gap: 30px; margin-left: auto; font-size: .77rem; font-weight: 650; letter-spacing: .04em; }
.site-header nav a { color: rgba(255,255,255,.82); transition: color .2s; }
.site-header nav a:hover { color: white; }
.header-cta { display: inline-flex; gap: 12px; align-items: center; font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.header-cta span { color: #f1cf91; font-size: 1.1rem; }

.hero-home { position: relative; min-height: 820px; display: flex; align-items: center; overflow: hidden; color: white; background: var(--navy); }
.hero-photo, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo { object-fit: cover; animation: heroZoom 12s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }
.hero-shade { background: linear-gradient(90deg, rgba(9,17,36,.87) 0%, rgba(9,17,36,.63) 48%, rgba(9,17,36,.12) 100%), linear-gradient(0deg, rgba(9,17,36,.42), transparent 50%); }
.hero-copy { position: relative; z-index: 2; padding-top: 96px; }
.hero-copy h1 { max-width: 850px; margin: 21px 0 25px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 7vw, 7rem); font-weight: 400; line-height: .94; letter-spacing: -.055em; }
.hero-copy h1 em { color: #f0c373; font-weight: 400; }
.hero-copy > p { max-width: 560px; margin: 0; color: rgba(255,255,255,.75); font-size: 1.08rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; }
.hero-foot { position: absolute; z-index: 2; left: 50%; bottom: 33px; transform: translateX(-50%); display: flex; align-items: center; gap: 20px; }
.hero-foot > span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.hero-foot p { margin: 0; color: rgba(255,255,255,.58); font-size: .71rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .09em; }
.hero-foot div { margin-left: auto; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.25); }
.hero-foot strong, .hero-foot small { display: block; }
.hero-foot strong { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; }
.hero-foot small { color: rgba(255,255,255,.6); font-size: .68rem; }

.trips-section, .central-section, .testimonials { padding-block: 112px; }
.section-heading { display: grid; grid-template-columns: 1fr 390px; gap: 60px; align-items: end; }
.section-heading h2 { margin: 13px 0 0; font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.75; }
.filters-row { display: flex; justify-content: space-between; align-items: center; margin: 52px 0 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.year-tabs { display: flex; gap: 8px; }
.year-tabs button { width: 64px; height: 40px; border: 1px solid transparent; background: transparent; color: #8a8e98; font-size: .78rem; font-weight: 750; }
.year-tabs button.active { color: white; background: var(--navy); }
.filters-row select { min-width: 210px; padding: 10px 35px 10px 14px; border: 1px solid var(--line); background: white; color: var(--ink); }
.trip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trip-card { overflow: hidden; background: white; border: 1px solid rgba(23,32,51,.08); box-shadow: 0 20px 60px rgba(16,26,51,.06); transition: transform .3s ease, box-shadow .3s ease; }
.trip-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(16,26,51,.12); }
.trip-image { position: relative; height: 310px; display: block; overflow: hidden; }
.trip-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,18,36,.25), transparent 55%); }
.trip-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.trip-card:hover .trip-image img { transform: scale(1.04); }
.status { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 10px; background: var(--red); color: white; font-size: .59rem; font-weight: 850; letter-spacing: .12em; }
.status-em-breve { background: var(--navy); }
.status-confirmada { background: #23735c; }
.trip-card-body { padding: 25px; }
.trip-card-meta { display: flex; justify-content: space-between; color: var(--red); font-size: .64rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.trip-card h3 { margin: 15px 0 5px; font-family: Georgia, serif; font-size: 1.75rem; font-weight: 400; line-height: 1.1; }
.trip-card .destination { margin: 0; min-height: 25px; color: var(--muted); font-size: .88rem; }
.trip-card-footer { display: flex; align-items: end; justify-content: space-between; margin-top: 27px; padding-top: 21px; border-top: 1px solid var(--line); }
.trip-card-footer strong, .trip-card-footer small { display: block; }
.trip-card-footer strong { font-size: .79rem; }
.trip-card-footer small { margin-top: 5px; color: var(--muted); font-size: .68rem; }
.circle-link { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; transition: background .2s, color .2s; }
.circle-link:hover { background: var(--navy); color: white; }
.empty-state { grid-column: 1/-1; padding: 70px; text-align: center; background: var(--cream); }
.empty-state h3 { margin: 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.empty-state p { color: var(--muted); }
.empty-state a { color: var(--red); font-weight: 700; }

.finder-section { padding: 110px 0; color: white; background: var(--navy); }
.finder-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.finder-intro { position: sticky; top: 40px; }
.finder-intro h2 { margin: 18px 0 24px; font-family: Georgia, serif; font-size: clamp(3rem, 5vw, 5.2rem); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.finder-intro p { max-width: 430px; color: rgba(255,255,255,.62); line-height: 1.75; }
.finder-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; max-width: 350px; margin-top: 48px; }
.finder-progress span { height: 2px; background: rgba(255,255,255,.18); }
.finder-progress span.active { background: var(--red); }
.finder-panel { min-height: 460px; padding: 44px; color: var(--ink); background: var(--paper); }
.finder-panel > small, .finder-results > small { color: var(--red); font-weight: 800; letter-spacing: .14em; }
.finder-panel h3 { margin: 18px 0 30px; font-family: Georgia, serif; font-size: 2.15rem; font-weight: 400; line-height: 1.15; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-grid button { display: flex; justify-content: space-between; align-items: center; min-height: 58px; padding: 0 17px; border: 1px solid var(--line); color: var(--ink); background: white; text-align: left; transition: border .2s, background .2s; }
.choice-grid button:hover, .choice-grid button.selected { border-color: var(--red); background: #fff4f3; }
.choice-grid.compact button { min-height: 50px; font-size: .83rem; }
.finder-submit { margin-top: 24px; width: 100%; }
.finder-results > p { color: var(--muted); line-height: 1.6; }
.mini-results { display: grid; gap: 8px; margin: 22px 0; }
.mini-results a { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; align-items: center; padding: 8px; border: 1px solid var(--line); background: white; }
.mini-results img { width: 70px; height: 58px; object-fit: cover; }
.mini-results strong, .mini-results small { display: block; }
.mini-results small { margin-top: 4px; color: var(--muted); }
.text-button { display: block; margin-top: 18px; padding: 0; border: 0; color: var(--muted); background: transparent; text-decoration: underline; }

.central-section { background: var(--paper); }
.topic-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 55px; border-top: 1px solid var(--line); }
.topic-card { display: grid; grid-template-columns: 48px 1fr 30px; gap: 12px; align-items: center; padding: 24px 20px 24px 0; border-bottom: 1px solid var(--line); transition: padding .2s, color .2s; }
.topic-card:nth-child(odd) { margin-right: 40px; }
.topic-card:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--line); }
.topic-card:hover { color: var(--red); padding-right: 8px; }
.topic-card > span { color: #a2a6af; font-size: .66rem; font-weight: 800; }
.topic-card small { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.topic-card h3 { margin: 4px 0 0; font-family: Georgia, serif; font-size: 1.42rem; font-weight: 400; }
.migration-note { margin: 25px 0 0; color: var(--muted); font-size: .72rem; }

.about-section { padding: 120px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: 620px; object-fit: cover; }
.about-photo span { position: absolute; right: -25px; bottom: 35px; padding: 18px 22px; color: white; background: var(--red); font-family: Georgia, serif; font-size: 1.2rem; }
.about-copy h2 { margin: 18px 0 27px; font-family: Georgia, serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 400; line-height: .99; letter-spacing: -.045em; }
.about-copy h2 em { color: var(--red); font-weight: 400; }
.about-copy p { max-width: 540px; color: var(--muted); line-height: 1.8; }
.about-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 32px 0; padding: 25px 0; border-block: 1px solid var(--line); list-style: none; }
.about-copy li { font-size: .82rem; }
.about-copy li::before { content: "•"; color: var(--red); margin-right: 9px; }
.about-copy > a, .instagram-inner > a, .footer-grid a { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-copy > a span { color: var(--red); margin-left: 10px; }

.testimonials { background: white; }
.testimonial-placeholder { margin-top: 45px; padding: 60px; text-align: center; color: white; background: var(--navy); }
.testimonial-placeholder > span { color: var(--gold); font-family: Georgia, serif; font-size: 4rem; line-height: .5; }
.testimonial-placeholder p { max-width: 680px; margin: 24px auto; font-family: Georgia, serif; font-size: 1.7rem; line-height: 1.45; }
.testimonial-placeholder a { color: #f1cf91; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.instagram-section { padding: 80px 0; color: white; background: var(--red); }
.instagram-inner { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 60px; align-items: center; }
.instagram-inner h2 { margin: 12px 0 0; font-family: Georgia, serif; font-size: 3.3rem; font-weight: 400; line-height: 1; }
.instagram-inner p { color: rgba(255,255,255,.72); line-height: 1.65; }
.instagram-pending { padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

footer { color: white; background: #0d162b; }
.footer-cta { padding: 100px 0 80px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-cta h2 { margin: 17px auto 28px; max-width: 850px; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 400; line-height: 1; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr .8fr; gap: 60px; padding: 68px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid img { width: 120px; }
.footer-grid p { margin: 6px 0; color: rgba(255,255,255,.55); font-size: .8rem; line-height: 1.7; }
.footer-grid small { margin-bottom: 5px; color: #f1cf91; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { color: rgba(255,255,255,.78); font-size: .68rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.08); font-size: .64rem; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 12px 0 19px; color: white; background: #1c9c64; border-radius: 999px; box-shadow: 0 12px 30px rgba(14,30,22,.25); font-size: .72rem; font-weight: 800; }
.whatsapp-float strong { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.18); }

/* Inner pages */
.inner-header { position: relative; height: 82px; padding-inline: max(28px, calc((100vw - 1240px)/2)); display: flex; align-items: center; color: white; background: var(--navy); }
.inner-header .logo { margin-right: auto; }
.inner-header nav { display: flex; gap: 25px; font-size: .74rem; }
.back-link { color: rgba(255,255,255,.7); }
.trip-hero { position: relative; height: 680px; display: flex; align-items: end; color: white; overflow: hidden; }
.trip-hero img, .trip-hero::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.trip-hero img { object-fit: cover; }
.trip-hero::after { content: ""; background: linear-gradient(0deg, rgba(8,16,32,.92), rgba(8,16,32,.06) 70%); }
.trip-hero-content { position: relative; z-index: 2; padding-bottom: 60px; }
.trip-hero h1 { max-width: 900px; margin: 17px 0; font-family: Georgia, serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 400; line-height: .92; letter-spacing: -.055em; }
.trip-hero-meta { display: flex; flex-wrap: wrap; gap: 28px; color: rgba(255,255,255,.72); font-size: .8rem; }
.trip-content { display: grid; grid-template-columns: 1.4fr .6fr; gap: 90px; padding-block: 100px; }
.trip-content section { margin-bottom: 78px; }
.trip-content h2, .topic-page h1, .policy-page h1, .admin-page h1 { margin: 0 0 22px; font-family: Georgia, serif; font-size: clamp(2.6rem, 4vw, 4.2rem); font-weight: 400; line-height: 1; }
.lead-copy { color: var(--muted); font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.6; }
.itinerary-list { border-top: 1px solid var(--line); }
.itinerary-list details { border-bottom: 1px solid var(--line); }
.itinerary-list summary { display: grid; grid-template-columns: 90px 1fr 30px; gap: 20px; align-items: center; padding: 22px 0; list-style: none; cursor: pointer; }
.itinerary-list summary::-webkit-details-marker { display: none; }
.itinerary-list summary span { color: var(--red); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.itinerary-list summary strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.itinerary-list details p { margin: 0; padding: 0 0 24px 110px; color: var(--muted); line-height: 1.7; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.includes-grid span { padding: 17px; background: var(--cream); font-size: .83rem; }
.includes-grid span::before { content: "✓"; color: var(--red); margin-right: 10px; }
.exclusion-intro { margin: -8px 0 20px; color: var(--muted); line-height: 1.7; }
.not-included-grid { display: grid; gap: 10px; }
.not-included-grid span { padding: 17px 19px; border-left: 3px solid var(--red); background: #fff1ef; font-size: .86rem; line-height: 1.55; }
.not-included-grid span::before { content: "×"; margin-right: 10px; color: var(--red); font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 240px 240px; gap: 10px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid img:first-child { grid-row: 1/3; }
.trip-sidebar { position: relative; }
.trip-sticky { position: sticky; top: 30px; padding: 30px; color: white; background: var(--navy); }
.trip-sticky small { color: #f1cf91; text-transform: uppercase; letter-spacing: .11em; }
.trip-sticky h3 { margin: 12px 0 4px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.trip-sticky p { color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.6; }
.trip-sticky dl { margin: 25px 0; padding-block: 20px; border-block: 1px solid rgba(255,255,255,.15); }
.trip-sticky dt { color: rgba(255,255,255,.5); font-size: .63rem; text-transform: uppercase; }
.trip-sticky dd { margin: 5px 0 16px; }
.trip-sticky .button { width: 100%; text-align: center; }
.hotel-card { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 30px; padding: 28px; background: var(--cream); }
.hotel-card strong { grid-column: 1/-1; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; }
.hotel-card span { color: var(--muted); font-size: .8rem; }
.topic-page, .policy-page, .admin-page { min-height: 70vh; padding-block: 90px; }
.topic-page { max-width: 820px; }
.topic-page .topic-intro { color: var(--muted); font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.6; }
.topic-page article { margin: 45px 0; padding: 35px; background: var(--cream); }
.topic-page article h2 { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 400; }
.topic-page article p, .topic-page li, .policy-page p, .policy-page li { color: var(--muted); line-height: 1.8; }
.notice { padding: 18px; border-left: 3px solid var(--red); background: #fff1ef; font-size: .8rem; line-height: 1.6; }
.trip-loading { min-height: 100vh; background: var(--paper); }
.trip-loading-header { height: 90px; background: var(--navy); }
.trip-loading-hero { display: grid; min-height: 470px; place-items: center; color: white; background: linear-gradient(135deg, #101d38, #334664); }
.trip-loading-hero span { font-family: Georgia, serif; font-size: clamp(1.4rem, 3vw, 2.2rem); animation: loading-pulse 1.1s ease-in-out infinite alternate; }
@keyframes loading-pulse { from { opacity: .45; } to { opacity: 1; } }

/* Admin */
.admin-page { width: min(1050px, calc(100% - 48px)); margin: auto; }
.admin-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; }
.admin-head p { color: var(--muted); }
.admin-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 32px; border: 1px solid var(--line); background: white; }
.admin-form label { display: grid; gap: 7px; color: var(--muted); font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.admin-form label.full { grid-column: 1/-1; }
.admin-form input, .admin-form textarea, .admin-form select { width: 100%; padding: 13px; border: 1px solid var(--line); color: var(--ink); background: var(--paper); text-transform: none; letter-spacing: 0; }
.admin-form textarea { min-height: 110px; resize: vertical; }
.checkbox-row { grid-column: 1/-1; display: flex; gap: 25px; }
.checkbox-row label { display: flex; grid-template-columns: auto 1fr; align-items: center; }
.admin-form .button { grid-column: 1/-1; }
.admin-list { margin-top: 45px; }
.admin-list-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.admin-list-item img { width: 90px; height: 70px; object-fit: cover; }

@media (max-width: 900px) {
  .page-width { width: min(100% - 36px, 720px); }
  .site-header { height: 76px; padding-inline: 18px; }
  .site-header nav { display: none; }
  .logo img { width: 155px; }
  .header-cta { margin-left: auto; }
  .hero-home { min-height: 760px; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,17,36,.88), rgba(9,17,36,.38)), linear-gradient(0deg, rgba(9,17,36,.5), transparent); }
  .hero-copy { padding-top: 70px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 14vw, 5.6rem); }
  .hero-foot div { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 560px; }
  .trip-grid { grid-template-columns: 1fr 1fr; }
  .finder-layout, .about-grid, .trip-content { grid-template-columns: 1fr; gap: 55px; }
  .finder-intro { position: static; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card:nth-child(odd), .topic-card:nth-child(even) { margin: 0; padding-left: 0; border-left: 0; }
  .about-photo img { height: 500px; }
  .instagram-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trip-sidebar { grid-row: 1; }
  .trip-sticky { position: static; }
}

@media (max-width: 620px) {
  .page-width { width: calc(100% - 30px); }
  .header-cta { font-size: 0; }
  .header-cta::before { content: "WhatsApp"; font-size: .68rem; }
  .hero-home { min-height: 720px; }
  .hero-copy h1 { margin-top: 18px; }
  .hero-copy > p { font-size: .96rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-foot { bottom: 20px; }
  .trips-section, .central-section, .testimonials { padding-block: 80px; }
  .filters-row { align-items: stretch; flex-direction: column; gap: 15px; }
  .year-tabs { justify-content: space-between; }
  .year-tabs button { width: 24%; }
  .filters-row select { width: 100%; }
  .trip-grid { grid-template-columns: 1fr; }
  .trip-image { height: 280px; }
  .finder-section { padding: 80px 0; }
  .finder-panel { padding: 25px 19px; }
  .choice-grid { grid-template-columns: 1fr; }
  .about-section { padding: 80px 0; }
  .about-photo img { height: 380px; }
  .about-photo span { right: 12px; bottom: 12px; }
  .about-copy ul { grid-template-columns: 1fr; }
  .testimonial-placeholder { padding: 45px 22px; }
  .testimonial-placeholder p { font-size: 1.35rem; }
  .instagram-inner h2 { font-size: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding-left: 10px; }
  .trip-hero { height: 560px; }
  .trip-hero h1 { font-size: 3.5rem; }
  .trip-content { padding-block: 70px; }
  .includes-grid, .hotel-card { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 230px); }
  .gallery-grid img:first-child { grid-row: auto; }
  .itinerary-list summary { grid-template-columns: 70px 1fr 20px; gap: 10px; }
  .itinerary-list details p { padding-left: 0; }
  .inner-header nav { display: none; }
  .admin-form { grid-template-columns: 1fr; padding: 20px; }
  .admin-form label.full, .checkbox-row, .admin-form .button { grid-column: auto; }
  .checkbox-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
