/* ================================================
   FLY WITH KMAAS — Stylesheet
   Font: Atkinson Hyperlegible (Braille Institute)
   Optimised for readability & dyslexia accessibility
   ================================================ */

/*
  Atkinson Hyperlegible was designed by the Braille Institute
  to maximise legibility. Each character is uniquely shaped so
  similar letters (b/d, p/q, i/l/1) are clearly distinguishable —
  which also makes it significantly easier for dyslexic readers.
*/
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400&family=Bebas+Neue&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --blue:     #1E56D4;   /* Warriors Blue — brightened for button contrast */
  --blue-d:   #1848B4;   /* Warriors Blue dark (hover)  */
  --gold:     #FFC72C;   /* Warriors Gold  */
  --gray-br:  #BEC0C2;   /* Bridge Gray    */
  --navy:     #0d1b2e;
  --navy-mid: #152235;

  --white:    #ffffff;
  --off:      #f5f4f0;

  --tx1:      #111827;
  --tx2:      #2d3748;   /* slightly darker than before for contrast */
  --tx3:      #5a6677;

  --d-bg:     #0d1b2e;
  --d-mid:    #142030;
  --d-tx:     #c8daea;
  --d-muted:  #7aa3bf;

  /* Atkinson Hyperlegible for all text */
  --font-display: 'Bebas Neue', sans-serif;   /* hero title only */
  --font-body:    'Atkinson Hyperlegible', Arial, sans-serif;

  --nav-h:  64px;
  --max-w:  1160px;
  --pad-x:  clamp(18px, 5vw, 56px);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --trans:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --r:      6px;
  --rl:     14px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;            /* slightly larger base for readability */
  line-height: 1.8;           /* generous line height */
  letter-spacing: 0.012em;   /* mild letter spacing helps dyslexic readers */
  word-spacing: 0.04em;       /* mild word spacing */
  background: var(--white);
  color: var(--tx2);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-align: left;           /* never justified — ragged-right is easier to track */
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* Headings — Atkinson Hyperlegible Bold, not serif */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: var(--tx1);
}

/* Body paragraphs — max line length for comfortable reading */
p { max-width: 68ch; }

/* ── Layout ────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
.sec {
  padding-top:    clamp(22px, 2.5vw, 32px);   /* tight — nav already provides visual separation */
  padding-bottom: clamp(48px, 6vw, 72px);     /* generous — room between sections */
}
.sec-white { background: var(--white); }
.sec-off   { background: var(--off); }
.sec-dark  { background: var(--d-bg); padding-top: clamp(40px, 5vw, 64px); }

/* ── Eyebrow / labels ──────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--blue); }
.eyebrow-d       { color: var(--gold); }
.eyebrow-d::before { background: var(--gold); }

/* ── Section headings ──────────────────────────── */
.sec-title   { font-size: clamp(1.65rem, 2.8vw, 2.4rem); color: var(--tx1); margin-bottom: 10px; }
.sec-title-d { color: var(--white); }
.sec-lead    { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--tx3); line-height: 1.82; margin-bottom: 40px; max-width: 54ch; }
.sec-lead-d  { color: var(--d-muted); }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: var(--r); transition: var(--trans); white-space: nowrap;
}
.btn svg { transition: transform 0.2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-orange        { background: var(--blue); color: #fff; }
.btn-orange:hover  { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,86,212,0.35); }
.btn-outline-dark  { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.38); }
.btn-outline-dark:hover  { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--tx1); border: 1.5px solid rgba(17,24,39,0.22); }
.btn-outline-light:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

@media (max-width: 400px) { .btn { padding: 12px 20px; font-size: 0.85rem; } }

/* ── Navigation ────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
}
/* .scrolled kept for JS compatibility — same styles as default */
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x);
}

