/* ============================================================
   MY WINGS MY WAY — shared stylesheet
   ============================================================ */
:root{
  --ink:#111A2E;
  --ink-soft:#2A3550;
  --paper:#FBF8F1;
  --paper-deep:#F1EBDD;
  --gold:#C99B4A;
  --gold-soft:#E8CF9E;
  --coral:#E0663F;
  --line:rgba(17,26,46,0.14);
  --radius:14px;
  --max:1200px;
}

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

body{
  font-family:'Figtree', sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

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

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

.label{
  font-family:'Space Grotesk', sans-serif;
  font-size:12px; letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold); font-weight:500;
}

h1,h2,h3{ font-family:'Fraunces', serif; line-height:1.15; }

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,248,241,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav{ display:flex; align-items:center; justify-content:space-between; height:72px; }
.logo{
  font-family:'Fraunces', serif; font-weight:700; font-size:20px;
  display:flex; align-items:center; gap:10px;
  white-space:nowrap;
}
.logo svg{ flex:0 0 auto; }
.logo em{ font-style:normal; color:var(--gold); }
.nav-links{ display:flex; gap:30px; font-weight:500; font-size:15px; }
.nav-links a{ position:relative; padding:4px 0; }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0;
  width:0; height:2px; background:var(--gold);
  transition:width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--ink); font-weight:600; }
.nav-cta{
  background:var(--ink); color:var(--paper);
  padding:10px 22px; border-radius:999px;
  font-weight:600; font-size:14px;
  transition:background 0.2s ease;
}
.nav-cta:hover{ background:var(--ink-soft); }

/* mobile nav */
.menu-btn{
  display:none;
  background:none; border:1px solid var(--line);
  border-radius:8px; padding:8px 12px;
  font-family:'Space Grotesk',sans-serif; font-size:13px;
  cursor:pointer; color:var(--ink);
}
@media(max-width:860px){
  .nav-links{
    display:none;
    position:absolute; top:72px; left:0; right:0;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    flex-direction:column; gap:0; padding:8px 24px 16px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 0; border-bottom:1px solid var(--line); }
  .nav-links a:last-child{ border-bottom:none; }
  .menu-btn{ display:block; }
  .nav-cta{ display:none; }
}

/* ---------- BUTTONS ---------- */
.btn-gold{
  display:inline-block;
  background:var(--gold); color:var(--ink);
  padding:14px 30px; border-radius:999px;
  font-weight:600; font-size:15px;
  border:none; cursor:pointer;
  font-family:'Figtree',sans-serif;
  transition:transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow:0 6px 24px rgba(201,155,74,0.35);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 10px 30px rgba(201,155,74,0.45); }
