/* ============================================================================
   MERIDIAN ESCAPES HOLIDAYS — STYLESHEET
   You normally don't need to touch this file. Content lives in data/site.js.
   The only thing worth changing here is the brand colours just below.
   ==========================================================================*/

:root {
  /* ---- BRAND COLOURS (taken from the logo) ---- */
  --navy:        #0a2450;
  --navy-deep:   #061733;
  --navy-soft:   #17376b;
  --teal:        #00a3c4;
  --teal-dark:   #007e99;
  --teal-light:  #e8f7fb;
  --sand:        #f7f4ee;

  /* ---- NEUTRALS ---- */
  --white:       #ffffff;
  --paper:       #f6f8fa;
  --line:        #e4e9f0;
  --ink:         #17202e;
  --ink-soft:    #5a6675;

  /* ---- SHAPE ---- */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --shadow:    0 2px 8px rgba(10,36,80,.06), 0 12px 32px rgba(10,36,80,.07);
  --shadow-lg: 0 4px 14px rgba(10,36,80,.09), 0 24px 56px rgba(10,36,80,.13);

  --wrap: 1200px;
  --nav-h: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, .display {
  font-family: 'Jost', 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--navy);
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ============================ SHARED BITS ================================ */

.eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.section { padding: 88px 0; }
.section--tint { background: var(--paper); }
.section--sand { background: var(--sand); }

.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-head p  { color: var(--ink-soft); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Jost', sans-serif;
  font-size: .97rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 13px 27px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: var(--white); box-shadow: 0 6px 18px rgba(0,163,196,.28); }
.btn--primary:hover { background: var(--teal-dark); box-shadow: 0 10px 24px rgba(0,163,196,.34); }
.btn--navy   { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-soft); }
.btn--ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn--wa { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1eb457; }
.btn--lg { padding: 16px 34px; font-size: 1.03rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================== NAVBAR =================================== */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.nav.is-scrolled { box-shadow: 0 2px 20px rgba(10,36,80,.09); }
.nav__inner {
  max-width: var(--wrap); height: 100%; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo img { height: 74px; width: auto; }
@media (max-width: 600px) { .nav__logo img { height: 54px; } }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a {
  font-family: 'Jost', sans-serif; font-size: .95rem; font-weight: 400;
  color: var(--navy); text-decoration: none; transition: color .18s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--teal-dark); }
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover { color: var(--white); }
.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  position: relative; transition: background .2s;
}
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--navy); transition: transform .22s, top .22s;
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after  { top: 7px; }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__burger span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 24px 22px;
    box-shadow: 0 20px 40px rgba(10,36,80,.12);
    transform: translateY(-130%); transition: transform .28s ease;
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 14px; }
  .nav__links a { display: block; padding: 15px 0; font-size: 1.02rem; }
  /* The rule above turns links into blocks, which would kill the button's
     flex centring — so restate it for the button. */
  .nav__links a.btn {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 14px 22px;
  }
}

/* =============================== HERO ==================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 70px) 24px 80px;
  background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 46%, #05637d 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .42;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(720px 420px at 18% 12%, rgba(0,163,196,.22), transparent 62%),
    radial-gradient(620px 380px at 84% 88%, rgba(0,163,196,.18), transparent 62%);
}
.hero__inner { position: relative; z-index: 2; max-width: 800px; }
.hero__badge {
  display: inline-block;
  font-family: 'Jost', sans-serif; font-size: .8rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: #7fe0f3;
  background: rgba(0,163,196,.16);
  border: 1px solid rgba(127,224,243,.35);
  padding: 7px 18px; border-radius: 100px; margin-bottom: 26px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 span { display: block; color: #7fe0f3; }
.hero p {
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 2vw, 1.16rem);
  max-width: 620px; margin: 0 auto 36px;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------ stats strip ------ */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats__item { padding: 34px 12px; }
.stats__item + .stats__item { border-left: 1px solid var(--line); }
.stats__num {
  font-family: 'Jost', sans-serif; font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 600; color: var(--teal-dark); line-height: 1.1;
}
.stats__label {
  font-size: .8rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px;
}
@media (max-width: 700px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3) { border-left: 0; }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ============================ CARD MEDIA ================================= */
/* Used by destination cards and package cards. Shows the photo if there is
   one, otherwise a branded tile with the emoji — so the site never looks
   broken while photos are still being gathered.                            */

