/* ============================================================
   Wings International — Institutional redesign
   Type: Newsreader (editorial serif) + Hanken Grotesk (UI sans)
   ============================================================ */

:root {
  /* Brand — deep premium blue + restrained brass */
  --paper:      #f3f4f7;
  --paper-2:    #eceef3;
  --white:      #ffffff;
  --ink:        #0d1b34;
  --navy:       #0e2a52;
  --navy-700:   #16407a;
  --navy-900:   #081a33;
  --accent:     #b08a4a;   /* brass/gold — tweakable */
  --accent-2:   #d8bf8c;
  --blue:       #2b5bb0;
  --blue-soft:  #eaf0fa;
  --muted:      #56678a;
  --line:       rgba(13, 27, 52, 0.12);
  --line-soft:  rgba(13, 27, 52, 0.07);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: min(1600px, 93vw);
  --gutter: clamp(22px, 5.5vw, 70px);
  --section-y: clamp(80px, 10vw, 145px);
  --radius: 12px;
  --radius-sm: 8px;

  --ease: cubic-bezier(.22, .68, .18, 1);
  --reveal-dur: .85s;
}

/* density tweak */
[data-density="compact"] {
  --section-y: clamp(52px, 6vw, 92px);
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

::selection { background: var(--navy); color: #fff; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--accent-2); }
.eyebrow.on-dark::before { background: var(--accent-2); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--navy); margin: 0; }
.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.h-section {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}
em.serif-em { font-style: italic; color: var(--accent); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
  white-space: nowrap;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(14, 42, 82, .6);
}
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-gold { background: var(--accent); color: #1d1402; }
.btn-gold:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* ---------- Top strip ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px;
}
.topbar .creds { display: flex; gap: 22px; align-items: center; }
.topbar .creds span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); }
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }
@media (max-width: 760px) { .topbar .creds { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(243,244,247,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), background .3s, box-shadow .3s;
}
.nav.shrink { box-shadow: 0 8px 30px -20px rgba(8,26,51,.5); }
.nav.hide { transform: translateY(-100%); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; cursor: pointer; }
.brand .monogram {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
}
.brand .monogram span { color: var(--accent-2); }
.brand .brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--navy); line-height: 1; white-space: nowrap; }
.brand .brand-sub { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  position: relative;
  white-space: nowrap;
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  padding: 10px 15px; border-radius: 7px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s, background .25s;
}
.nav-link:hover { color: var(--navy); background: rgba(14,42,82,.05); }
.nav-link .chev { transition: transform .3s var(--ease); }
.has-mega:hover .chev { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-weight: 700; color: var(--navy); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; white-space: nowrap; }

