/* ==========================================================================
   YMBHER BRIGGS — Real Estate & Private Aviation
   Design system: Navy / Light Gray / White — elegant corporate
   ========================================================================== */

:root {
  --navy-950: #060e1f;
  --navy-900: #0a1830;
  --navy-800: #0e2244;
  --navy-700: #142e52;
  --navy-600: #1c3a63;
  --navy-500: #2a4d7f;
  --gray-100: #f4f6f9;
  --gray-150: #eceff4;
  --gray-200: #e2e6ed;
  --gray-400: #b7c0cf;
  --gray-600: #6b7688;
  --gray-700: #4c5566;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(10, 24, 48, 0.08);
  --shadow-md: 0 12px 30px rgba(10, 24, 48, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 24, 48, 0.18);
  --shadow-navy-glow: 0 18px 40px rgba(10, 24, 48, 0.35);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-600);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head p {
  color: var(--gray-700);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
}

section { position: relative; }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-100); }
.bg-navy { background: var(--navy-900); color: var(--white); }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-navy-glow);
  background: var(--navy-800);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-900);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-600);
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-light:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: transform 0.28s ease;
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 14, 31, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.logo span { color: var(--gray-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 22px; font-size: 13.5px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}
.lang-switch:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
  transform: translateY(-2px);
}
.mobile-nav .lang-switch {
  width: auto; height: auto; border-radius: 999px;
  padding: 8px 18px; margin-top: 18px; align-self: flex-start;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
}

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

.hero {
  position: relative;
  background: radial-gradient(ellipse at 50% -10%, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  padding: 170px 0 0;
  overflow: hidden;
  color: var(--white);
}

.hero-watermark {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(90px, 18vw, 260px);
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-photo-wrap {
  position: relative;
  width: 300px;
  height: 340px;
  margin: 0 auto;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px 24px 120px 120px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}

.hero-name {
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 700;
  color: var(--white);
  margin-top: 18px;
  letter-spacing: 0.01em;
}

.hero-tagline {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.65;
}

/* Dual service buttons under photo */
.hero-services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 46px auto 0;
  padding: 0 24px;
}

.service-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 26px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  text-align: left;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1), box-shadow 0.32s ease, background 0.32s ease, border-color 0.32s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.service-pill:hover {
  transform: translateY(-8px) scale(1.015);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.service-pill .eyebrow { color: var(--gray-400); }
.service-pill h3 {
  color: var(--white);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
}
.service-pill p {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.service-pill .pill-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.service-pill .pill-footer svg { transition: transform 0.28s ease; }
.service-pill:hover .pill-footer svg { transform: translate(4px,-4px); }

.hero-bottom-fade {
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  margin-top: 60px;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  padding: 90px 0 70px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-copy p {
  color: var(--gray-700);
  font-size: 16.5px;
  line-height: 1.75;
  margin: 18px 0 26px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.about-stats .stat {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.about-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy-900);
}
.about-stats .stat span {
  font-size: 12.5px;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------------- Marquee strip ---------------- */

.marquee-strip {
  background: var(--navy-900);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-marquee 26s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-track span::after {
  content: "•";
  color: rgba(255,255,255,0.25);
  margin-left: 46px;
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Services detail
   ========================================================================== */

.services {
  padding: 100px 0;
}
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card .icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card > p {
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 22px;
}
.service-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.service-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--navy-800);
}
.service-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--navy-600); }
.service-card-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.service-card-cta .btn { padding: 12px 22px; font-size: 13.5px; }

/* ==========================================================================
   ROI Calculator
   ========================================================================== */

.roi {
  padding: 100px 0;
}
.roi-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.roi-inputs {
  background: var(--navy-900);
  color: var(--white);
  padding: 46px 40px;
}
.roi-inputs h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 6px;
}
.roi-inputs .roi-sub {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  margin-bottom: 26px;
}
.currency-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  background: rgba(255,255,255,0.08);
  padding: 5px;
  border-radius: 999px;
}
.currency-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  padding: 9px 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.25s ease;
}
.currency-toggle button.active {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.roi-inputs .field label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.roi-inputs .field input, .roi-inputs .field select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--white);
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.roi-inputs .field input:focus, .roi-inputs .field select:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
}
.roi-inputs .field input::placeholder { color: rgba(255,255,255,0.35); }
.roi-inputs .field select option { color: var(--navy-900); }

.roi-results {
  padding: 46px 40px;
}
.roi-results h3 { font-size: 21px; margin-bottom: 22px; }
.roi-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.roi-metric {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.roi-metric:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.roi-metric span {
  display: block; font-size: 12px; color: var(--gray-600); margin-bottom: 6px;
  font-weight: 600; letter-spacing: 0.01em;
}
.roi-metric strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy-900);
}
.roi-metric.highlight {
  background: var(--navy-900);
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
}
.roi-metric.highlight span { color: rgba(255,255,255,0.65); }
.roi-metric.highlight strong { color: var(--white); }
.roi-badge {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.roi-metric.highlight .roi-badge.good,
.roi-badge.good { background: #d7ecdd; color: #1e6b3a; }
.roi-metric.highlight .roi-badge.ok,
.roi-badge.ok { background: var(--gray-200); color: var(--navy-800); }
.roi-metric.highlight .roi-badge.bad,
.roi-badge.bad { background: #f3d9d9; color: #8a2b2b; }

.roi-breakdown {
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 6px 18px;
  margin-bottom: 4px;
}
.roi-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-150);
  font-size: 13.5px;
}
.roi-breakdown-row:last-child { border-bottom: none; }
.roi-breakdown-row span { color: var(--gray-700); }
.roi-breakdown-row strong { color: var(--navy-900); font-weight: 700; font-family: var(--font-body); }

.roi-chart-wrap { margin-top: 8px; }
.roi-chart-wrap svg { width: 100%; height: auto; display: block; }
.roi-legend { display: flex; gap: 22px; margin-top: 14px; flex-wrap: wrap; }
.roi-legend span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--gray-700); font-weight: 600;
}
.roi-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