/* Logo */
.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-top  { display: flex; align-items: baseline; }
.logo-k    { font-family: var(--font-display); font-size: 1.75rem; color: var(--blue); }
.logo-word { font-family: var(--font-display); font-size: 1.3rem; color: var(--tx1); letter-spacing: 0.1em; }
.logo-sub  { font-family: var(--font-body); font-size: 0.48rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--tx3); }
.site-nav.scrolled .logo-word { color: var(--tx1); }
.site-nav.scrolled .logo-sub  { color: var(--tx3); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--tx3); transition: color var(--trans); position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--blue); transition: width var(--trans); }
.nav-links a:hover, .nav-links a.active { color: var(--tx1); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-nav.scrolled .nav-links a { color: var(--tx3); }
.site-nav.scrolled .nav-links a:hover { color: var(--tx1); }

.nav-cta { background: var(--blue) !important; color: #fff !important; padding: 7px 16px !important; border-radius: var(--r); font-weight: 700 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--blue-d) !important; transform: translateY(-1px); }
.site-nav.scrolled .nav-cta { color: #fff !important; }

/* Mobile hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--tx1); transition: var(--trans); transform-origin: center; }
.site-nav.scrolled .nav-toggle span { background: var(--tx1); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; transform: translateX(100%); transition: transform 0.45s var(--ease); z-index: 5;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; color: var(--tx2); letter-spacing: 0.05em; }
  .nav-links a:hover { color: var(--tx1); }
  .nav-cta { padding: 12px 32px !important; font-size: 0.9rem !important; }
}

/* ═══════════════════════════════════════════════
   HERO — buttons always above the fold
═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/header_homepage.png');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.88);
  transform: scale(1.03); transition: transform 7s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(9,17,30,0.45) 0%,
      rgba(9,17,30,0.15) 30%,
      rgba(9,17,30,0.25) 60%,
      rgba(9,17,30,0.82) 100%),
    linear-gradient(to right, rgba(9,17,30,0.52) 0%, rgba(9,17,30,0.05) 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding-top: calc(var(--nav-h) + 28px);
  padding-bottom: 60px;
  width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}
.hero-eyebrow span { display: block; width: 26px; height: 1.5px; background: var(--gold); }

/* Two-line display title — compact enough to keep buttons above fold */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.5vw, 6.5rem);
  line-height: 0.9; color: #fff; letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
  opacity: 0; animation: fadeUp 0.8s 0.38s var(--ease) forwards;
}
.hero-h1 em { color: var(--gold); font-style: normal; }

.hero-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem); color: rgba(255,255,255,0.92);
  max-width: 50ch; line-height: 1.78; margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  opacity: 0; animation: fadeUp 0.7s 0.55s var(--ease) forwards;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.7s var(--ease) forwards;
}

/* Exact nav height — no extra — because section padding is now small */
section[id] { scroll-margin-top: var(--nav-h); }

/* Instructor badge — floating pill in hero */
.hero-badge {
  position: absolute;
  bottom: 36px;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 17, 30, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  padding: 8px 20px 8px 8px;
  opacity: 0;
  animation: fadeIn 1s 1.3s forwards;
  cursor: default;
}
.hero-badge img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.hero-badge-name {
  display: block;
  font-size: 0.92rem; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.hero-badge-title {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

@media (max-width: 600px) { .hero-badge { display: none; } }
.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0; animation: fadeIn 1s 1.5s forwards; pointer-events: none;
}
.scroll-cue span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.28); border-bottom: 2px solid rgba(255,255,255,0.28); transform: rotate(45deg); animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

@media (max-width: 600px) {
  .hero-inner { padding-top: calc(var(--nav-h) + 20px); }
  .hero-desc  { max-width: 100%; }
  .hero-btns  { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .scroll-cue { display: none; }
}
@media (max-height: 600px) {
  .hero-h1 { font-size: clamp(2.8rem, 6vw, 4rem); margin-bottom: 12px; }
  .hero-eyebrow { margin-bottom: 10px; }
  .hero-desc { margin-bottom: 20px; }
  .hero-inner { padding-top: calc(var(--nav-h) + 10px); }
}

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--rl); padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.svc-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); transform: translateY(-3px); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }

/* Featured / gold Discovery Flight card */
.svc-card-featured {
  background: linear-gradient(160deg, #fffdf0 0%, #fff9e0 100%);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(255,199,44,0.18);
}
.svc-card-featured::before {
  background: var(--gold);
  transform: scaleX(1);   /* always visible, not just on hover */
}

.svc-icon       { width: 38px; height: 38px; color: var(--blue); margin-bottom: 16px; }
.svc-img        { width: 52px; margin-bottom: 16px; }
.svc-title      { font-size: 1.1rem; color: var(--tx1); margin-bottom: 10px; }
.svc-text       { font-size: 0.92rem; color: var(--tx3); line-height: 1.78; }
.svc-price      { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); margin-top: 14px; line-height: 1; display: block; }
.svc-price-note { font-size: 0.78rem; color: var(--tx3); display: block; margin-top: 2px; }