/* Mega dropdown */
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(680px, 88vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 70px -30px rgba(8,26,51,.45);
  padding: 22px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  z-index: 300;
}
.has-mega:hover .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 18px; }
.mega-title { grid-column: 1 / -1; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
  transition: background .2s;
}
.mega-item:hover { background: var(--blue-soft); }
.mega-item img { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,.15); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(48px, 6vw, 96px); padding-bottom: clamp(48px, 6vw, 90px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 88% -8%, rgba(43,91,176,.10), transparent 60%),
    radial-gradient(540px 380px at 4% 110%, rgba(176,138,74,.08), transparent 55%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust .tlabel { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hero-trust .tbadges { display: flex; gap: 18px; align-items: center; }
.hero-trust .badge { font-family: var(--serif); font-weight: 600; color: var(--navy); font-size: 1rem; letter-spacing: .02em; }

/* hero image */
.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 40px 80px -40px rgba(8,26,51,.55);
  background: var(--navy);
}
.hero-frame img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,51,.05) 0%, rgba(8,26,51,.0) 30%, rgba(8,26,51,.5) 100%);
}
.hero-tag {
  position: absolute; left: -22px; bottom: 40px; z-index: 3;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 24px 50px -24px rgba(8,26,51,.45);
  display: flex; align-items: center; gap: 14px;
  max-width: 250px;
}
.hero-tag .tnum { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--navy); line-height: 1; }
.hero-tag .ttext { font-size: 0.82rem; color: var(--muted); line-height: 1.35; }
.hero-chip {
  position: absolute; right: -16px; top: 32px; z-index: 3;
  background: var(--navy); color: #fff;
  border-radius: 12px; padding: 12px 16px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: .03em;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 20px 44px -20px rgba(8,26,51,.6);
}
.hero-chip .pulse { width: 8px; height: 8px; border-radius: 50%; background: #5fd07f; box-shadow: 0 0 0 0 rgba(95,208,127,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(95,208,127,.6)} 70%{box-shadow:0 0 0 10px rgba(95,208,127,0)} 100%{box-shadow:0 0 0 0 rgba(95,208,127,0)} }

/* ---------- Logo / accreditation marquee ---------- */
.marquee-wrap { background: var(--white); border-block: 1px solid var(--line-soft); padding-block: 26px; overflow: hidden; }
.marquee-label { text-align: center; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 22px; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 70px; padding-right: 70px; animation: scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 46px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .3s, opacity .3s; }
.marquee-track img:hover { filter: grayscale(0); opacity: 1; }
.marquee-track .word { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); opacity: .5; white-space: nowrap; font-weight: 500; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- About / intro ---------- */
.intro { background: var(--white); }
.intro .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.intro .lead-big { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2.05rem); line-height: 1.35; color: var(--navy); font-weight: 500; }
.intro p { color: var(--muted); margin: 0 0 18px; }
.intro .stat-row { display: flex; gap: 36px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.intro .stat .n { font-family: var(--serif); font-size: 2.2rem; color: var(--navy); font-weight: 600; line-height: 1; }
.intro .stat .l { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

/* ---------- Benefits (numbered editorial) ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 54px; }
.benefit {
  background: var(--white); padding: 34px 28px 30px;
  transition: background .35s var(--ease);
  position: relative;
}
.benefit:hover { background: #fbfaf6; }
.benefit .bnum { font-family: var(--serif); font-size: 0.95rem; color: var(--accent); font-weight: 600; letter-spacing: .05em; }
.benefit h4 { font-size: 1.18rem; margin: 14px 0 10px; line-height: 1.2; }
.benefit p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.6; }
.benefit::after { content: ""; position: absolute; left: 28px; bottom: 0; height: 2px; width: 0; background: var(--accent); transition: width .4s var(--ease); }
.benefit:hover::after { width: 40px; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.service-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; background: var(--white);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 28px 50px -30px rgba(8,26,51,.4); border-color: transparent; }
.service-card .sidx { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--accent); }
.service-card h4 { font-size: 1.15rem; line-height: 1.25; }
.service-card p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- Comparison ---------- */
.compare { background: var(--paper); }
.compare-card { margin-top: 48px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -45px rgba(8,26,51,.5); }
table.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 17px clamp(16px, 2.5vw, 32px); text-align: left; font-size: 0.97rem; border-bottom: 1px solid var(--line-soft); }
.compare-table thead th { background: var(--navy-900); color: #fff; font-family: var(--sans); font-weight: 600; font-size: 0.92rem; letter-spacing: .02em; }
.compare-table thead th.col-abroad { background: var(--navy); position: relative; }
.compare-table thead th .pill { font-size: 0.62rem; background: var(--accent); color: #1d1402; padding: 2px 8px; border-radius: 20px; margin-left: 8px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.compare-table td.col-abroad { background: #fbfaf6; font-weight: 600; color: var(--navy); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--blue-soft); }
.compare-table tbody tr:hover td.col-abroad { background: #f6efdf; }

/* ---------- Destinations ---------- */
.dest { background: var(--white); }
.dest-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; }
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 3.6; cursor: pointer; background: var(--navy);
}
.dest-card.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.dest-card:hover img { transform: scale(1.07); }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,51,.15) 0%, rgba(8,26,51,.05) 40%, rgba(8,26,51,.82) 100%);
}
.dest-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px; display: flex; align-items: center; gap: 11px; color: #fff; }
.dest-meta img { width: 28px; height: 20px; border-radius: 3px; object-fit: cover; box-shadow: 0 2px 6px rgba(0,0,0,.4); flex: none; }
.dest-meta .dname { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; line-height: 1.1; }
.dest-card.featured .dest-meta { padding: 30px; }
.dest-card.featured .dname { font-size: 1.9rem; }
.dest-card.featured .dlead { font-size: 0.9rem; color: rgba(255,255,255,.82); max-width: 40ch; margin-top: 8px; }
.dest-card .go { position: absolute; top: 16px; right: 16px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); display: grid; place-items: center; color: #fff; opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .3s; }
.dest-card:hover .go { opacity: 1; transform: translateY(0); }