.roi-note {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 22px;
  line-height: 1.6;
}

/* ==========================================================================
   Why choose
   ========================================================================== */

.why {
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.why-card .icon-badge {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--navy-900);
}
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--gray-700); font-size: 14.5px; line-height: 1.6; }

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

.testimonials {
  padding: 100px 0;
  text-align: center;
}
.testi-stars { color: var(--navy-800); font-size: 20px; letter-spacing: 4px; margin-bottom: 24px; }
.testi-slider {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  min-height: 190px;
}
.testi-slide {
  display: none;
  animation: fade-in 0.5s ease;
}
.testi-slide.active { display: block; }
.testi-slide p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-style: italic;
}
.testi-author {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testi-author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.testi-author strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.testi-author span { font-size: 12.5px; color: var(--gray-600); }

.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 34px;
}
.testi-controls button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.testi-controls button:hover {
  background: var(--navy-900); border-color: var(--navy-900); color: var(--white);
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: var(--gray-200); border: none;
}
.testi-dots button.active { background: var(--navy-900); width: 22px; border-radius: 5px; }

@keyframes fade-in { from { opacity: 0; transform: translateY(8px);} to { opacity:1; transform: translateY(0);} }

.testi-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--gray-600);
  border-top: 1px dashed var(--gray-200);
  padding-top: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Schedule / Special request / Calendly
   ========================================================================== */

.schedule {
  padding: 100px 0;
}
.schedule-panel {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.schedule-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.08), transparent 60%);
}
.schedule-copy { position: relative; z-index: 1; }
.schedule-copy p { color: rgba(255,255,255,0.68); margin: 16px 0 26px; line-height: 1.65; }
.schedule-copy h2 { color: var(--white); }
.schedule-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.schedule-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,0.8); }
.schedule-list svg { color: var(--white); flex-shrink: 0; margin-top: 2px; }

.calendly-embed-wrap {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}

.special-request {
  margin-top: 26px;
  position: relative;
  z-index: 1;
}
.special-request summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.special-request summary::-webkit-details-marker { display: none; }
.special-request[open] summary { margin-bottom: 18px; }
.request-form {
  display: grid;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 24px;
}
.request-form input, .request-form textarea, .request-form select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
}
.request-form textarea { min-height: 100px; resize: vertical; }
.request-form label { font-size: 12.5px; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 6px; display: block; }
.request-form ::placeholder { color: rgba(255,255,255,0.35); }

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

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: var(--white); font-size: 14px; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--white); color: var(--navy-900); transform: translateY(-3px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-giant {
  font-family: var(--font-display);
  font-size: clamp(50px, 12vw, 150px);
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  text-align: center;
  margin: 40px 0 10px;
  letter-spacing: 0.02em;
  user-select: none;
}

/* ==========================================================================
   Book a Flight modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 31, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 700;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--gray-600);
  transition: color 0.2s ease, transform 0.2s ease;
}
.modal-close:hover { color: var(--navy-900); transform: rotate(90deg); }

.modal-card h3 { font-size: 24px; margin: 10px 0 8px; }
.modal-sub { color: var(--gray-700); font-size: 14.5px; line-height: 1.6; margin-bottom: 26px; }

.modal-form .field label {
  font-size: 12.5px;
  color: var(--navy-800);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.modal-form .field input,
.modal-form .field select,
.modal-form .field textarea {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--navy-900);
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.modal-form .field textarea { min-height: 80px; resize: vertical; }
.modal-form .field select { appearance: auto; cursor: pointer; }
.modal-form .field input:focus,
.modal-form .field select:focus,
.modal-form .field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  background: var(--white);
}
.modal-form .field input::placeholder,
.modal-form .field textarea::placeholder { color: var(--gray-400); }

/* Honeypot spam-trap field: invisible to real visitors, often filled by bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 14px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}
.form-status:empty { display: none; }
.form-status-success { color: #1e6b3a; }
.form-status-error { color: #b3261e; }
.request-form .form-status-success,
.request-form .form-status-error { color: var(--white); }
.request-form .form-status-error { color: #f3a6a6; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .about-grid, .service-cards, .why-grid, .roi-panel, .schedule-panel, .footer-top {
    grid-template-columns: 1fr;
  }
  .about-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .roi-inputs { border-radius: 0; }
  .calendly-embed-wrap { min-height: 620px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn span.btn-label-full { display: none; }
  .hero-services { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .roi-metric-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { text-align: left; }
  .about-stats { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 600;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav a {
  color: var(--white); font-size: 22px; font-family: var(--font-display);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 30px; }
.mobile-close { background: none; border: none; color: var(--white); font-size: 26px; }