.media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, #0d5f78 55%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__emoji { font-size: 3.1rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,.35)); }
.media__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.94); color: var(--navy);
  font-family: 'Jost', sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.media__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--teal); color: #fff;
  font-family: 'Jost', sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.media__nights {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(6,23,51,.78); color: #fff;
  font-size: .78rem; padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ========================= DESTINATION CARDS ============================= */

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.24rem; margin-bottom: 4px; }
.card__loc { font-size: .87rem; color: var(--ink-soft); margin-bottom: 12px; }
.card__text { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.card__foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.price__label { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.price__value { font-family: 'Jost', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.price__unit  { font-size: .82rem; font-weight: 400; color: var(--ink-soft); }
.card__link {
  font-family: 'Jost', sans-serif; font-size: .92rem; font-weight: 500;
  color: var(--teal-dark); text-decoration: none; white-space: nowrap;
}
.card__link:hover { color: var(--navy); }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.chip {
  font-size: .76rem; color: var(--navy);
  background: var(--teal-light); border: 1px solid #cdeef6;
  padding: 4px 11px; border-radius: 100px;
}

/* ============================== WHY US =================================== */

.why { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; height: 100%; transition: box-shadow .22s, transform .22s; }
.why:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.why h3 { font-size: 1.12rem; margin-bottom: 9px; }
.why p { color: var(--ink-soft); font-size: .93rem; }

/* ==================== TAILOR-MADE: 4-STEP PROCESS ======================== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
  position: relative;
}
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 8px; }
/* the connecting hairline between steps, desktop only */
.step:not(:last-child)::after {
  content: '';
  position: absolute; top: 30px; left: calc(52px + 14px); right: -26px;
  height: 1px; background: linear-gradient(90deg, var(--teal) 0%, rgba(0,163,196,.18) 100%);
}
@media (max-width: 940px) { .step::after { display: none; } }

.step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--teal);
  color: var(--teal-dark);
  font-family: 'Jost', sans-serif; font-size: 1.02rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p  { color: var(--ink-soft); font-size: .93rem; }

/* ================ TAILOR-MADE: "MAKE THIS TRIP YOURS" ==================== */

.custom {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px;
  background: linear-gradient(140deg, var(--teal-light) 0%, #f4fbfd 60%, var(--sand) 100%);
  border: 1px solid #cdeef6;
  border-radius: var(--r-lg);
  padding: 44px;
}
@media (max-width: 880px) { .custom { grid-template-columns: 1fr; gap: 30px; padding: 32px 26px; } }
.custom h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-bottom: 14px; }
.custom p  { color: var(--ink-soft); }
.custom__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.custom__list h4 {
  font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: 16px;
}
.custom__list .ticks li { font-size: .93rem; color: var(--ink); }

/* ============= TAILOR-MADE: INLINE "IT'S FLEXIBLE" NOTE ================== */

.flexnote {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--teal-light);
  border: 1px solid #cdeef6;
  border-radius: var(--r);
  padding: 16px 20px;
  margin: 22px 0 4px;
  font-size: .94rem; color: var(--ink);
}
.flexnote--wide { margin: 0 0 40px; }
.flexnote strong { color: var(--navy); font-weight: 600; }
.flexnote a { color: var(--teal-dark); font-weight: 500; }
.flexnote a:hover { color: var(--navy); }
.flexnote__icon {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; line-height: 1;
}

/* ============================== ABOUT ==================================== */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 20px; }
.split h2 span { display: block; color: var(--teal-dark); }
.split p { color: var(--ink-soft); margin-bottom: 15px; }
.split__panel {
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(140deg, var(--navy) 0%, #0d5f78 60%, var(--teal) 100%);
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
  padding: 40px; box-shadow: var(--shadow-lg);
}
.split__panel img { width: 100%; height: 100%; object-fit: cover; }
.split__panel .mark {
  width: auto; height: auto;
  max-width: 74%; max-height: 46%;
  object-fit: contain; opacity: .96;
}

/* =========================== TESTIMONIALS ================================ */

.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; height: 100%; display: flex; flex-direction: column;
}
.quote__mark { font-family: 'Jost', serif; font-size: 2.6rem; line-height: 1; color: var(--teal); margin-bottom: 6px; }
.quote p { color: var(--ink); font-size: .98rem; flex: 1; }
.quote__who { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote__name { font-family: 'Jost', sans-serif; font-weight: 500; color: var(--navy); }
.quote__trip { font-size: .84rem; color: var(--ink-soft); }

/* ============================ PAGE HERO ================================== */

.pagehero {
  background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 50%, #05637d 100%);
  padding: calc(var(--nav-h) + 66px) 24px 62px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.pagehero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(640px 340px at 78% 20%, rgba(0,163,196,.24), transparent 60%);
}
.pagehero__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.pagehero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; }
.pagehero p { color: rgba(255,255,255,.84); font-size: 1.05rem; }
.pagehero .eyebrow { color: #7fe0f3; }

/* ============================= FILTERS =================================== */

.filters {
  position: sticky; top: var(--nav-h); z-index: 90;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.filters__row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.filters__label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-right: 4px; }
.filter-btn {
  font-family: 'Jost', sans-serif; font-size: .9rem;
  background: var(--white); color: var(--navy);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 17px; cursor: pointer;
  transition: all .18s;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal-dark); }