.btn-ghost{
  display:inline-block;
  border:1px solid rgba(251,248,241,0.35);
  padding:14px 30px; border-radius:999px;
  font-weight:500; font-size:15px;
  transition:border-color 0.2s ease;
}
.btn-ghost:hover{ border-color:var(--gold); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero{
  background:linear-gradient(180deg, var(--ink) 0%, #1B2745 100%);
  color:var(--paper);
  padding:64px 0 72px;
  position:relative; overflow:hidden;
}
.page-hero.hero-img{
  background:
    linear-gradient(90deg, rgba(17,26,46,0.95) 0%, rgba(17,26,46,0.88) 36%, rgba(17,26,46,0.58) 68%, rgba(17,26,46,0.34) 100%),
    url('images/hero-about.webp') center right / cover no-repeat,
    linear-gradient(180deg, var(--ink) 0%, #1B2745 100%);
  padding:88px 0 96px;
}
@media(max-width:760px){
  .page-hero.hero-img{
    background:
      linear-gradient(180deg, rgba(17,26,46,0.86) 0%, rgba(17,26,46,0.92) 100%),
      url('images/hero-about.webp') center / cover no-repeat,
      linear-gradient(180deg, var(--ink) 0%, #1B2745 100%);
    padding:64px 0 72px;
  }
}
.page-hero h1{ font-size:clamp(32px,4.6vw,52px); font-weight:600; margin:14px 0 16px; }
.page-hero p{ color:rgba(251,248,241,0.75); max-width:600px; font-size:17px; }
.breadcrumb{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.1em;
  color:rgba(251,248,241,0.55);
  margin-bottom:8px;
}
.breadcrumb a:hover{ color:var(--gold-soft); }

.flight-divider{
  position:relative; height:54px;
  z-index:5; pointer-events:none;
}
.fd-line{
  position:absolute; left:24px; right:24px; top:50%;
  height:2px; transform:translateY(-50%);
  background-image:linear-gradient(90deg, var(--gold) 35%, transparent 35%);
  background-size:12px 2px;
  background-repeat:repeat-x;
  opacity:0.8;
}
.fd-plane{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  background:var(--paper);
  padding:0 10px;
  line-height:0;
}

/* ---------- SECTIONS ---------- */
.section{ padding:70px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:40px; gap:20px; flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(26px,3.4vw,38px); font-weight:600; margin-top:10px; }
.section-head a{ font-weight:600; color:var(--coral); font-size:15px; white-space:nowrap; }

/* ---------- BOARDING PASS CARDS ---------- */
.passes{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  gap:26px;
}
.pass{
  background:#fff; border-radius:var(--radius);
  border:1px solid var(--line);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.pass:hover{ transform:translateY(-5px); box-shadow:0 22px 50px rgba(17,26,46,0.13); }
.pass-img{ height:175px; background-size:cover; background-position:center; position:relative; }
.pass-img .tag{
  position:absolute; top:14px; left:14px;
  background:rgba(17,26,46,0.85); color:var(--gold-soft);
  font-family:'Space Grotesk',sans-serif;
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px;
  backdrop-filter:blur(4px);
}
.pass-body{ padding:22px 22px 18px; flex:1; }
.pass-route{
  display:flex; align-items:center; gap:12px;
  font-family:'Space Grotesk',sans-serif;
  font-size:13px; letter-spacing:0.1em;
  color:var(--ink-soft); margin-bottom:12px;
}
.pass-route .dots{
  flex:1; height:1px;
  background-image:linear-gradient(90deg, var(--gold) 40%, transparent 40%);
  background-size:8px 1px; position:relative;
}
.pass-route .dots::after{
  content:'✈'; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-58%);
  font-size:12px; color:var(--gold);
  background:#fff; padding:0 5px;
}
.pass h3{ font-size:20px; font-weight:600; margin-bottom:10px; }
.pass h3 a:hover{ color:var(--coral); }
.pass p{ font-size:14.5px; color:#555F73; }
.pass-stub{
  border-top:2px dashed var(--line);
  padding:14px 22px;
  display:flex; justify-content:space-between; align-items:center;
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.08em;
  color:var(--ink-soft); background:var(--paper);
  position:relative;
}
.pass-stub::before, .pass-stub::after{
  content:''; position:absolute; top:-9px;
  width:18px; height:18px; border-radius:50%;
  background:var(--paper); border:1px solid var(--line);
}
.pass-stub::before{ left:-10px; }
.pass-stub::after{ right:-10px; }
.pass-stub .cost{ color:var(--coral); font-weight:500; }

/* ---------- CATEGORY TILES ---------- */
.cats{ background:var(--paper-deep); }
.cat-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:18px; }
.cat{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); padding:26px 24px;
  transition:border-color 0.2s ease, transform 0.2s ease;
}
.cat:hover{ border-color:var(--gold); transform:translateY(-3px); }
.cat .ic{
  width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg, var(--ink), var(--ink-soft));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; color:var(--gold-soft); font-size:20px;
}
.cat h3{ font-size:18px; margin-bottom:6px; font-weight:600; }
.cat p{ font-size:14px; color:#555F73; }
.cat span{
  display:inline-block; margin-top:12px;
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.12em;
  color:var(--coral); text-transform:uppercase;
}

/* ---------- ARTICLE PAGE ---------- */
.article-hero{ padding:56px 0 40px; }
.article-hero .meta{
  display:flex; gap:18px; flex-wrap:wrap;
  font-family:'Space Grotesk',sans-serif;
  font-size:12.5px; letter-spacing:0.08em;
  color:rgba(251,248,241,0.65);
  margin-top:20px;
}
.article-cover{
  height:340px; border-radius:var(--radius);
  margin-top:-60px; position:relative; z-index:6;
  background-size:cover; background-position:center;
  box-shadow:0 24px 60px rgba(17,26,46,0.2);
}
.article-layout{
  display:grid; grid-template-columns:250px 1fr;
  gap:56px; padding:56px 0 70px;
  align-items:start;
}
.toc{
  position:sticky; top:96px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px; background:#fff;
}
.toc h4{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--ink-soft);
  margin-bottom:14px;
}
.toc a{
  display:block; font-size:14px; color:#555F73;
  padding:6px 0; border-left:2px solid transparent;
  padding-left:12px; margin-left:-12px;
  transition:color 0.2s ease, border-color 0.2s ease;
}
.toc a:hover{ color:var(--coral); border-color:var(--gold); }

.article-body h2{
  font-size:clamp(24px,2.8vw,32px); font-weight:600;
  margin:44px 0 16px; scroll-margin-top:96px;
}
.article-body h2:first-child{ margin-top:0; }
.article-body h3{ font-size:20px; font-weight:600; margin:30px 0 12px; }
.article-body p{ margin-bottom:16px; color:#333D52; }
.article-body ul, .article-body ol{ margin:0 0 16px 22px; color:#333D52; }
.article-body li{ margin-bottom:8px; }

.cost-table{
  width:100%; border-collapse:collapse;
  margin:20px 0 28px; font-size:14.5px;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden;
}
.cost-table th{
  background:var(--ink); color:var(--gold-soft);
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
  text-align:left; padding:12px 16px;
}
.cost-table td{ padding:12px 16px; border-top:1px solid var(--line); }
.cost-table tr:nth-child(even) td{ background:var(--paper); }
.cost-table .total td{ font-weight:600; color:var(--coral); }

.tip-box{
  border-left:3px solid var(--gold);
  background:#fff;
  border-radius:0 var(--radius) var(--radius) 0;
  padding:18px 22px; margin:24px 0;
}
.tip-box strong{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--gold);
  display:block; margin-bottom:6px;
}

.faq{ margin-top:14px; }
.faq details{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px 20px; margin-bottom:12px;
}
.faq summary{
  font-weight:600; cursor:pointer;
  font-size:15.5px; list-style:none;
  display:flex; justify-content:space-between; align-items:center;
}
.faq summary::after{ content:'+'; color:var(--gold); font-size:20px; }
.faq details[open] summary::after{ content:'–'; }
.faq details p{ margin-top:10px; color:#555F73; font-size:14.5px; }

.author-box{
  display:flex; gap:18px; align-items:center;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px; margin-top:48px;
}
.author-box .avatar{
  width:64px; height:64px; border-radius:50%;
  background:linear-gradient(135deg, var(--ink), var(--gold));
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  color:var(--paper); font-family:'Fraunces',serif;
  font-size:22px; font-weight:600;
}
.author-box h4{ font-family:'Fraunces',serif; font-size:17px; margin-bottom:4px; }
.author-box p{ font-size:14px; color:#555F73; }

@media(max-width:900px){
  .article-layout{ grid-template-columns:1fr; gap:32px; }
  .toc{ position:static; }
}

/* ---------- ABOUT / CONTACT ---------- */
.about-grid{
  display:grid; grid-template-columns:0.9fr 1.1fr;
  gap:56px; align-items:center;
}
.about-visual{
  position:relative; border-radius:var(--radius);
  overflow:hidden; aspect-ratio:4/5;
  background:linear-gradient(160deg, var(--ink) 0%, #26335B 60%, #7A5A45 100%);
}
.about-visual .quote{
  position:absolute; inset:auto 24px 24px 24px;
  color:var(--paper);
  font-family:'Fraunces', serif; font-style:italic;
  font-size:19px; line-height:1.5;
}
.about-grid.flip{ grid-template-columns:1.1fr 0.9fr; }
.about-grid h2{ font-size:clamp(26px,3.2vw,36px); font-weight:600; margin:12px 0 18px; }
.about-grid p{ color:#414B60; margin-bottom:16px; }
@media(max-width:900px){
  .about-grid,
  .about-grid.flip{ grid-template-columns:1fr; gap:32px; }
  .about-visual{ aspect-ratio:16/10; }
  /* keep the photo above the text on both blocks, so the two founders read the same */
  .about-grid.flip .about-visual{ order:-1; }
}

.values{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; margin-top:20px; }
.value{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); padding:24px;
}
.value h3{ font-size:17px; font-weight:600; margin-bottom:8px; }
.value p{ font-size:14px; color:#555F73; }

.contact-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:48px; align-items:start;
}
@media(max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-form{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); padding:32px;
}
.contact-form label{
  display:block;
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--ink-soft); margin:18px 0 8px;
}
.contact-form label:first-child{ margin-top:0; }
.contact-form input, .contact-form textarea{
  width:100%; border:1px solid var(--line);
  border-radius:10px; padding:13px 16px;
  font-family:'Figtree',sans-serif; font-size:15px;
  background:var(--paper); outline:none;
  transition:border-color 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus{ border-color:var(--gold); }
.contact-form textarea{ min-height:130px; resize:vertical; }
.contact-form .btn-gold{ margin-top:24px; }
.contact-info h3{ font-size:20px; font-weight:600; margin:22px 0 8px; }
.contact-info p{ color:#555F73; font-size:15px; }
.contact-info a{ color:var(--coral); font-weight:500; }

/* ---------- NEWSLETTER ---------- */
.news{
  background:var(--ink); color:var(--paper);
  border-radius:calc(var(--radius) + 8px);
  padding:56px 40px; text-align:center;
  position:relative; overflow:hidden;
}
.news::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle at 15% 20%, rgba(201,155,74,0.18), transparent 40%),
                   radial-gradient(circle at 85% 80%, rgba(224,102,63,0.14), transparent 40%);
}
.news > *{ position:relative; }
.news h2{ font-size:clamp(24px,3vw,34px); font-weight:600; margin:10px 0 14px; }
.news p{ color:rgba(251,248,241,0.72); max-width:480px; margin:0 auto 28px; }
.news-form{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.news-form input{
  background:rgba(251,248,241,0.1);
  border:1px solid rgba(251,248,241,0.25);
  color:var(--paper); padding:14px 22px;
  border-radius:999px; font-family:'Figtree',sans-serif;
  font-size:15px; width:min(320px,100%); outline:none;
  transition:border-color 0.2s ease;
}
.news-form input::placeholder{ color:rgba(251,248,241,0.5); }
.news-form input:focus{ border-color:var(--gold); }

/* ---------- FOOTER ---------- */
footer{
  margin-top:70px; border-top:1px solid var(--line);
  padding:52px 0 36px;
}
.foot-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px; margin-bottom:40px;
}
.foot-grid h4{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:16px;
}
.foot-grid a{
  display:block; font-size:14.5px; color:#555F73;
  margin-bottom:10px; transition:color 0.2s ease;
}
.foot-grid a:hover{ color:var(--gold); }
.foot-brand p{ font-size:14px; color:#555F73; max-width:280px; margin-top:12px; }
.foot-social{ display:flex; gap:10px; margin-top:18px; }
.foot-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--line); color:#7A8299;
  transition:color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}
.foot-social a:hover{
  color:#C99B4A; border-color:#C99B4A;
  background:rgba(201,155,74,.08); transform:translateY(-2px);
}
.contact-social a{ color:#C99B4A; font-weight:600; }
.foot-bottom{
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:#7A8299;
  border-top:1px solid var(--line);
  padding-top:24px; flex-wrap:wrap; gap:12px;
}
@media(max-width:820px){ .foot-grid{ grid-template-columns:1fr 1fr; } }

@media(prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; }
}

/* ---------- DESTINATIONS ---------- */
.dest-filter{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-bottom:36px; align-items:center;
}
.dest-filter input{
  flex:1; min-width:240px;
  border:1px solid var(--line); border-radius:999px;
  padding:13px 22px; font-family:'Figtree',sans-serif;
  font-size:15px; background:#fff; outline:none;
  transition:border-color 0.2s ease;
}
.dest-filter input:focus{ border-color:var(--gold); }
.chip{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  border:1px solid var(--line); border-radius:999px;
  padding:8px 16px; cursor:pointer; background:#fff;
  transition:all 0.2s ease; color:var(--ink-soft);
}
.chip:hover, .chip.active{ background:var(--ink); color:var(--gold-soft); border-color:var(--ink); }

.dest-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(300px, 100%),1fr));
  gap:26px;
}
.dest-card{
  position:relative; border-radius:var(--radius);
  overflow:hidden; aspect-ratio:4/3;
  display:flex; align-items:flex-end;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.dest-card:hover{ transform:translateY(-5px); box-shadow:0 22px 50px rgba(17,26,46,0.2); }
.dest-card::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 30%, rgba(10,15,28,0.85) 100%);
  z-index:1;
}
.dest-card .bg{ position:absolute; inset:0; }
.dest-card .inner{
  position:relative; z-index:2;
  padding:24px; color:var(--paper); width:100%;
}
.dest-card .flag{ font-size:26px; margin-bottom:6px; }
.dest-card h3{ font-size:24px; font-weight:600; margin-bottom:4px; }
.dest-card .sub{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold-soft);
}
.dest-card .visa-pill{
  position:absolute; top:16px; right:16px; z-index:2;
  background:rgba(251,248,241,0.92);
  color:var(--ink);
  font-family:'Space Grotesk',sans-serif;
  font-size:11px; letter-spacing:0.1em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px; font-weight:500;
}

/* ---------- COUNTRY PAGE ---------- */
.country-hero{ padding:70px 0 84px; }
.country-hero .flag-big{ font-size:44px; margin-bottom:8px; }
.fact-strip{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:16px; margin-top:-44px; position:relative; z-index:6;
}
.fact{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); padding:18px 20px;
  box-shadow:0 12px 30px rgba(17,26,46,0.08);
}
.fact span{
  font-family:'Space Grotesk',sans-serif;
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--ink-soft); display:block; margin-bottom:4px;
}
.fact strong{ font-family:'Fraunces',serif; font-size:17px; font-weight:600; }

.visa-card{
  background:var(--ink); color:var(--paper);
  border-radius:var(--radius); padding:30px;
  margin:28px 0;
}
.visa-card h3{ color:var(--gold-soft); font-size:20px; margin-bottom:14px; }
.visa-card ul{ margin:0 0 0 20px; }
.visa-card li{ margin-bottom:8px; color:rgba(251,248,241,0.85); font-size:15px; }
.visa-card .warn{
  margin-top:16px; padding-top:14px;
  border-top:1px solid rgba(251,248,241,0.2);
  font-size:13px; color:rgba(251,248,241,0.6);
}
