/* ================================================
   WE LOVE ADVENTURE TRAVELS — styles.css
   Light theme · Brand: orange, green, blue, purple
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --orange: #E85420;
  --green: #38A832;
  --blue: #1868C4;
  --purple: #7C3FA0;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --text: #1C1C1C;
  --text-muted: #666;
  --border: #E8E3DC;
  --nav-h: 150px;
  --topbar-h: 40px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   TOPBAR
   =========================== */
.topbar {
  background: #12122a;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: .78rem;
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.topbar-left { display: flex; align-items: center; gap: 1.25rem; }
.topbar-left a {
  color: #bbb; transition: color .2s;
  display: flex; align-items: center; gap: .4rem;
}
.topbar-left a:hover { color: #fff; }
.topbar-tag { color: #aaa; font-style: italic; letter-spacing: .02em; }
.topbar-right { display: flex; align-items: center; gap: .75rem; }
.topbar-right a {
  color: #bbb; transition: color .2s; font-size: .85rem;
  display: flex; align-items: center;
}
.topbar-right a:hover { color: #fff; }

/* ===========================
   NAV
   =========================== */
.site-nav {
  background: var(--white);
  height: var(--nav-h);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 135px; width: auto; }

/* Nav links */
.nav-links { display: flex; gap: .15rem; }
.nav-links a {
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text); padding: .5rem .65rem; border-radius: 4px;
  transition: color .2s; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: .65rem; right: .65rem;
  height: 2px; background: var(--green); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.55rem; border-radius: 5px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .9rem;
  letter-spacing: .02em; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: #d44014; border-color: #d44014; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-white-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: #2d8e28; border-color: #2d8e28; }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: #1458a4; border-color: #1458a4; }
.btn-purple { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-purple:hover { background: #6a3488; border-color: #6a3488; }
.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ===========================
   SECTION BASE
   =========================== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem; }
.section-bg { background: var(--off-white); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 2.9rem); color: var(--text); line-height: 1.3;
}
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; display: block; margin-bottom: .5rem;
}
.section-sub {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 560px; margin: .6rem auto 0; line-height: 1.7;
}
.divider { display: block; width: 56px; height: 3px; border-radius: 2px; margin: .6rem auto 0; }
.d-orange { background: var(--orange); }
.d-green  { background: var(--green); }
.d-blue   { background: var(--blue); }
.d-purple { background: var(--purple); }

/* ===========================
   HERO — homepage
   =========================== */
.hero {
  position: relative; height: clamp(520px, 72vh, 740px); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.32) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: #fff; margin-bottom: -.25rem;
  animation: fadeUp .7s ease .1s both;
}
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: .9; color: #fff; letter-spacing: .02em;
  animation: fadeUp .7s ease .2s both;
}
.hero-subtitle {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--green); margin-top: .1rem;
  animation: fadeUp .7s ease .32s both;
}
.hero-desc {
  color: rgba(255,255,255,.88); font-size: clamp(.9rem, 1.6vw, 1.05rem);
  max-width: 460px; margin-top: 1rem; line-height: 1.65;
  animation: fadeUp .7s ease .42s both;
}
.hero-ctas {
  display: flex; gap: .75rem; margin-top: 1.75rem; flex-wrap: wrap;
  animation: fadeUp .7s ease .52s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   PAGE HERO — inner pages
   =========================== */
.page-hero {
  position: relative; height: clamp(300px, 38vh, 440px);
  overflow: hidden; display: flex; align-items: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.3) 70%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; width: 100%;
  animation: fadeUp .65s ease .1s both;
}
.page-hero-content .ph-sub {
  font-family: 'Pacifico', cursive; color: var(--green);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem); margin-bottom: .25rem; display: block;
}
.page-hero-content h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1; color: #fff; letter-spacing: .02em;
}
.page-hero-content p {
  color: rgba(255,255,255,.85); font-size: 1rem;
  max-width: 500px; margin-top: .75rem; line-height: 1.65;
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
  background: var(--off-white);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}
.stats-strip-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.8rem, 5vw, 4rem); line-height: 1; display: block;
}
.stat-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted); margin-top: .25rem; display: block;
}
.stat-item:nth-child(1) .stat-num { color: var(--orange); }
.stat-item:nth-child(2) .stat-num { color: var(--green); }
.stat-item:nth-child(3) .stat-num { color: var(--blue); }
.stat-item:nth-child(4) .stat-num { color: var(--purple); }

/* ===========================
   MEET VICTORIA
   =========================== */
.meet-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.meet-img-wrap {
  position: relative; border-radius: 8px; overflow: hidden;
}
.meet-img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.meet-img-accent {
  position: absolute; top: -8px; left: -8px; right: 8px; bottom: 8px;
  border: 2px solid var(--orange); border-radius: 10px; z-index: -1; pointer-events: none;
}
.meet-text .eyebrow { color: var(--green); }
.meet-text h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--text); margin: .5rem 0 1rem; line-height: 1.3;
}
.meet-text p { color: var(--text-muted); line-height: 1.75; font-size: .975rem; margin-bottom: 1rem; }
.meet-points { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .7rem; }
.meet-point { display: flex; align-items: center; gap: .65rem; font-size: .9rem; font-weight: 600; }
.meet-point svg { flex-shrink: 0; }

/* ===========================
   TRAVEL CARDS
   =========================== */
.travel-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.travel-card {
  border-radius: 8px;
  border: 1px solid var(--border); background: var(--white);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.travel-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }
.travel-card-img { position: relative; height: 210px; overflow: hidden; border-radius: 8px 8px 0 0; }
.travel-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .3s;
}
.travel-card:hover .travel-card-img img { transform: scale(1.05); }
.travel-card-badge {
  position: absolute; top: calc(210px - 22px); left: 1.25rem;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.22); z-index: 2;
}
.travel-card-body { padding: 1.5rem 1.25rem 1.25rem; }
.travel-card-body h3 {
  font-size: .8rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.travel-card-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }
.travel-card-link {
  font-size: .76rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  display: flex; align-items: center; gap: .4rem; transition: gap .2s;
}
.travel-card:hover .travel-card-link { gap: .65rem; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--white); border-radius: 8px;
  padding: 2rem; border: 1px solid var(--border); position: relative;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: .75rem; left: 1.5rem;
  font-family: 'Pacifico', cursive; font-size: 3rem; line-height: 1;
  opacity: .1; color: var(--text);
}
.testi-text { font-size: .95rem; line-height: 1.75; padding-top: 1rem; margin-bottom: 1.25rem; }
.testi-author { font-family: 'Pacifico', cursive; font-size: .95rem; }
.testi-card:nth-child(1) .testi-author { color: var(--orange); }
.testi-card:nth-child(2) .testi-author { color: var(--blue); }
.testi-card:nth-child(3) .testi-author { color: var(--green); }

/* ===========================
   QUOTE / CONTACT SPLIT
   =========================== */
.quote-split { display: grid; grid-template-columns: 1fr 1.15fr; }
.quote-left { position: relative; overflow: hidden; min-height: 500px; }
.quote-left-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.quote-left-bg::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.54);
}
.quote-left-text {
  position: relative; z-index: 1;
  padding: clamp(2.5rem, 5vw, 4rem);
  height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.quote-left-text h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.3; margin-bottom: 1rem;
}
.quote-left-text p { color: rgba(255,255,255,.85); line-height: 1.7; font-size: .975rem; margin-bottom: 1.5rem; }
.quote-right { background: var(--white); padding: clamp(2.5rem, 5vw, 4rem); }
.quote-right h3 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--text); margin-bottom: 1.75rem;
}

/* ===========================
   FORMS
   =========================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--text); letter-spacing: .02em; }
.req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: 5px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--text); background: var(--white);
  transition: border-color .2s; outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,104,196,.08); }
.form-group textarea { resize: vertical; min-height: 95px; }
.honeypot { display: none !important; }

/* ===========================
   CONTENT SPLIT (inner pages)
   =========================== */
.content-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.content-split.flip { direction: rtl; }
.content-split.flip > * { direction: ltr; }
.cs-img { border-radius: 8px; overflow: hidden; }
.cs-img img { width: 100%; height: 390px; object-fit: cover; }
.cs-text .eyebrow { display: block; margin-bottom: .5rem; }
.cs-text h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); line-height: 1.35; margin-bottom: 1rem;
}
.cs-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; font-size: .975rem; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner { text-align: center; padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; }
.cta-banner h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 2.9rem); color: var(--text); margin-bottom: .75rem;
}
.cta-banner p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 1.75rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ===========================
   OFFER CARDS
   =========================== */
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.offer-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }
.offer-img { height: 210px; overflow: hidden; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.offer-card:hover .offer-img img { transform: scale(1.05); }
.offer-body { padding: 1.5rem; }
.offer-tag {
  display: inline-block; padding: .2rem .65rem; border-radius: 3px;
  font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; margin-bottom: .75rem;
}
.offer-body h3 { font-weight: 800; font-size: 1.05rem; margin-bottom: .5rem; }
.offer-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1rem; line-height: 1.3;
}
.contact-info > p { color: var(--text-muted); line-height: 1.75; font-size: .975rem; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: .85rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); }
.contact-value { font-weight: 600; font-size: .95rem; }
.contact-value a { transition: color .2s; }
.contact-value a:hover { color: var(--orange); }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: #12122a; color: #ccc; padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 1.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem;
}
.footer-logo-we  { font-family: 'Pacifico', cursive; color: #E85420; font-size: 1.5rem; }
.footer-logo-adv { font-family: 'Pacifico', cursive; color: #5ac453; font-size: .9rem; display: block; line-height: 1.2; }
.footer-logo-trl { font-family: 'Pacifico', cursive; color: #7db4e6; font-size: .9rem; display: block; line-height: 1.2; }
.footer-brand-p { font-size: .875rem; line-height: 1.7; margin: .85rem 0; max-width: 300px; color: #888; }
.footer-social { display: flex; gap: .6rem; margin-top: .5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; color: #fff;
}
.footer-social a:hover { background: var(--orange); }
.footer-col h4 {
  font-size: .76rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .875rem; color: #888; transition: color .2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .76rem; color: #555; flex-wrap: wrap; gap: .5rem;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .nav-links a { padding: .5rem .5rem; }
}
@media (max-width: 1024px) {
  .travel-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-split { grid-template-columns: 1fr; }
  .quote-left { min-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .topbar-tag { display: none; }
  .topbar-left a:not(:first-child) { display: none; }
  .site-nav { position: sticky; }
  .nav-links {
    display: none; position: fixed; top: calc(var(--topbar-h) + var(--nav-h));
    left: 0; right: 0; background: #fff; flex-direction: column; padding: .75rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem 1.5rem; font-size: .85rem; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .meet-grid, .content-split { grid-template-columns: 1fr; }
  .content-split.flip { direction: ltr; }
  .testi-grid, .offers-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .meet-img-accent { display: none; }
  .meet-img-wrap img { height: 320px; }
  .cs-img img { height: 280px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; max-width: 280px; }
  .travel-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .topbar-tag { display: block; }
  .btn { font-size: .85rem; padding: .72rem 1.2rem; }
}