.filter-btn.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }
@media (max-width: 700px) {
  .filters__row { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filters__label { display: none; }
  .filter-btn { flex: 0 0 auto; }
}

.cat-block { margin-bottom: 60px; }
.cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.cat-head__icon {
  width: 48px; height: 48px; border-radius: 13px; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex: 0 0 auto;
}
.cat-head h2 { font-size: 1.55rem; }
.cat-head span { font-size: .86rem; color: var(--ink-soft); }

.empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty__icon { font-size: 2.4rem; margin-bottom: 10px; }

/* ========================== PACKAGE DETAIL =============================== */

.detail { padding: 44px 0 88px; }
.detail__grid { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
@media (max-width: 980px) { .detail__grid { grid-template-columns: 1fr; gap: 32px; } }

.crumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.crumbs a { color: var(--teal-dark); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.detail__media { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow); }
.detail__media .media { aspect-ratio: 16 / 9; }
.detail__media .media__emoji { font-size: 4.6rem; }
.detail h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.detail__loc { color: var(--ink-soft); margin-bottom: 20px; }
.detail__lead { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 30px; }

.detail h2 { font-size: 1.35rem; margin: 34px 0 16px; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.ticks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--teal-dark); font-weight: 700;
}
.ticks--x li::before { content: '×'; color: #c05656; font-size: 1.15rem; line-height: 1.4; }

.itin { list-style: none; border-left: 2px solid var(--line); padding-left: 26px; display: grid; gap: 22px; }
.itin li { position: relative; }
.itin li::before {
  content: ''; position: absolute; left: -33px; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--teal);
}
.itin__day { font-family: 'Jost', sans-serif; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-dark); }
.itin h3 { font-size: 1.05rem; margin: 2px 0 5px; }
.itin p { color: var(--ink-soft); font-size: .95rem; }

.sticky {
  position: sticky; top: calc(var(--nav-h) + 20px);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow);
}
@media (max-width: 980px) { .sticky { position: static; } }
.sticky__price { font-family: 'Jost', sans-serif; font-size: 2.1rem; font-weight: 600; color: var(--navy); line-height: 1.1; }
.sticky__unit { color: var(--ink-soft); font-size: .9rem; margin-bottom: 18px; }
.sticky__meta { display: grid; gap: 10px; margin: 18px 0 22px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .92rem; }
.sticky__meta div { display: flex; justify-content: space-between; gap: 12px; }
.sticky__meta span:first-child { color: var(--ink-soft); }
.sticky__meta span:last-child { color: var(--navy); font-weight: 500; text-align: right; }
.sticky .btn + .btn { margin-top: 10px; }
.sticky__note { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ============================== FORM ===================================== */

.formcard {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow);
}
.field { margin-bottom: 17px; }
.field label {
  display: block; font-family: 'Jost', sans-serif; font-size: .88rem;
  color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,163,196,.14);
}
.field textarea { min-height: 118px; resize: vertical; }
.field__hint { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: 6px; }
.field__hint--center { text-align: center; margin-top: 14px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; gap: 0; } }
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: var(--r-sm); font-size: .93rem; display: none; }
.form-msg.is-ok   { display: block; background: #e7f8ef; color: #1c6b41; border: 1px solid #b7e7cd; }
.form-msg.is-err  { display: block; background: #fdeaea; color: #9a2f2f; border: 1px solid #f4c4c4; }

/* ============================= CONTACT =================================== */

.info-list { list-style: none; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list__icon {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.info-list__label { font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); }
.info-list a { color: var(--navy); text-decoration: none; font-weight: 500; }
.info-list a:hover { color: var(--teal-dark); }

.faq { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 1.04rem; color: var(--navy);
  padding: 20px 40px 20px 0; position: relative;
}
.faq__q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--teal); transition: transform .2s;
}
.faq.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { display: none; padding: 0 0 20px; color: var(--ink-soft); font-size: .96rem; }
.faq.is-open .faq__a { display: block; }

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

.cta {
  background: linear-gradient(140deg, var(--navy-deep), var(--navy) 55%, #05637d);
  color: var(--white); text-align: center; padding: 78px 24px; position: relative; overflow: hidden;
}
.cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 50% 120%, rgba(0,163,196,.3), transparent 60%);
}
.cta__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.82); margin-bottom: 28px; }
.cta__row { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ============================== FOOTER =================================== */

.footer { background: var(--navy-deep); color: rgba(255,255,255,.68); padding: 62px 0 26px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer h4 {
  color: var(--white); font-size: .82rem; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 500;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,.68); text-decoration: none; transition: color .18s; }
.footer a:hover { color: #7fe0f3; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.footer__social a:hover { background: var(--teal); }
.footer__social svg { width: 17px; height: 17px; fill: #fff; }
.footer__bar {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem;
}

/* ========================== WHATSAPP FLOAT =============================== */

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.42);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 29px; height: 29px; fill: #fff; }
@media (max-width: 600px) { .wa-float { right: 15px; bottom: 15px; width: 52px; height: 52px; } }

/* ============================ UTILITIES ================================== */

.center { text-align: center; }
.mt-md { margin-top: 30px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}
