/* =========================================================
   Traveller's Choice — Sri Lanka tourism
   Palette: ocean teal + Sri Lankan gold  |  Type: Playfair Display + Inter
   ========================================================= */

:root {
  /* Brand — ocean teal */
  --ocean-900: #063A3E;
  --ocean-800: #0A5459;
  --ocean-700: #0E7C86;   /* primary */
  --ocean-600: #149AA3;
  --ocean-100: #D6ECEC;
  --ocean-50:  #EFF7F6;

  /* Accent — warm Sri Lankan gold */
  --gold-600: #C98A0E;
  --gold-500: #E0A11A;    /* accent / CTA */
  --gold-100: #F7E7C4;

  /* Neutrals */
  --ink:      #0C2B2E;
  --body:     #33484A;
  --muted:    #6A7E80;
  --line:     #DCE7E7;
  --bg:       #FBFDFD;
  --surface:  #FFFFFF;
  --tint:     #EFF6F5;
  --on-dark:  #F3FAFA;

  /* System */
  --radius:   14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(6,58,62,.06), 0 2px 8px rgba(6,58,62,.05);
  --shadow-md: 0 8px 24px rgba(6,58,62,.10);
  --shadow-lg: 0 24px 60px rgba(6,58,62,.18);
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ocean-700);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -.01em; }
.section-sub { margin: 16px 0 0; font-size: 1.08rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ocean-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.btn--gold { --btn-bg: var(--gold-500); --btn-fg: #2A1E00; }
.btn--gold:hover { background: var(--gold-600); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ocean-700); color: var(--ocean-800); }
.btn--light {
  --btn-bg: rgba(255,255,255,.14); --btn-fg: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn--light:hover { background: rgba(255,255,255,.24); }
.btn--block { width: 100%; }

/* =========================================================
   Header / Nav
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: #fff;
  line-height: 1;
  transition: color .35s var(--ease);
}
.brand__name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-500); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  color: rgba(255,255,255,.92);
  font-weight: 500;
  font-size: .97rem;
  padding: 10px 14px;
  border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { background: rgba(255,255,255,.12); }
.nav a:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; white-space: nowrap; }
.btn--wa { white-space: nowrap; }

/* Scrolled state */
.header.is-scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header.is-scrolled .brand__name { color: var(--ink); }
.header.is-scrolled .nav a { color: var(--body); }
.header.is-scrolled .nav a:hover { background: var(--ocean-50); color: var(--ocean-800); }
.header.is-scrolled .btn--light { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); backdrop-filter: none; }
.header.is-scrolled .btn--light:hover { border-color: var(--ocean-700); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.header.is-scrolled .nav-toggle { color: var(--ink); border-color: var(--line); background: transparent; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 120px 0 48px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: #0A5459 url("media/higg.png") center 30% / cover no-repeat;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,58,62,.55) 0%, rgba(6,58,62,.15) 32%, rgba(6,58,62,.35) 70%, rgba(6,58,62,.72) 100%),
    linear-gradient(90deg, rgba(6,58,62,.55) 0%, rgba(6,58,62,0) 60%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(4px);
  padding: 8px 16px; border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero__eyebrow svg { color: var(--gold-500); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  letter-spacing: -.015em;
  max-width: 15ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.hero h1 em { font-style: italic; color: var(--gold-500); }
.hero__lead {
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  max-width: 46ch;
  color: rgba(255,255,255,.92);
}

/* Hero CTAs */
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; border-radius: 16px; }

/* Category quick row */
.hero__cats {
  margin-top: 34px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.hero__cats::-webkit-scrollbar { display: none; }
.hero__cats-title {
  font-family: var(--font-display);
  font-size: 1.15rem; color: #fff; margin: 0 0 14px;
}
.catpill {
  flex: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 92px;
  padding: 14px 10px;
  border-radius: 16px;
  color: rgba(255,255,255,.9);
  font-size: .82rem; font-weight: 600;
  border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  cursor: pointer;
}
.catpill svg { width: 30px; height: 30px; }
.catpill:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.catpill.is-active { color: #fff; border-color: var(--gold-500); }
.catpill.is-active::after { content:""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }

/* =========================================================
   Intro / stats
   ========================================================= */
.intro { background: var(--surface); }
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.intro__lead { font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-family: var(--font-display); color: var(--ink); line-height: 1.35; }
.intro__body { margin-top: 20px; color: var(--muted); font-size: 1.05rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.stat__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--ocean-800); font-weight: 700; line-height: 1; }
.stat__num span { color: var(--gold-600); }
.stat__label { margin-top: 8px; font-size: .95rem; color: var(--muted); font-weight: 500; }

/* =========================================================
   Categories grid
   ========================================================= */
.cats { background: var(--bg); }
.cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.card--tall { grid-row: span 2; min-height: 100%; }
.card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,58,62,0) 30%, rgba(6,58,62,.35) 55%, rgba(6,58,62,.85) 100%);
}
.card:hover img { transform: scale(1.06); }
.card__body { padding: 26px; width: 100%; }
.card__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(224,161,26,.92); color: #2A1E00;
  padding: 5px 12px; border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.card h3 { color: #fff; font-size: 1.5rem; }
.card p { margin: 8px 0 0; color: rgba(255,255,255,.88); font-size: .96rem; }
.card__link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .95rem; color: #fff;
}
.card__link svg { transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
.card:focus-within { outline: 3px solid var(--gold-500); outline-offset: 3px; }
.card__stretch { position: absolute; inset: 0; z-index: 1; }

/* =========================================================
   Why book with us
   ========================================================= */
.why {
  background:
    linear-gradient(rgba(6,58,62,.90), rgba(6,58,62,.94)),
    url("media/tea-pluckers.jpg") center / cover fixed no-repeat;
  color: var(--on-dark); position: relative; overflow: hidden;
}
@media (max-width: 860px) { .why { background-attachment: scroll; } }
.why::before {
  content:""; position: absolute; top: -120px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,154,163,.35), transparent 70%);
}
.why .eyebrow { color: var(--gold-500); }
.why .section-title { color: #fff; }
.why .section-sub { color: rgba(243,250,250,.7); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.feature {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(224,161,26,.4); }
.feature__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(150deg, var(--ocean-600), var(--ocean-800));
  display: grid; place-items: center; color: var(--gold-500);
  margin-bottom: 20px;
}
.feature h3 { color: #fff; font-size: 1.22rem; }
.feature p { margin: 10px 0 0; color: rgba(243,250,250,.72); font-size: .96rem; }

/* =========================================================
   Gallery
   ========================================================= */
.gallery { background: var(--surface); }

/* Cinematic auto-scrolling marquee (two rows, opposite directions) */
.marquee {
  display: grid; gap: 18px;
  /* full-bleed so the film strip runs edge to edge */
  width: 100vw; position: relative;
  left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__row { overflow: hidden; }
.marquee__track {
  display: flex; gap: 18px; width: max-content;
  animation: marquee-left 60s linear infinite;
  will-change: transform;
}
.marquee__row--rev .marquee__track {
  animation-name: marquee-right;
  animation-duration: 72s;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.mslide {
  position: relative; flex: none;
  height: 300px; margin: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--ocean-900);
}
.mslide img { height: 100%; width: auto; display: block; }
.mslide__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 14px;
  color: #fff; font-weight: 600; font-size: .9rem;
  background: linear-gradient(transparent, rgba(4,40,43,.8));
  opacity: 0; transition: opacity .3s var(--ease);
}
.mslide:hover .mslide__cap { opacity: 1; }
@keyframes marquee-left  { from { transform: translateX(0); }      to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); }   to { transform: translateX(0); } }
@media (max-width: 560px) { .mslide { height: 210px; } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* Ken-Burns slow motion on hero + scenic band */
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.14); } }
@media (prefers-reduced-motion: no-preference) {
  .hero__bg { animation: kenburns 26s ease-in-out infinite alternate; }
  .band__bg { animation: kenburns 30s ease-in-out infinite alternate; }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testi { background: var(--ocean-50); }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--gold-500); height: 30px; }