.services-divider { display: flex; align-items: center; gap: 14px; margin-block: 44px; }
.services-divider::before, .services-divider::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.1); }
.services-divider span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tx3); white-space: nowrap; }

/* ═══════════════════════════════════════════════
   PORTRAIT VIDEO SECTION
═══════════════════════════════════════════════ */
.video-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 720px) {
  .video-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Portrait phone-style frame */
.video-portrait {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}
.video-inner {
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 64px rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
  position: relative;
}
.video-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mute/unmute button */
.video-mute-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.video-mute-btn:hover { background: rgba(0,0,0,0.8); }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
/* About — three columns: photo | bio | credentials */
.about-three {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-three { grid-template-columns: 1fr 1fr; }
  .about-three > :first-child { grid-column: span 2; max-height: 280px; }
}
@media (max-width: 560px) {
  .about-three { grid-template-columns: 1fr; }
  .about-three > :first-child { grid-column: span 1; }
}

.about-photo { position: relative; border-radius: var(--rl); overflow: hidden; aspect-ratio: 4/5; max-height: 340px; box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-photo::after { content: ''; position: absolute; bottom: 0; right: 0; width: 52px; height: 52px; background: var(--gold); clip-path: polygon(100% 0, 100% 100%, 0 100%); }
@media (max-width: 768px) { .about-photo { aspect-ratio: 4/5; max-height: 360px; } }

.about-body p { font-size: 0.97rem; color: var(--tx3); line-height: 1.85; margin-bottom: 16px; }
.about-body p:last-of-type { margin-bottom: 28px; }

.creds { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.cred-chip { display: inline-flex; flex-direction: column; align-items: center; background: var(--white); border: 1px solid var(--gray-br); border-radius: var(--r); padding: 9px 13px; transition: var(--trans); }
.cred-chip:hover { border-color: var(--blue); box-shadow: 0 4px 12px rgba(29,86,212,0.15); }
.cred-abbr { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--blue); line-height: 1; }
.cred-name { font-size: 0.6rem; color: var(--tx3); margin-top: 3px; text-align: center; line-height: 1.35; }

/* Flight hours stats */
.flight-stats { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 8px; }
.fs-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.fs-item { background: var(--off); border-radius: var(--r); padding: 10px 8px; text-align: center; }
.fs-num { font-family: var(--font-display); font-size: 1.3rem; color: var(--blue); line-height: 1; display: block; }
.fs-lbl { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx3); display: block; margin-top: 3px; }

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 8px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }
@media (max-width: 400px) { .gallery-grid { grid-auto-rows: 130px; } }

.g-item { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; background: var(--navy-mid); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,46,0.8) 0%, transparent 60%); opacity: 0; transition: opacity var(--trans); display: flex; align-items: flex-end; padding: 12px; }
.g-item:hover .g-overlay { opacity: 1; }
.g-cap { font-size: 0.78rem; color: rgba(255,255,255,0.9); font-weight: 700; }

.g-wide { grid-column: span 2; }
.g-tall { grid-row:    span 2; }
@media (max-width: 640px) { .g-tall { grid-row: span 1; } }

/* Lightbox */
.lb { display: none; position: fixed; inset: 0; background: rgba(5,8,15,0.96); z-index: 9999; align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 94vw; max-height: 90vh; object-fit: contain; border-radius: var(--r); }
.lb-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: rgba(255,255,255,0.65); font-size: 1.8rem; cursor: pointer; line-height: 1; padding: 6px; }
.lb-close:hover { color: #fff; }
.lb-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS — two-up grid
═══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 660px) { .testimonials-grid { grid-template-columns: 1fr; } }

.t-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--rl);
  padding: 32px 28px 28px;
  position: relative;
  transition: box-shadow var(--trans), transform var(--trans);
}
.t-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.09); transform: translateY(-3px); }