/* ---------- Stats band ---------- */
.stats { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 0%, rgba(43,91,176,.25), transparent 60%); }
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-block { text-align: left; border-left: 2px solid rgba(216,191,140,.4); padding-left: 22px; }
.stat-block .num { font-family: var(--serif); font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 600; line-height: 1; color: #fff; }
.stat-block .num .suffix { color: var(--accent-2); }
.stat-block .label { margin-top: 12px; font-size: 0.92rem; color: rgba(255,255,255,.7); letter-spacing: .02em; }

/* ---------- Founder ---------- */
.founder { background: var(--paper); }
.founder .grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.founder-photo { position: relative; }
.founder-photo .pf { border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 70px -40px rgba(8,26,51,.5); aspect-ratio: 4/5; }
.founder-photo .pf img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-photo .quote-mark { position: absolute; top: -24px; left: -16px; font-family: var(--serif); font-size: 7rem; line-height: 1; color: var(--accent); opacity: .35; }
.founder blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.95rem); line-height: 1.4; color: var(--navy); margin: 0 0 26px; font-weight: 500; }
.founder p { color: var(--muted); margin: 0 0 16px; font-size: 1rem; }
.founder .sign { margin-top: 26px; }
.founder .sign .nm { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); font-weight: 600; }
.founder .sign .ro { font-size: 0.85rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Testimonials ---------- */
.testi { background: var(--white); }
.testi-viewport { overflow: hidden; margin-top: 50px; }
.testi-track { display: flex; transition: transform .7s var(--ease); }
.testi-slide { min-width: 100%; display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; padding: 6px; }
.testi-slide .ph { width: clamp(120px, 16vw, 190px); aspect-ratio: 1; border-radius: 14px; overflow: hidden; flex: none; box-shadow: 0 24px 44px -28px rgba(8,26,51,.5); }
.testi-slide .ph img { width: 100%; height: 100%; object-fit: cover; }
.testi-slide blockquote { font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.9rem); line-height: 1.4; color: var(--navy); margin: 0 0 22px; font-weight: 500; }
.testi-slide .who { font-weight: 700; color: var(--ink); }
.testi-slide .who span { display: block; font-weight: 500; color: var(--muted); font-size: 0.9rem; margin-top: 2px; }
.testi-controls { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.testi-dots { display: flex; gap: 9px; }
.tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; padding: 0; transition: background .3s, width .3s; }
.tdot.active { background: var(--accent); width: 26px; border-radius: 5px; }
.testi-arrows { margin-left: auto; display: flex; gap: 10px; }
.tarrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--navy); display: grid; place-items: center; transition: background .25s, color .25s, border-color .25s; }
.tarrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- CTA / lead form ---------- */
.cta { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(620px 360px at 12% 0%, rgba(43,91,176,.28), transparent 60%), radial-gradient(500px 320px at 100% 100%, rgba(176,138,74,.16), transparent 55%); }
.cta .grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.cta h2 { color: #fff; }
.cta .lead { color: rgba(255,255,255,.78); }
.cta .cta-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.cta .cta-list li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: rgba(255,255,255,.9); }
.cta .cta-list .tick { width: 24px; height: 24px; border-radius: 50%; background: rgba(216,191,140,.16); color: var(--accent-2); display: grid; place-items: center; flex: none; }
.lead-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: clamp(26px, 3vw, 38px); backdrop-filter: blur(6px); }
.lead-form h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.lead-form .fsub { color: rgba(255,255,255,.6); font-size: 0.9rem; margin-bottom: 22px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 7px; font-weight: 600; }
.field input, .field select {
  width: 100%; padding: 13px 15px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06);
  color: #fff; font-family: inherit; font-size: 0.97rem; transition: border-color .25s, background .25s;
}
.field input::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent-2); background: rgba(255,255,255,.1); }
.field select option { color: #0d1b34; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form button { width: 100%; margin-top: 8px; justify-content: center; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,.5); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ok { width: 56px; height: 56px; border-radius: 50%; background: rgba(95,208,127,.16); color: #5fd07f; display: grid; place-items: center; margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,.7); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.footer { background: #061325; color: rgba(255,255,255,.72); padding-block: clamp(56px, 7vw, 90px) 30px; }
.footer .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand .brand-name, .footer .brand .monogram { color: #fff; }
.footer .brand .brand-name { color: #fff; }
.footer .fdesc { margin-top: 18px; font-size: 0.92rem; line-height: 1.7; max-width: 32ch; color: rgba(255,255,255,.6); }
.footer h5 { font-family: var(--sans); color: #fff; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 0.92rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer ul a:hover { color: var(--accent-2); }
.footer .fcontact p { font-size: 0.92rem; line-height: 1.6; margin: 0 0 14px; color: rgba(255,255,255,.7); }
.footer .fcontact a { color: #fff; font-weight: 600; }
.footer .socials { display: flex; gap: 10px; margin-top: 20px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: background .25s, border-color .25s; }
.footer .socials a:hover { background: var(--accent); border-color: var(--accent); color: #1d1402; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,.5); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-motion="off"] .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
[data-motion="off"] .hero-frame img { transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .nav-menu { gap: 2px; }
  .nav-link { padding: 9px 11px; font-size: 0.9rem; }
  .nav-actions { gap: 12px; }
  .nav .container { gap: 16px; }
  .nav-actions .nav-phone { display: none; }
}
@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .cta .grid, .intro .grid, .founder .grid { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-menu { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); }
  .nav-actions .nav-phone { display: none; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.featured { grid-column: span 2; grid-row: auto; }
  .testi-slide { grid-template-columns: 1fr; text-align: left; }
  .testi-slide .ph { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr; }
  .hero-tag { left: 8px; }
  .hero-chip { right: 8px; }
}
@media (max-width: 480px) {
  .benefits-grid, .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .intro .stat-row { flex-wrap: wrap; gap: 24px; }
}

/* ---------- Mobile drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 500; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(8,26,51,.5); opacity: 0; transition: opacity .35s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(360px, 86vw); background: var(--white); transform: translateX(100%); transition: transform .4s var(--ease); padding: 26px; overflow-y: auto; }
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a { display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line-soft); font-family: var(--serif); }
.drawer-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 9px; background: #fff; display: grid; place-items: center; }