.quote__stars { display: flex; gap: 3px; color: var(--gold-500); margin: 6px 0 16px; }
.quote p { font-size: 1.05rem; color: var(--ink); flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(150deg, var(--ocean-600), var(--ocean-800));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
  flex: none;
}
.quote__name { font-weight: 700; color: var(--ink); }
.quote__meta { font-size: .88rem; color: var(--muted); }

/* =========================================================
   Contact / CTA
   ========================================================= */
.contact { background: var(--bg); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px;
  align-items: stretch;
}
.contact__aside {
  background:
    linear-gradient(160deg, rgba(10,84,89,.84), rgba(6,58,62,.95)),
    url("media/ambuluwawa-tower.jpg") center / cover no-repeat;
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative; overflow: hidden;
}
.contact__aside .eyebrow { color: var(--gold-500); }
.contact__aside h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.contact__aside p { color: rgba(243,250,250,.78); margin: 16px 0 32px; }
.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list .ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center; color: var(--gold-500);
}
.contact__list .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(243,250,250,.6); font-weight: 600; }
.contact__list .val { color: #fff; font-weight: 500; font-size: 1.02rem; }
.contact__link {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 6px; margin: -6px; border-radius: 12px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.contact__link:hover { background: rgba(255,255,255,.07); transform: translateX(2px); }
.contact__link:hover .ico { background: var(--gold-500); color: #2A1E00; border-color: var(--gold-500); }
.contact__link .ico { transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }

/* WhatsApp button */
.btn--wa {
  background: #25D366; color: #05391b;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn--wa:hover { background: #20c65c; transform: translateY(-1px); }
.btn--wa svg { flex: none; }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ocean-700);
  box-shadow: 0 0 0 4px rgba(14,124,134,.14);
}
.form__note { font-size: .85rem; color: var(--muted); margin: 4px 0 0; }
.form__success {
  display: none;
  background: var(--ocean-50);
  border: 1px solid var(--ocean-100);
  color: var(--ocean-800);
  border-radius: 12px; padding: 14px 16px; font-weight: 500;
  margin-bottom: 18px;
}
.form__success.show { display: block; }

/* Checkbox chips (multi-select interests) */
.checks { display: flex; flex-wrap: wrap; gap: 10px; }
.check { position: relative; }
.check input {
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.check span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .92rem; font-weight: 600; color: var(--body);
  cursor: pointer; user-select: none;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.check span::before {
  content: ""; width: 16px; height: 16px; border-radius: 5px;
  border: 1.6px solid var(--line); flex: none;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.check input:checked + span {
  border-color: var(--ocean-700);
  background: var(--ocean-50);
  color: var(--ocean-800);
}
.check input:checked + span::before {
  background: var(--ocean-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-color: var(--ocean-700);
}
.check input:focus-visible + span { outline: 3px solid var(--gold-500); outline-offset: 2px; }

/* =========================================================
   Services — what's included / not included
   ========================================================= */
.services { background: var(--tint); }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.incl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.incl-card--yes { border-top: 4px solid var(--ocean-700); }
.incl-card--no  { border-top: 4px solid var(--gold-500); }
.incl-card h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.4rem; margin-bottom: 22px;
}
.incl-card h3 .badge {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff;
}
.incl-card--yes .badge { background: var(--ocean-700); }
.incl-card--no  .badge { background: var(--gold-500); color: #2A1E00; }
.incl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.incl-list li { display: flex; gap: 13px; align-items: flex-start; }
.incl-list .mark { flex: none; margin-top: 2px; }
.incl-card--yes .mark { color: var(--ocean-600); }
.incl-card--no .mark { color: var(--gold-600); }
.incl-list strong { color: var(--ink); font-weight: 700; display: block; }
.incl-list span { color: var(--muted); font-size: .95rem; }

/* Languages + transport strip */
.svc-extra {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; margin-top: 22px;
}
.svc-panel {
  border-radius: var(--radius-lg); padding: 30px 32px;
}
.svc-panel--lang {
  background: linear-gradient(150deg, var(--ocean-800), var(--ocean-900));
  color: var(--on-dark);
}
.svc-panel--lang .eyebrow { color: var(--gold-500); }
.svc-panel--lang h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.svc-panel--lang p { color: rgba(243,250,250,.75); margin: 0 0 20px; font-size: .96rem; }
.langs { display: flex; flex-wrap: wrap; gap: 10px; }
.lang-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-weight: 600; font-size: .9rem;
  padding: 8px 14px; border-radius: var(--radius-pill);
}
.svc-panel--trans {
  background: var(--surface); border: 1px solid var(--line);
}
.svc-panel--trans h3 { font-size: 1.3rem; margin-bottom: 6px; }
.svc-panel--trans p { color: var(--muted); margin: 0 0 20px; font-size: .96rem; }
.trans-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trans-chip {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 88px; padding: 16px 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  color: var(--ocean-800); font-weight: 600; font-size: .85rem; text-align: center;
  transition: border-color .18s var(--ease), transform .18s var(--ease);
}
.trans-chip:hover { border-color: var(--ocean-700); transform: translateY(-2px); }
.trans-chip .ic { color: var(--gold-600); }

/* =========================================================
   Immersive parallax band
   ========================================================= */
.band {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  color: #fff; text-align: center;
  overflow: hidden;
}
.band__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.band--sig .band__bg { background-image: url("media/nine-arch-hd.jpg"); }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,58,62,.72), rgba(6,58,62,.55));
}
.band .container { position: relative; z-index: 1; }
.band .eyebrow { color: var(--gold-500); justify-content: center; }
.band h2 {
  color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem);
  max-width: 20ch; margin-inline: auto; text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.band p { max-width: 52ch; margin: 18px auto 30px; color: rgba(255,255,255,.9); font-size: 1.1rem; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ocean-900); color: rgba(243,250,250,.7); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .brand__name { color: #fff; }
.footer__about { margin-top: 18px; font-size: .96rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer a:hover { color: var(--gold-500); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; color: #fff;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--gold-500); color: #2A1E00; transform: translateY(-2px); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .88rem;
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, .card img, .slide img { transition: none; }
  .slider__track { transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
.mobile-nav { display: none; }

@media (max-width: 1024px) {
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .card--tall { grid-row: span 1; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav, .header__cta .btn--ghost, .header__cta .btn--wa { display: none; }
  .nav-toggle { display: inline-flex; }
  .contact__grid { grid-template-columns: 1fr; gap: 24px; }
  .testi__grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .svc-extra { grid-template-columns: 1fr; }

  /* Mobile nav panel */
  .mobile-nav {
    display: block;
    position: fixed; inset: 78px 0 auto 0; z-index: 99;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    padding: 16px 24px 24px;
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a { display: block; padding: 14px 8px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-nav a:last-of-type { border-bottom: none; }
  .mobile-nav .btn { margin-top: 16px; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .cats__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .form { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__aside { padding: 36px 28px; }
}