/* Jeff's featured card — gold, pops */
.t-card-featured {
  background: linear-gradient(160deg, #fffdf0 0%, #fff5cc 100%);
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 28px rgba(255,199,44,0.22);
}
.t-card-featured:hover { box-shadow: 0 14px 44px rgba(255,199,44,0.3); }

/* Large decorative quote mark */
.t-card-quote {
  font-family: var(--font-body);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 0.7;
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  opacity: 0.5;
}
.t-card-featured .t-card-quote { opacity: 0.8; }

.t-card-text {
  font-size: 1rem;
  color: var(--tx1);
  line-height: 1.78;
  margin-bottom: 22px;
  font-style: normal;
}
.t-card-featured .t-card-text {
  font-size: 1.06rem;   /* slightly larger — make it pop */
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   TESTIMONIAL (old centred — keep vars for any reuse)
═══════════════════════════════════════════════ */
.testimonial-wrap { max-width: 600px; margin-inline: auto; text-align: center; padding-inline: var(--pad-x); }
/* Large quote mark — decorative only */
.t-quote-mark { font-family: var(--font-body); font-size: 5rem; font-weight: 700; color: var(--gold); line-height: 0.6; display: block; margin-bottom: 18px; opacity: 0.3; }
/* Keep testimonial in regular weight — avoid heavy italics for dyslexia */
.t-text  { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--tx1); font-weight: 400; line-height: 1.78; margin-bottom: 24px; }
.t-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; display: block; margin-bottom: 10px; }
.t-name  { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); display: block; }
.t-cert  { font-size: 0.82rem; color: var(--tx3); margin-top: 4px; display: block; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.form-group { margin-bottom: 14px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--tx3); margin-bottom: 5px; }
.form-control {
  width: 100%; background: var(--white); border: 1px solid rgba(0,0,0,0.14);
  border-radius: var(--r); padding: 12px 14px; color: var(--tx1);
  font-family: var(--font-body); font-size: 1rem; line-height: 1.5;
  outline: none; transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,86,212,0.12); }
.form-control::placeholder { color: rgba(0,0,0,0.28); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.contact-info-box { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--rl); padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 18px; }
.ci-row { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; }
.ci-row:last-child { margin-bottom: 0; }
.ci-icon { width: 34px; height: 34px; background: rgba(29,86,212,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.ci-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx3); display: block; margin-bottom: 2px; }
.ci-val   { font-size: 0.92rem; color: var(--tx1); }

.discovery-box { background: linear-gradient(160deg, #fffdf0 0%, #fff9e0 100%); border: 1.5px solid var(--gold); border-radius: var(--rl); padding: 26px; box-shadow: 0 4px 20px rgba(255,199,44,0.18); }
.discovery-box h3 { font-size: 1.1rem; color: var(--tx1); margin-bottom: 4px; }
.discovery-callout {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px !important;
}
.discovery-box p  { font-size: 0.88rem; color: var(--d-muted); line-height: 1.74; margin-bottom: 16px; }
.discovery-price  { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; display: block; }
.discovery-note   { font-size: 0.76rem; color: var(--d-muted); display: block; margin-bottom: 16px; }

/* ═══════════════════════════════════════════════
   CALCULATOR PAGE
═══════════════════════════════════════════════ */
/* Page-level header section above the calculator */
.calc-hero {
  background: var(--off);
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.calc-hero h1 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--tx1); margin-bottom: 6px; }
.calc-hero p  { font-size: 0.88rem; color: var(--tx3); line-height: 1.65; max-width: 60ch; }

/* Wrapper around the calculator tool itself */
.calc-body-wrap {
  padding-top: 32px;
  padding-bottom: 64px;
}

/* Override calculator's body padding since we handle it via wrapper */
body.calc-page { padding: 0 !important; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { background: var(--navy); padding: 44px 0 24px; border-top: 3px solid var(--gold); }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
@media (max-width: 680px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-cols > :first-child { grid-column: span 2; } }
@media (max-width: 400px) { .footer-cols { grid-template-columns: 1fr; } .footer-cols > :first-child { grid-column: span 1; } }

.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-top: 10px; max-width: 260px; line-height: 1.75; }
.footer-col-h   { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 13px; display: block; }
.footer-links li { margin-bottom: 9px; }
.footer-links a  { font-size: 0.88rem; color: rgba(255,255,255,0.85); transition: color var(--trans); }
.footer-links a:hover { color: #fff; }
.site-footer .logo-k  { color: var(--gold); }  /* gold K on dark footer */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════════════════════
   ANIMATIONS & REVEAL
═══════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }

/* Honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
