/* ============================================================
   Travel Trips — Design System (Movilo-inspired light theme)
   ============================================================ */

:root {
  --bg: #F2EFE9;
  --bg-2: #ECE8DF;
  --surface: #FFFFFF;
  --surface-2: #FAF7F1;
  --border: #E5E0D6;
  --border-strong: #D5CFC2;
  --text: #0A0A0A;
  --text-muted: #5C5C5C;
  --text-dim: #8A8A8A;
  --accent: #F4C842;
  --accent-hover: #FFD55F;
  --accent-ink: #0A0A0A;

  --radius-card: 24px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --max-w: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-py: clamp(48px, 6vw, 96px);

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 28px -12px rgba(0, 0, 0, 0.08);
  --shadow-nav: 0 6px 30px -10px rgba(0, 0, 0, 0.12);

  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ============================================================
   Layout primitives
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.section--tight {
  padding-top: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(32px, 4vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-top: 24px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 22px;
  max-width: 560px;
}

.h-accent { color: inherit; font: inherit; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(244, 200, 66, 0.65);
}

/* Same pill shape, dark fill — paired with .btn--primary in CTA rows */
.btn--primary-alt {
  background: var(--text);
  color: #fff;
}

.btn--primary-alt:hover {
  background: #1f1f1f;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.32);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--secondary:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn--link {
  background: transparent;
  color: var(--text);
  padding: 15px 8px;
  border: none;
  border-radius: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.btn--link:hover { text-decoration-thickness: 2px; }

.btn--ghost {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.btn--ghost:hover { color: var(--text); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Navigation — floating white pill
   ============================================================ */

.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
  transition: top 0.3s var(--ease);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 10px 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.3s var(--ease);
}

.nav.is-scrolled .nav__inner {
  box-shadow: 0 14px 40px -14px rgba(0, 0, 0, 0.18);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo__mark {
  display: inline-block;
  width: 24px;
  height: 28px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  position: relative;
  display: inline-block;
  padding: 14px 18px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
  border-radius: 2px;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__links a:hover { color: var(--text); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  list-style: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 10px;
  color: var(--text);
}

.dropdown li a:hover {
  background: var(--surface-2);
}

.nav__cta--desktop {
  padding: 12px 22px;
}

/* Mobile burger */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.nav__burger span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease);
}

.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }

.nav__drawer { display: none; }

@media (max-width: 960px) {
  .nav__links,
  .nav__cta--desktop { display: none; }

  .nav__burger { display: inline-flex; }

  .nav__inner {
    padding: 8px 8px 8px 22px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__drawer {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    z-index: 90;
  }

  .nav.is-open .nav__drawer { transform: translateX(0); }

  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    z-index: 80;
  }

  .nav.is-open ~ .nav__overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav__drawer-list a {
    display: block;
    padding: 14px 18px;
    font-size: 17px;
    border-radius: 14px;
    color: var(--text);
    border: 1px solid var(--border);
    background: var(--surface);
  }

  .nav__drawer-list .group-label {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0 6px;
  }

  .nav__drawer .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding-top: clamp(120px, 12vw, 180px);
  padding-bottom: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-top: 24px;
  color: var(--text);
}

.hero p.lead {
  color: var(--text-muted);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 560px;
  margin-top: 28px;
  line-height: 1.55;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

/* Two-column scrolling images */
.hero__cols {
  position: relative;
  height: clamp(460px, 78vh, 760px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero__col {
  overflow: hidden;
  position: relative;
}

.hero__col-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}

.hero__col--up .hero__col-track { animation: heroScrollUp 38s linear infinite; }
.hero__col--down .hero__col-track { animation: heroScrollDown 38s linear infinite; }

@keyframes heroScrollUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes heroScrollDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.hero__col-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Tablet + mobile: switch hero columns to horizontal marquee (two stacked rows) */
@media (max-width: 960px) {
  .hero__cols {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    height: auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .hero__col {
    height: clamp(200px, 42vw, 280px);
  }

  .hero__col-track {
    flex-direction: row;
    height: 100%;
    width: max-content;
  }

  .hero__col-track img {
    height: 100%;
    width: auto;
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
  }

  .hero__col--up .hero__col-track {
    animation: heroScrollLeft 38s linear infinite;
  }
  .hero__col--down .hero__col-track {
    animation: heroScrollRight 42s linear infinite;
  }

  @keyframes heroScrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes heroScrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }
}

/* Hero proof badge */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 14px 18px 14px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  max-width: 460px;
}

.hero__proof-avatars { display: inline-flex; }

.hero__proof-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

.hero__proof-avatars span:first-child { margin-left: 0; }
.hero__proof-avatars span:nth-child(1) { background: #F4C842; color: #0a0a0a; }
.hero__proof-avatars span:nth-child(2) { background: #E07B5C; color: #fff; }
.hero__proof-avatars span:nth-child(3) { background: #4A6FA5; color: #fff; }
.hero__proof-avatars span:nth-child(4) { background: #6BAE6C; color: #fff; }

.hero__proof-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.hero__proof-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   Marquee (trust strip)
   ============================================================ */

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  background: var(--bg-2);
}

.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.marquee__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Gallery marquee (student photos)
   ============================================================ */

.gallery-section { padding-top: 24px; }

.gallery-marquee {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-marquee__row {
  height: clamp(200px, 26vw, 300px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.gallery-marquee__row--left .gallery-marquee__track {
  animation: galleryScrollLeft 80s linear infinite;
}

.gallery-marquee__row--right .gallery-marquee__track {
  animation: galleryScrollRight 90s linear infinite;
}

.gallery-marquee__track img {
  height: 100%;
  width: auto;
  border-radius: 16px;
  flex-shrink: 0;
  cursor: zoom-in;
  display: block;
  background: var(--surface);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.gallery-marquee__track img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px -18px rgba(10, 10, 10, 0.35);
}

@keyframes galleryScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes galleryScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============================================================
   Lightbox
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  transition: opacity 0.2s var(--ease);
  cursor: zoom-out;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .lightbox { padding: 12px; }
  .lightbox img { max-width: 96vw; max-height: 86vh; border-radius: 8px; }
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ============================================================
   Feature cards
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================================
   Services grid
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--text);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 24px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
  flex-grow: 1;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: gap 0.3s var(--ease);
}

.service-card__arrow::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.service-card:hover .service-card__arrow { gap: 14px; }
.service-card:hover .service-card__arrow::after { width: 28px; }

/* ============================================================
   About / Mission split
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 960px) { .split { grid-template-columns: 1fr; } }

.split__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}

.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split__text h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-top: 24px;
}

.split__text p {
  color: var(--text-muted);
  margin-top: 24px;
  font-size: 17px;
}

.split__text .btn { margin-top: 32px; }

/* ============================================================
   Stats
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px, 6vw, 72px) 0;
}

@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

@media (max-width: 800px) {
  .stat { border-right: none; }
  .stat:nth-child(2n-1) { border-right: 1px solid var(--border); }
}

.stat__num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.stat__num small { font-size: 0.6em; vertical-align: top; color: var(--accent); }

.stat__label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   Photo grid (Ireland highlight)
   ============================================================ */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}

@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
}

.photo-grid figure {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
}

.photo-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.photo-grid figure:nth-child(2) { grid-column: span 2; }

@media (max-width: 900px) {
  .photo-grid figure:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 4/3; }
  .photo-grid figure:nth-child(2) { grid-column: span 2; aspect-ratio: 4/3; }
  .photo-grid figure:nth-child(3),
  .photo-grid figure:nth-child(4) { aspect-ratio: 1; }
}

.photo-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.photo-grid figure:hover img { transform: scale(1.05); }

.photo-grid figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 960px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.testimonial:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.testimonial__rating {
  display: inline-flex;
  gap: 4px;
  color: var(--accent);
  font-size: 16px;
}

.testimonial__quote {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  flex-grow: 1;
  color: var(--text);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 14px;
}

.testimonial__name {
  font-size: 15px;
  font-weight: 600;
}

.testimonial__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   Locations
   ============================================================ */

.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 800px) { .locations { grid-template-columns: 1fr; } }

.location {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.location:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.location__media { aspect-ratio: 16 / 9; background: var(--surface-2); overflow: hidden; }
.location__media img { width: 100%; height: 100%; object-fit: cover; }

.location__body { padding: 28px 32px 32px; }

.location__city {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.location__name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.location__desc {
  color: var(--text-muted);
  margin-top: 14px;
}

/* ============================================================
   Final CTA
   ============================================================ */

.cta-card {
  background: var(--accent);
  border-radius: 32px;
  padding: clamp(48px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
  color: var(--accent-ink);
}

.cta-card p {
  margin-top: 22px;
  color: rgba(10, 10, 10, 0.75);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card .btn {
  margin-top: 36px;
  background: var(--text);
  color: #fff;
}

.cta-card .btn:hover {
  background: #1f1f1f;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.35);
}


/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand p {
  color: var(--text-muted);
  margin-top: 18px;
  font-size: 15px;
  max-width: 320px;
}

.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  color: var(--text);
  font-size: 15px;
  transition: color 0.2s var(--ease);
}

.footer__col a:hover { color: var(--text-muted); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer__socials { display: flex; gap: 10px; }

.footer__socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  background: var(--surface);
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer__socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */

.page-hero {
  padding-top: clamp(120px, 12vw, 180px);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb__sep { color: var(--text-dim); }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 900px;
}

.page-hero p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 24px;
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ============================================================
   Two-column content
   ============================================================ */

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

@media (max-width: 900px) { .content-two-col { grid-template-columns: 1fr; } }

.content-two-col__text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.content-two-col__text p {
  color: var(--text-muted);
  margin-top: 24px;
}

.content-two-col__list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-two-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}

.content-two-col__list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* Step list */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.step:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.step__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.step p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 15px;
}

/* Highlights grid */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .highlights { grid-template-columns: 1fr; } }

.highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.highlight:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.highlight__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.highlight__tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.highlight h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.highlight p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Related */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) { .related { grid-template-columns: 1fr; } }

/* ============================================================
   Contact page
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}

@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info__block {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.contact-info__block h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-info__block p {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.contact-info__block span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info__block span a {
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.contact-info__block span a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.field textarea { min-height: 140px; }

.form .btn { align-self: flex-start; }

.form__status {
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  display: none;
}
.form__status--pending,
.form__status--success,
.form__status--error { display: block; }
.form__status--pending {
  background: var(--surface);
  color: var(--text-muted);
}
.form__status--success {
  background: rgba(34, 139, 90, 0.08);
  color: #1f7a4e;
  border: 1px solid rgba(34, 139, 90, 0.2);
}
.form__status--error {
  background: rgba(200, 50, 50, 0.06);
  color: #b53030;
  border: 1px solid rgba(200, 50, 50, 0.2);
}

/* ============================================================
   Language switcher
   ============================================================ */

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.lang-switcher__btn:hover { background: rgba(10, 10, 10, 0.04); border-color: rgba(10, 10, 10, 0.2); }
.lang-switcher__flag { font-size: 14px; line-height: 1; }
.lang-switcher__code { letter-spacing: 0.04em; }
.lang-switcher__caret { font-size: 9px; opacity: 0.6; }

.lang-switcher__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.12);
  padding: 6px;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 60;
}
.lang-switcher.is-open .lang-switcher__list { display: block; }
.lang-switcher__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s ease;
}
.lang-switcher__list li:hover { background: rgba(244, 200, 66, 0.16); }
.lang-switcher__list li[aria-selected="true"] {
  background: rgba(244, 200, 66, 0.22);
  font-weight: 600;
}

.nav__drawer .lang-switcher {
  margin: 14px 0 4px;
  align-self: stretch;
}
.nav__drawer .lang-switcher__btn {
  width: 100%;
  justify-content: space-between;
  padding: 12px 16px;
}
.nav__drawer .lang-switcher__list {
  position: static;
  width: 100%;
  margin-top: 8px;
  box-shadow: none;
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.nav__inner > .lang-switcher--desktop { margin-right: 22px; }

@media (max-width: 960px) {
  .nav__inner > .lang-switcher--desktop { display: none; }
}

/* ============================================================
   Utilities
   ============================================================ */

.reveal { opacity: 0; transform: translateY(28px); }
.reveal-x { opacity: 0; transform: translateX(-28px); }
.text-muted { color: var(--text-muted); }
.center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-x { opacity: 1; transform: none; }
  .hero__col--up .hero__col-track,
  .hero__col--down .hero__col-track { animation: none; }
  .gallery-marquee__track { animation: none; }
}
