/* ============================================================
   Gliding Tasmania — theme.css
   Custom theme for Grav CMS
   Soaring Club of Tasmania (trading as Gliding Tasmania)
   Last consolidated: May 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B2E52;
  --navy-mid: #163F6B;
  --sky-blue: #2481C3;
  --amber: #E8920A;
  --amber-hover: #D07E06;
  --amber-light: #FDF3E3;
  --pale: #F2F7FC;
  --white: #FFFFFF;
  --text: #1A2535;
  --text-muted: #5A6878;
  --border: #CCC;
  --light-sky-blue: #EBF4FC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 90px;
  background: #0B2E52;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--amber); }

.nav-cta {
  background: var(--amber) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--amber-hover) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy);
  padding: 1.25rem 2rem 1.5rem;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.7rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu a.highlight { color: var(--amber); font-weight: 500; border-bottom: none; margin-top: 0.5rem; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  /* CHANGED: was align-items: center — now flex-end pushes content to bottom third */
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* UPDATED: stronger gradient at the bottom so text stays readable */
  background: linear-gradient(
    to bottom,
    rgba(6, 20, 40, 0.25) 10%,
    rgba(8, 28, 55, 0.10) 50%,
    rgba(6, 24, 40, 0.55) 80%,
    rgba(4, 16, 32, 0.75) 100%
  );
  z-index: 1;
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 11;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  /* CHANGED: was margin-top: -80px — now bottom padding positions text in lower third */
  padding-bottom: 10rem;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  background: var(--amber);
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--amber-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: black;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
  letter-spacing: 0.02em;
}

.btn-outline:hover { border-color: black; background: rgba(255,255,255,0.07); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  padding: 1.8rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.0rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--pale); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 540px;
}

/* ── TWO-COL GRID ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── AEF CARDS ── */
.aef-cards { display: grid; gap: 1rem; margin-top: 2.5rem; }

.aef-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.aef-card:hover { border-color: var(--amber); box-shadow: 0 4px 20px rgba(232,146,10,0.1); }
.aef-card.featured { border-color: var(--amber); background: var(--amber-light); }

.aef-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.aef-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.aef-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.aef-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.aef-price small {
  font-size: 0.85rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

/* ── IMAGE BOXES (about + AEF sections) ── */
.img-box {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0F3B6A, #2481C3);
}

.img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MEMBERSHIP ── */
.mem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.mem-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.25s;
}

.mem-card:hover { box-shadow: 0 8px 32px rgba(11,46,82,0.08); }
.mem-card.popular { border-color: var(--navy); }

.mem-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--navy);
  color: white;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 6px 6px;
}

.mem-type {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.mem-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.mem-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.2rem;
}

.mem-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mem-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.mem-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.mem-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-join {
  display: block;
  text-align: center;
  padding: 11px;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-join:hover { background: var(--navy); color: white; }
.btn-join.solid { background: var(--navy); color: white; }
.btn-join.solid:hover { background: var(--navy-mid); }

/* ── WHEN WE FLY ── */
.fly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  background: var(--amber-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.info-block p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-card {
  background: var(--navy);
  color: white;
  border-radius: 10px;
  padding: 2rem;
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-card > p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.contact-person:last-of-type { border-bottom: none; }

.contact-avatar {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amber);
  flex-shrink: 0;
}

.contact-name { font-size: 0.875rem; font-weight: 500; color: white; }
.contact-phone { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

.contact-details {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-details p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.contact-details span { font-size: 0.875rem; color: rgba(255,255,255,0.7); display: block; margin-bottom: 4px; }

/* ── NEWS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.news-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,46,82,0.1); }

/* UPDATED: was display:block with SVG child — now uses a real <img> tag */
.news-img {
  aspect-ratio: 16/9;
  display: block;
  overflow: hidden;
}

.news-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.03);
}

.news-body { padding: 1.25rem; }

.news-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  background: #0B2E52;
  color: rgba(255,255,255,0.55);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand > p {
  font-size: 1.0rem;
  line-height: 1.75;
  margin-top: 1rem;
  color: rgba(255,255,255,0.38);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p { font-size: 0.78rem; }

.social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover { border-color: var(--amber); color: var(--amber); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes soar {
  0%, 100% { transform: translate(0, 0) rotate(-7deg); }
  50%       { transform: translate(14px, -11px) rotate(-5deg); }
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem 3.5rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .two-col, .fly-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mem-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .container { padding: 0 1.5rem; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
}

/* ════════════════════════════════════════════
   INNER PAGE STYLES
   ════════════════════════════════════════════ */

/* ── PAGE HERO (inner pages, not home) ── */
.page-hero {
  position: relative;
  min-height: 320px;
  height: 18vh;
  max-height: 360px;
  background-color: var(--navy);
  background-image: linear-gradient(160deg, #1e5080 0%, var(--navy) 55%, #050f1e 100%);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-top: 70px; /* offset fixed nav */
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,20,40,0.25) 0%,
    rgba(6,24,40,0.60) 65%,
    rgba(4,16,32,0.82) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 2rem;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.05;
  margin: 0.5rem 0 0.75rem;
}

.page-hero-title em {
  font-style: italic;
  color: var(--amber);
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
}

/* ── AIRCRAFT GRID ── */
.aircraft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.aircraft-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.aircraft-card:hover {
  box-shadow: 0 8px 30px rgba(11,46,82,0.10);
  transform: translateY(-3px);
}

.aircraft-card--tug {
  border-top: 3px solid var(--sky-blue);
}

.aircraft-reg-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11,46,82,0.82);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.aircraft-reg-badge--tug {
  background: rgba(36,129,195,0.85);
}

.aircraft-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pale);
}

.aircraft-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aircraft-type {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.aircraft-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.aircraft-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 1.25rem;
  flex: 1;
}

.aircraft-rate-block {
  background: var(--amber-light);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.1rem;
  border-left: 3px solid var(--amber);
}

.aircraft-rate-block--info {
  background: #EFF6FC;
  border-left-color: var(--sky-blue);
}

.aircraft-rate {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.rate-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}

.rate-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rate-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.aircraft-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.aircraft-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.aircraft-specs li span:first-child {
  color: var(--text);
  font-weight: 500;
}

/* ── HIRE NOTE ── */
.hire-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* ── RESPONSIVE: inner page additions ── */
@media (max-width: 920px) {
  .page-hero-content { padding: 0 1.5rem 2.5rem; }
  .aircraft-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-hero { height: 27vh; min-height: 160px; }
  .page-hero-title { font-size: 2.4rem; }
}

.terms-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.terms-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.terms-section:last-of-type {
  border-bottom: none;
}

.terms-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.terms-section p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-list {
  margin: 0.75rem 0 0.75rem 1.25rem;
  padding: 0;
  list-style: disc;
}

.terms-list li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.terms-footer {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--pale);
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}


/* ── Intro band ── */
.terms-intro-band {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.75;
}
.terms-intro-band svg {
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Layout: two-column on wide screens ── */
.terms-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

/* ── Content column ── */
.terms-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ── Each named section ── */
.terms-section {
  border-top: 2px solid var(--pale);
  padding-top: 2.5rem;
}
.terms-section:first-child {
  border-top: none;
  padding-top: 0;
}

.terms-section-header {
  margin-bottom: 1.75rem;
}

.terms-section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-light);
  border: 1px solid rgba(232,146,10,0.25);
  border-radius: 4px;
  padding: 0.2em 0.7em;
  margin-bottom: 0.6rem;
}

.terms-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}

.terms-body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ── Numbered clause list ── */
.terms-clauses {
  list-style: none;
  counter-reset: clause-counter;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.terms-clauses > li {
  counter-increment: clause-counter;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.terms-clauses > li::before {
  content: counter(clause-counter) ".";
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--pale);
  border: 1px solid rgba(11,46,82,0.12);
  border-radius: 4px;
  min-width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.clause-body {
  font-size: 0.93rem;
  color: #3a3a4a;
  line-height: 1.8;
  padding: 0.4rem 0;
}

/* Alpha sub-clause override */
.terms-clauses--alpha {
  counter-reset: alpha-counter;
}
.terms-clauses--alpha > li {
  counter-increment: alpha-counter;
}
.terms-clauses--alpha > li::before {
  content: counter(alpha-counter, lower-alpha) ".";
}

/* ── Nested sub-clauses (i, ii) ── */
.terms-sub-clauses {
  list-style: lower-roman;
  margin: 0.75rem 0 0.25rem 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.terms-sub-clauses li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 0.25rem;
}

/* ── Sidebar ── */
.terms-sidebar {
  position: sticky;
  top: 100px;
}

.terms-sidebar-card {
  background: white;
  border: 1px solid rgba(11,46,82,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(11,46,82,0.07);
}

.terms-sidebar-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.6rem;
}

.terms-sidebar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.sidebar-card-icon {
  width: 44px;
  height: 44px;
  background: var(--pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }
  .terms-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .terms-sidebar-card {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .terms-intro-band {
    padding: 1.25rem 1.25rem;
  }
  .terms-sidebar {
    grid-template-columns: 1fr;
  }
  .terms-clauses > li::before {
    min-width: 1.6rem;
    height: 1.6rem;
    font-size: 0.75rem;
  }
}


/* ── INTRO ROW: text + download card ── */
.terms-intro-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .terms-intro-row {
    grid-template-columns: 1fr;
  }
}

/* ── DOWNLOAD CARD ── */
.terms-download-card {
  background: var(--amber-light);
  border: 1px solid rgba(232, 146, 10, 0.25);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 100px;
}
.terms-download-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 2px 12px rgba(232,146,10,0.2);
}
.terms-download-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.terms-download-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.terms-download-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}
.terms-download-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── DOCUMENT WRAPPER ── */
.terms-document {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.terms-doc-header {
  background: var(--navy);
  padding: 2.5rem 3rem;
  text-align: center;
}
.terms-doc-badge {
  display: inline-block;
  background: var(--amber);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.terms-doc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin: 0;
}

/* ── CONTENT BLOCKS ── */
.terms-block {
  padding: 2.5rem 3rem;
  border-bottom: 1px solid #e2e8f0;
}
.terms-block:last-of-type {
  border-bottom: none;
}
@media (max-width: 640px) {
  .terms-block {
    padding: 2rem 1.5rem;
  }
  .terms-doc-header {
    padding: 2rem 1.5rem;
  }
}

.terms-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}
.terms-sub-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0.5rem;
}

/* ── NUMBERED CLAUSES ── */
.terms-clauses {
  padding-left: 1.5rem;
  counter-reset: none;
}
.terms-clauses > li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}
.terms-clauses > li > ol {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}
.terms-clauses > li > ol > li {
  margin-bottom: 0.5rem;
}

/* ── GENERIC LIST ── */
.terms-list {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.terms-list > li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 0.5rem;
}
.terms-list > li > ol {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.terms-list--bullets {
  list-style: disc;
}

/* ── BODY TEXT IN BLOCKS ── */
.terms-block p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 0.75rem;
}

/* ── NOTE BOX ── */
.terms-note {
  background: #fff8e1;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #4a3800;
  margin-top: 1.25rem;
}

/* ── FOOTNOTES ── */
.terms-footnotes {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}
.terms-footnotes p {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0.4rem !important;
}

/* ── DOCUMENT FOOTER ── */
.terms-doc-footer {
  background: var(--pale);
  padding: 2.5rem 3rem;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}
.terms-doc-footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.clause-body--with-sub {
  display: block !important;
  width: 100%;
  flex: 1;
  min-width: 0;
}

.clause-intro {
  display: block;
  margin: 0 0 0.75rem 0;
  font-size: 0.93rem;
  color: #3a3a4a;
  line-height: 1.8;
}

.clause-body--with-sub .terms-sub-clauses {
  display: block !important;
  list-style: lower-alpha;
  padding-left: 1.5rem;
  margin: 0;
}

.clause-body--with-sub .terms-sub-clauses li {
  display: list-item !important;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}


/* ── Video grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Individual video card ── */
.video-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11,46,82,0.08);
  border: 1px solid rgba(11,46,82,0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(11,46,82,0.15);
}

/* ── Thumbnail area ── */
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
  opacity: 0.8;
}

/* ── Play button overlay ── */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,46,82,0.35);
  transition: background 0.2s ease;
}

.video-card:hover .video-play-btn {
  background: rgba(11,46,82,0.55);
}

.video-play-btn svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  width: 52px;
  height: 52px;
  transition: transform 0.2s ease;
}

.video-card:hover .video-play-btn svg {
  transform: scale(1.15);
}

/* ── Duration badge ── */
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* ── Card text ── */
.video-info {
  padding: 1rem 1.1rem 1.2rem;
}

.video-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.video-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Lightbox modal ── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,15,30,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.video-modal.active {
  display: flex;
}

.video-modal-inner {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  position: relative;
}

.video-modal-title-bar {
  padding: 0.85rem 3rem 0.85rem 1.25rem;
  background: var(--navy-mid);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
}

.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal-desc {
  padding: 0.75rem 1.25rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}

.video-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
  padding: 0.2rem 0.4rem;
}

.video-modal-close:hover {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 580px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .video-modal-inner {
    border-radius: 8px;
  }
}


/* ── Two-column layout ── */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Sticky sidebar nav ── */
.faq-nav {
  position: sticky;
  top: 100px;
}

.faq-nav-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.faq-nav-link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-left: 2px solid rgba(11,46,82,0.1);
  margin-bottom: 0.2rem;
  border-radius: 0 4px 4px 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.faq-nav-link:hover {
  color: var(--navy);
  border-left-color: var(--sky-blue);
  background: var(--pale);
}

.faq-nav-link.active {
  color: var(--navy);
  border-left-color: var(--amber);
  background: var(--amber-light);
  font-weight: 500;
}

.faq-nav-cta {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--navy);
  border-radius: 8px;
  text-align: center;
}

.faq-nav-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── FAQ content column ── */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ── FAQ group (category) ── */
.faq-group {
  scroll-margin-top: 100px;
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--pale);
}

.faq-group-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-group-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ── Individual FAQ item ── */
.faq-item {
  border: 1px solid rgba(11,46,82,0.1);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(11,46,82,0.08);
}

.faq-item.open {
  border-color: rgba(11,46,82,0.2);
  box-shadow: 0 4px 16px rgba(11,46,82,0.1);
}

/* ── Question button ── */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--pale);
}

.faq-item.open .faq-question {
  background: var(--navy);
  color: white;
}

/* ── Chevron ── */
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
  color: var(--sky-blue);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--amber);
}

/* ── Answer panel ── */
.faq-answer {
  display: none;
  padding: 1.25rem 1.25rem 1.4rem;
  background: white;
  border-top: 1px solid rgba(11,46,82,0.06);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.93rem;
  color: #3a3a4a;
  line-height: 1.8;
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  padding: 0;
}

.faq-answer ul li {
  font-size: 0.93rem;
  color: #3a3a4a;
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
  }
  .faq-nav-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .faq-nav-link {
    border-left: none;
    border: 1px solid rgba(11,46,82,0.15);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    font-size: 0.82rem;
  }
  .faq-nav-link.active {
    background: var(--amber-light);
    border-color: var(--amber);
  }
  .faq-nav-cta {
    display: none;
  }
}

@media (max-width: 500px) {
  .faq-question {
    font-size: 0.9rem;
    padding: 1rem;
  }
  .faq-answer {
    padding: 1rem;
  }
}


/* ── News index — override grid for index page (more breathing room) ── */
.news-grid--index {
  margin-top: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sky-blue);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* ── Empty state ── */
.news-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}
.news-empty svg {
  margin: 0 auto 1.25rem;
  color: rgba(11,46,82,0.2);
  display: block;
}
.news-empty h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* ── Pagination ── */
.news-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.news-pagination .pagination {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}
.news-pagination .pagination li a,
.news-pagination .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid rgba(11,46,82,0.15);
  transition: background 0.2s, color 0.2s;
}
.news-pagination .pagination li.active span,
.news-pagination .pagination li a:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ── POST HERO category label ── */
.post-hero-category {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* ── Post layout: article + sidebar ── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}

/* ── Article ── */
.post-article {
  min-width: 0;
}

.post-lead {
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.75;
  font-weight: 500;
  border-left: 3px solid var(--amber);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

/* ── Post body content (Grav renders markdown here) ── */
.post-content {
  font-size: 0.97rem;
  color: #3a3a4a;
  line-height: 1.85;
}

.post-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}

.post-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.6rem;
}

.post-content p {
  margin-bottom: 1.25rem;
}

.post-content ul, .post-content ol {
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
}

.post-content li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}

.post-content img {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: block;
}

.post-content a {
  color: var(--sky-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--amber-light);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--navy);
}

/* ── Post footer ── */
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11,46,82,0.1);
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.post-back-link:hover { color: var(--sky-blue); }

.post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.post-share a {
  color: var(--navy);
  transition: color 0.2s;
}
.post-share a:hover { color: var(--sky-blue); }

/* ── Post sidebar ── */
.post-sidebar {
  position: sticky;
  top: 100px;
}

.post-sidebar-card {
  background: white;
  border: 1px solid rgba(11,46,82,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(11,46,82,0.07);
}

.post-sidebar-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.post-sidebar-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Recent posts list in sidebar ── */
.post-recent-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.post-recent-list li {
  border-top: 1px solid rgba(11,46,82,0.07);
  padding: 0.6rem 0;
}

.post-recent-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.post-recent-list a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0.15rem;
}

.post-recent-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-recent-title {
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.2s;
}

.post-recent-list a:hover .post-recent-title {
  color: var(--sky-blue);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .news-grid--index {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .post-sidebar-card {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .news-grid--index {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    grid-template-columns: 1fr;
  }
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}


/* ── Trust strip ── */
.aef-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.aef-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Package grid ── */
.aef-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.aef-package-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.aef-package-card--featured {
  border-color: var(--amber);
  background: var(--amber-light);
}

.aef-package-card--starter {
  border-color: var(--navy);
  background: #f4f8fd;
}

.aef-package-card--gift {
  border-style: dashed;
  border-color: var(--sky-blue);
  background: #f0f7ff;
}

.aef-package-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--amber);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 6px 6px;
}

.aef-package-badge--starter {
  background: var(--navy);
}

.aef-package-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.aef-package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.aef-package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.aef-package-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.aef-package-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  padding: 0;
}

.aef-package-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.aef-package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.aef-package-footer {
  border-top: 1px solid rgba(11,46,82,0.08);
  padding-top: 1.25rem;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy);
  color: white;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 0.75rem;
}

.btn-book:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-book--featured {
  background: var(--amber);
}

.btn-book--featured:hover { background: #d4820a; }

.aef-package-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── What to expect ── */
.aef-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.aef-expect-card {
  padding: 1.5rem;
  border-top: 2px solid var(--amber);
}

.aef-expect-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--amber);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.aef-expect-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.aef-expect-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Info blocks ── */
.aef-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.aef-info-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}

.aef-info-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1rem;
}

.aef-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.aef-info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aef-info-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.aef-info-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* ── Risk notice ── */
.aef-risk-notice {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff8f0;
  border: 1px solid #f0c070;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.83rem;
  color: #7a5520;
  line-height: 1.65;
}

/* ── Booking section ── */
.aef-book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.aef-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aef-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--pale);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
}

.aef-contact-avatar {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.aef-contact-name {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}

.aef-contact-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.aef-contact-phone {
  font-size: 1rem;
  color: var(--sky-blue);
  font-weight: 500;
  text-decoration: none;
}

.aef-contact-phone:hover { text-decoration: underline; }

.aef-book-image { position: relative; }

.aef-book-fact {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--navy);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(11,46,82,0.25);
}

.aef-book-fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}

.aef-book-fact-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
  max-width: 120px;
  line-height: 1.4;
}

/* ── AEF Responsive ── */
@media (max-width: 960px) {
  .aef-package-grid { grid-template-columns: 1fr; }
  .aef-expect-grid { grid-template-columns: repeat(2, 1fr); }
  .aef-info-grid { grid-template-columns: 1fr; }
  .aef-book-grid { grid-template-columns: 1fr; gap: 3rem; }
  .aef-book-fact { display: none; }
}

@media (max-width: 600px) {
  .aef-expect-grid { grid-template-columns: 1fr; }
}


.contact-section {
  padding: 4rem 0 5rem;
  background: var(--pale);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* --- Form --- */
.contact-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: #555;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group .required { color: var(--amber); }
.form-group .optional  { color: #888; font-size: 0.8rem; font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #cdd8e3;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #222;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-blue);
}

.form-group textarea { resize: vertical; }

.btn-submit {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover  { background: #c97a05; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #e6f4ea;
  border-left: 4px solid #2e7d32;
  color: #1b5e20;
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-error {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #fdecea;
  border-left: 4px solid #c62828;
  color: #b71c1c;
  border-radius: 4px;
  font-size: 0.95rem;
}

/* --- Sidebar cards --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(11,46,82,0.07);
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.contact-icon { font-size: 1.1rem; margin-top: 2px; }

.contact-list a,
.contact-card a:not([class*="btn"]) {
  color: var(--sky-blue);
}

.contact-list a:hover,
.contact-card a:hover { text-decoration: underline; }

.contact-card p {
  font-size: 1.0rem;
  color:  #FDF3E3;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn-directions {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--navy);
  color: #fff !important;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn-directions:hover { background: var(--navy-mid); }

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--sky-blue);
  border-radius: 5px;
  color: var(--sky-blue);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover {
  background: var(--sky-blue);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* Override: ensure buttons inside contact-card keep white text */
.contact-card .btn-primary,
.contact-card a.btn-primary,
.contact-card .btn-join,
.contact-card a[class^="btn"] {
  color: white !important;
}
.contact-card a[class*="btn"] { color: white !important; }
  
}


/* Section wrapper */
.videos-section {
  padding: 80px 0 90px;
  background: var(--pale);
}

/* Section header */
.videos-header {
  text-align: center;
  margin-bottom: 48px;
}

.videos-header .section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.videos-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
}

.videos-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 3-column grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Individual video card */
.video-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(11, 46, 82, 0.10);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(11, 46, 82, 0.18);
}

/* Thumbnail area */
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 46, 82, 0.30);
  transition: background 0.25s ease;
}

.video-card:hover .video-play-btn {
  background: rgba(11, 46, 82, 0.50);
}

.video-play-btn svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  transition: transform 0.2s ease;
}

.video-card:hover .video-play-btn svg {
  transform: scale(1.12);
}

/* Duration badge */
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

/* Text below thumbnail */
.video-info {
  padding: 18px 20px 22px;
}

.video-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sky-blue);
  margin: 0 0 8px;
  line-height: 1.3;
}

.video-card:hover .video-info h3 {
  color: var(--navy);
}

.video-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* "View All" CTA */
.videos-cta {
  text-align: center;
}

.btn-outline-navy {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 12px 28px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

/* Responsive — tablet */
@media (max-width: 900px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — mobile */
@media (max-width: 580px) {
  .videos-section {
    padding: 56px 0 64px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


.news-section .section-header {
  text-align: center;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  box-shadow: 0 6px 24px rgba(11,46,82,0.08);
  transform: translateY(-2px);
}

.why-icon {
  width: 42px;
  height: 42px;
  background: var(--amber-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* tug-spec-grid: superseded by newer version below */


/* ── Eurofox intro: two-column (text+specs | photo) ── */
.tug-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.tug-intro-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: sticky;
  top: 100px;          /* keeps photo visible as prose scrolls */
}

.tug-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Spec cards (2-up grid inside left column) ── */
.tug-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tug-spec-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--pale);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.tug-spec-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tug-spec-body {
  min-width: 0;
}

.tug-spec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.tug-spec-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Feature cards (Why the Eurofox section) ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(11,46,82,0.06);
  border-top: 3px solid var(--amber);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.1rem;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Pawnee heritage callout ── */
.pawnee-callout {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 10px 10px 0;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.pawnee-callout-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pawnee-callout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pawnee-callout-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Pawnee timeline ── */
.pawnee-timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
  margin: 0;
}

/* Vertical connector line */
.pawnee-timeline::before {
  content: '';
  position: absolute;
  left: 80px;                   /* aligns with year column width */
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy) 0%, var(--sky-blue) 60%, var(--amber) 100%);
  opacity: 0.25;
}

.pawnee-timeline-item {
  display: grid;
  grid-template-columns: 80px 24px 1fr;
  gap: 0 1rem;
  align-items: start;
  padding-bottom: 2rem;
}

.pawnee-timeline-item--last {
  padding-bottom: 0;
}

.pawnee-timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  padding-top: 2px;
}

.pawnee-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  margin-top: 4px;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.pawnee-timeline-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .tug-intro-grid {
    grid-template-columns: 1fr;
  }
  .tug-intro-photo {
    position: static;
    aspect-ratio: 16 / 9;
  }
  .tug-spec-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pawnee-callout {
    flex-direction: column;
  }
  .pawnee-timeline::before {
    left: 60px;
  }
  .pawnee-timeline-item {
    grid-template-columns: 60px 20px 1fr;
  }
}

/* ══════════════════════════════════════════════
   BREADCRUMB NAV FIX
   The generic  nav { }  rule in theme.css applies position:fixed to
   every <nav> element, including the breadcrumb inside page-banner.
   This override resets it back to normal document flow.
══════════════════════════════════════════════ */
nav.breadcrumb {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  height: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  z-index: auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.4rem !important;
}

nav.breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
}

nav.breadcrumb a:hover {
  color: var(--amber);
}

nav.breadcrumb span {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}


.page-banner {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy); /* fallback if image slow to load */
  display: flex;
  align-items: flex-end;
  margin-top: 80px; /* clear the fixed nav bar */
  overflow: hidden;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 20, 40, 0.30) 0%,
    rgba(6, 24, 40, 0.62) 60%,
    rgba(4, 16, 32, 0.85) 100%
  );
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 3rem;
}

.page-banner-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: white;
  line-height: 1.05;
  margin: 0.4rem 0 0.75rem;
}

@media (max-width: 768px) {
  .page-banner { min-height: 220px; }
  .page-banner-content { padding: 0 1.5rem 2rem; }
  .page-banner-content h1 { font-size: 2.4rem; }
}


/* -----------------------------------
   WHERE WE FLY — Location facts list
   ----------------------------------- */

.location-facts {
  margin: 1.75rem 0 2rem;
  border: 1px solid rgba(11, 46, 82, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.loc-fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid rgba(11, 46, 82, 0.07);
}

.loc-fact:last-child {
  border-bottom: none;
}

.loc-fact::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.loc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  min-width: 170px;
  flex-shrink: 0;
}

.loc-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #444;
}


/* -----------------------------------
   HISTORY — Wartime callout boxes
   ----------------------------------- */

.history-callout {
  margin: 2rem 0;
  background: var(--pale);
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
}

.history-callout-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.history-callout-item {
  padding-left: 0;
}

.history-callout-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.history-callout-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
}

/* Prose section typography */
.prose p {
  margin-bottom: 1.1rem;
  color: #3a3a3a;
  line-height: 1.75;
}

.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 46, 82, 0.1);
}


/* -----------------------------------
   COME AND VISIT — Info cards
   ----------------------------------- */

.info-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-block-card {
  background: var(--pale);
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.5rem;
  border-top: 3px solid var(--sky-blue);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-block-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.info-block-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.info-block-card a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sky-blue);
  text-decoration: none;
  margin-top: auto;
}

.info-block-card a:hover {
  text-decoration: underline;
}


/* -----------------------------------
   RESPONSIVE
   ----------------------------------- */

@media (max-width: 768px) {
  .location-facts {
    margin: 1.25rem 0 1.5rem;
  }

  .loc-fact {
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
  }

  .loc-label {
    min-width: 100%;
    margin-bottom: 0.1rem;
  }

  .loc-fact::before {
    display: none;
  }

  .history-callout-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .history-callout {
    padding: 1.25rem 1.25rem;
  }

  .info-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────
   Styled tables (Tow Costs, Hire Rates etc.)
   ────────────────────────────────────────────── */

.page-body table,
main table,
article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(11, 46, 82, 0.10);
}

.page-body table thead tr,
main table thead tr,
article table thead tr {
  background: var(--navy);
  color: #fff;
}

.page-body table thead th,
main table thead th,
article table thead th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-body table tbody tr:nth-child(even),
main table tbody tr:nth-child(even),
article table tbody tr:nth-child(even) {
  background: var(--pale);
}

.page-body table tbody tr:hover,
main table tbody tr:hover,
article table tbody tr:hover {
  background: rgba(36, 129, 195, 0.07);
  transition: background 0.15s ease;
}

.page-body table td,
main table td,
article table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(11, 46, 82, 0.07);
  color: var(--navy);
  vertical-align: middle;
}

.page-body table tbody tr:last-child td,
main table tbody tr:last-child td,
article table tbody tr:last-child td {
  border-bottom: none;
}

/* Highlight bold cells (e.g. the 3,000ft example row) */
.page-body table td strong,
main table td strong,
article table td strong {
  color: var(--amber);
  font-weight: 700;
}

/* Notes/caption below tables */
.page-body p em,
main p em,
article p em {
  font-size: 0.85rem;
  color: #5a6a7a;
}

/* ── Rate Table styling (aircraft-hire page) ────────────── */

table.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(11, 46, 82, 0.10);
}

table.rate-table thead tr {
  background: var(--navy);
  color: #fff;
}

table.rate-table thead th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
}

table.rate-table tbody tr:nth-child(even) {
  background: var(--pale);
}

table.rate-table tbody tr:hover {
  background: rgba(36, 129, 195, 0.07);
  transition: background 0.15s ease;
}

table.rate-table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(11, 46, 82, 0.07);
  color: var(--navy);
  vertical-align: middle;
}

table.rate-table tbody tr:last-child td {
  border-bottom: none;
}

table.rate-table td strong {
  color: var(--amber);
  font-weight: 700;
}

/* ── Aircraft Fleet Cards ────────────────────────────────── */

/* Cards need direct padding — no .aircraft-body wrapper in this template */
.aircraft-card {
  padding: 1.5rem;
}

/* Featured card — IS-28 primary trainer */
.aircraft-card.featured {
  border-top: 3px solid var(--amber);
  background: var(--amber-light);
}

/* Tug/tow aircraft card */
.aircraft-card.tug-card {
  border-top: 3px solid var(--sky-blue);
  background: #eff6fc;
}

/* Aircraft type badge e.g. "Primary Trainer" */
.aircraft-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

/* Registration / role subtitle e.g. "VH-GQD" or "Single seat" */
.aircraft-reg {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 0.85rem;
}

/* Push rate block to bottom of card */
.aircraft-rate {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(11, 46, 82, 0.09);
}

/* Large amber price figure */
.aircraft-rate-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.2rem;
}

/* "per minute · members only" label */
.aircraft-rate-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════ */

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* Masonry-style CSS grid */
.gallery-grid {
  columns: 3 280px;
  column-gap: 0.75rem;
}

@media (max-width: 640px) {
  .gallery-grid {
    columns: 2 160px;
    column-gap: 0.5rem;
  }
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--pale);
  display: block;
}

@media (max-width: 640px) {
  .gallery-item {
    margin-bottom: 0.5rem;
  }
}

.gallery-thumb {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 46, 82, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(11, 46, 82, 0.4);
  opacity: 1;
}

/* ── Lightbox ─────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 30, 0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-counter {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.15s;
  z-index: 1001;
}

.lightbox-close:hover { color: #fff; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.8);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  z-index: 1001;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

@media (max-width: 640px) {
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

/* ══════════════════════════════════════════════
   MEMBERSHIP PAGE
══════════════════════════════════════════════ */

/* ── Benefits list ─────────────────────────── */
.mem-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mem-benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mem-benefit-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2.2rem;
  text-align: center;
  margin-top: 0.1rem;
}

.mem-benefit-item strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mem-benefit-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Membership type cards ──────────────────── */
.mem-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px) {
  .mem-type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .mem-type-grid { grid-template-columns: 1fr; }
}

.mem-type-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mem-type-card.featured {
  border-color: var(--amber);
  border-width: 2px;
  background: var(--amber-light);
}

.mem-type-badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.mem-type-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.mem-type-price {
  margin-bottom: 1rem;
}

.mem-type-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.mem-type-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.mem-type-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.mem-type-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex: 1;
}

.mem-type-includes li {
  font-size: 0.82rem;
  color: var(--navy);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(11,46,82,0.07);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mem-type-includes li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.mem-type-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(11,46,82,0.08);
  font-style: italic;
}

/* ── How to join steps ──────────────────────── */
.join-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 680px) {
  .join-steps { flex-direction: column; align-items: center; }
  .join-step-arrow { transform: rotate(90deg); }
}

.join-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.join-step-num {
  width: 3rem;
  height: 3rem;
  background: var(--navy);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.join-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.join-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.join-step-arrow {
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
  padding-top: 1.4rem;
  font-weight: 300;
}

/* ── Form wrapper ───────────────────────────── */
.mem-form-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.mem-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Form sections ──────────────────────────── */
.form-section {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(11,46,82,0.07);
}

.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.form-section-num {
  width: 1.9rem;
  height: 1.9rem;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-section-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 1.5rem;
  line-height: 1.6;
}

/* ── Membership type radio cards ────────────── */
.mem-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 540px) {
  .mem-radio-grid { grid-template-columns: 1fr; }
}

.mem-radio-card {
  cursor: pointer;
  display: block;
}

.mem-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.mem-radio-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--pale);
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}

.mem-radio-card input[type="radio"]:checked + .mem-radio-inner {
  border-color: var(--amber);
  background: var(--amber-light);
}

.mem-radio-card:hover .mem-radio-inner {
  border-color: var(--sky-blue);
}

.mem-radio-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}

.mem-radio-price {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ── Form fields ────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-field:last-child { margin-bottom: 0; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  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='%230B2E52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(36,129,195,0.12);
}

.form-field input.field-invalid,
.form-field select.field-invalid {
  border-color: #e53e3e;
}

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.15rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-3 { display: grid; grid-template-columns: 1fr 110px 90px; gap: 1rem; }

.form-field-grow { flex: 1; }

@media (max-width: 560px) {
  .form-row-2,
  .form-row-3 { grid-template-columns: 1fr; }
}

.req { color: var(--amber); font-weight: 600; }
.optional { color: var(--text-muted); font-weight: 400; font-size: 0.8rem; }

/* ── Checkbox fields ────────────────────────── */
.form-field-checkbox { flex-direction: row; align-items: flex-start; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1.65;
}

.checkbox-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: var(--navy);
  cursor: pointer;
}

/* ── Inline radio group ─────────────────────── */
.radio-inline-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.4rem;
}

.radio-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
}

.radio-inline input[type="radio"] {
  accent-color: var(--navy);
  width: 1rem;
  height: 1rem;
}

/* ── Declaration ────────────────────────────── */
.declaration-checks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Submit row ─────────────────────────────── */
.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-submit {
  min-width: 220px;
  text-align: center;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Form status / error message ────────────── */
.form-status {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: right;
}

.form-status-error {
  color: #c53030;
}

/* ── Success panel ──────────────────────────── */
.form-success-panel {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(11,46,82,0.07);
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  background: #38a169;
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.form-success-panel p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 0.75rem;
  line-height: 1.75;
  font-size: 0.95rem;
}


@media (max-width: 920px) {

  /* Shrink logo text so it fits on one line */
  .nav-logo-text {
    font-size: 1.5rem;
  }

  /* Hide "SOARING CLUB OF TASMANIA" subtitle — too cramped on mobile */
  .nav-logo-sub {
    display: none;
  }

  /* Constrain logo image to nav height */
  .nav-logo img {
    height: 44px;
    width: auto;
  }

  /* Tighten gap between logo image and text */
  .nav-logo {
    gap: 10px;
  }

  /* Align mobile menu with bottom of nav bar */
  .mobile-menu {
    top: 80px;
  }

}

@media (max-width: 480px) {

  /* Even smaller screens — slightly tighter */
  .nav-logo-text {
    font-size: 1.3rem;
  }

  .nav-logo img {
    height: 38px;
  }

}


@media (max-width: 920px) {

  /* Home page hero — reduce from 100vh to something less overwhelming */
  .hero {
    height: 75vh;
    min-height: 480px;
    
  }


  /* Pull text content up a bit since we have less height */
  .hero-content {
    padding-bottom: 4rem;
  }

  /* Inner page photo banner */
  .page-banner {
    min-height: 220px;
  }

}

@media (max-width: 480px) {

  /* Compact further on small phones */
  .hero {
    height: 80vh;
    min-height: 420px;
    background-position: center 100%;
  }
  

  .hero-content {
    padding-bottom: 3rem;
  }

  /* Inner page photo banner — keep it slim */
  .page-banner {
    min-height: 170px;
  }

  /* Inner page hero (non-photo, gradient only) */
  .page-hero {
    height: 24vh;
    min-height: 150px;
  }

}


@media (max-width: 920px) {

  /* Centre content vertically instead of pinning to bottom */
  .hero {
    align-items: center;
  }

  .hero-content {
    padding-bottom: 0;
    padding-top: 5rem; /* clear the fixed nav */
  }

  /* Slightly smaller title so it fits better */
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  /* Tighten the description text */
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

}

@media (max-width: 480px) {

  .hero-title {
    font-size: 2.0rem;
  }

  .hero-desc {
    font-size: 1.0rem;
    margin-bottom: 1.0rem;
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 0;
  }

}

.page-hero .page-hero-title,
.page-hero h1 {
  color: #ffffff;
}


@media (max-width: 480px) {
  .page-hero {
    min-height: 90px;
    height: 14vh;
    max-height: 120px;
  }
}

/* ============================================================
   TERMS & CONDITIONS PAGE  — append to theme.css
   ============================================================ */

/* ── Page wrapper ── */
.terms-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── Download CTA box ── */
.terms-download-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--amber-light, #FDF3E3);
  border: 1.5px solid var(--amber);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
}
.terms-download-text {
  flex: 1;
  min-width: 0;
}
.terms-download-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem;
}
.terms-download-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}
.btn-terms-download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-terms-download svg {
  width: 1rem;
  height: 1rem;
}
.btn-terms-download:hover {
  background: #c97c08;
  color: #fff;
}
@media (max-width: 600px) {
  .terms-download-box { flex-direction: column; align-items: flex-start; }
}

/* ── Document body ── */
.terms-doc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  line-height: 1.75;
  color: #333;
}
.terms-doc p {
  margin: 0 0 1rem;
}
.terms-club-note {
  border-left: 4px solid var(--sky-blue);
  padding-left: 1rem;
  color: var(--navy);
  margin-bottom: 1.5rem !important;
}
.terms-danger {
  color: #555;
}

/* ── Section headings ── */
.terms-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.2rem 0 0.75rem !important;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #dde6f0;
}

/* ── State headings ── */
.terms-state-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 1.6rem 0 0.5rem !important;
}
.terms-state-heading--warning {
  color: #7a4f00;
}

/* ── Ordered lists ── */
.terms-ol {
  margin: 0 0 1rem 0;
  padding-left: 1.6rem;
}
.terms-ol > li {
  margin-bottom: 0.6rem;
  padding-left: 0.3rem;
}
.terms-alpha {
  list-style-type: lower-alpha;
  margin: 0.5rem 0 0 0;
  padding-left: 1.6rem;
}
.terms-alpha > li {
  margin-bottom: 0.4rem;
}
.terms-roman {
  list-style-type: lower-roman;
  margin: 0.5rem 0 0 0;
  padding-left: 1.6rem;
}
.terms-roman > li {
  margin-bottom: 0.4rem;
}
.terms-ul {
  margin: 0.5rem 0 1rem 0;
  padding-left: 1.6rem;
}
.terms-ul > li {
  margin-bottom: 0.3rem;
}

/* ── Definition list ── */
.terms-dl {
  margin: 0 0 1.5rem;
}
.terms-dl dt {
  font-weight: 600;
  color: var(--navy);
  margin-top: 1rem;
}
.terms-dl dd {
  margin: 0.2rem 0 0 1.5rem;
}

/* ── Footer notes ── */
.terms-footer-note {
  font-size: 0.82rem;
  color: #888;
  margin-top: 2rem !important;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}
.terms-footer-note a {
  color: var(--sky-blue);
  text-decoration: underline;
}
.terms-footer-note a:hover {
  color: var(--navy);
}

.terms-version-ref {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #999;
  text-align: center;
  margin: 0.75rem 0 0;
  padding-bottom: 0;
}

/* ── Nav: earlier hamburger breakpoint ── */
@media (min-width: 921px) and (max-width: 1100px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 80px; display: none; }
  .mobile-menu.open { display: block; }
}


/* ============================================================
   END TERMS & CONDITIONS PAGE
   ============================================================ */
   
/* ── Nav: prevent Book a Flight button wrapping — merged into main .nav-cta rule above ── */

/* ── Membership form: legend/fieldset fix ── */


fieldset.form-section::after {
  content: none !important;
  display: none !important;
}

/* ── Nav logo: prevent text wrapping at intermediate widths ── */
.nav-logo-text {
  white-space: nowrap;
}

@media (max-width: 1150px) {
  .nav-logo-text { font-size: 1.85rem; }
}

@media (max-width: 1020px) {
  .nav-logo-text { font-size: 1.55rem; }
  .nav-logo-sub  { display: none; }
}

/* ── Form section top spacing fix ── */
fieldset.form-section {
  padding: 1.25rem 2rem 2rem !important;
}

legend.form-section-title {
  padding: 3.5rem 0 0rem !important;
}

/* ── btn-outline: force white text + stronger border (fix color override) ── */
.btn-outline,
a.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.btn-outline:hover {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* ── Terms sidebar: btn-outline on light background needs dark text ── */
.terms-sidebar-card .btn-outline,
.terms-sidebar-card .btn-outline:link,
.terms-sidebar-card .btn-outline:visited {
  color: var(--navy) !important;
  border-color: var(--navy) !important;
  border-width: 1.5px !important;
}

.terms-sidebar-card .btn-outline:hover {
  background: var(--navy) !important;
  color: #ffffff !important;
}

/* ============================================================
   AEF PRODUCT DETAIL PAGES — append to theme.css
   ============================================================ */

/* ── Hero price overlay ── */
.aef-product-hero .page-hero-content {
  padding-bottom: 3rem;
}
.aef-hero-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.aef-hero-badge {
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 0.25rem;
}
.aef-hero-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.aef-hero-gst {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ── Specs strip ── */
.aef-specs-strip {
  background: var(--navy);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.aef-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.4rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: white;
  text-align: center;
}
.aef-spec:last-child { border-right: none; }
.aef-spec svg { color: var(--amber); flex-shrink: 0; }
.aef-spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.aef-spec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Layout ── */
.aef-product-section { padding-top: 3.5rem; }
.aef-product-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}

/* ── Back link ── */
.aef-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sky-blue);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.aef-back-link:hover { color: var(--navy); }

/* ── Body content (from markdown) ── */
.aef-product-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.aef-product-body h2:first-of-type {
  padding-top: 0;
  border-top: none;
}
.aef-product-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.aef-product-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.aef-product-body ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}
.aef-product-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.aef-product-body a {
  color: var(--sky-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── GFA Membership callout ── */
.aef-membership-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--amber-light);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 1.25rem;
}
.aef-membership-callout svg {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}
.aef-membership-callout strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.aef-membership-callout p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── T&C note ── */
.aef-tc-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
.aef-tc-note a { color: var(--sky-blue); }

/* ── Booking card ── */
.aef-product-sidebar { position: sticky; top: 100px; }

.aef-booking-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(11,46,82,0.09);
  margin-bottom: 1.25rem;
}
.aef-booking-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.aef-booking-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.aef-booking-gst {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.aef-booking-badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.aef-booking-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.aef-booking-btn {
  display: block;
  text-align: center;
  padding: 13px;
  width: 100%;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.aef-booking-or {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0.5rem 0;
}
.aef-booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.aef-booking-contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.aef-booking-contact-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.aef-booking-contact-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sky-blue);
  text-decoration: none;
}
.aef-booking-contact-phone:hover { text-decoration: underline; }
.aef-booking-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ── Sidebar info cards ── */
.aef-sidebar-info {
  background: var(--pale);
  border-radius: 8px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
}
.aef-sidebar-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.65rem;
}
.aef-sidebar-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.aef-sidebar-info li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.aef-sidebar-info li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 600;
}
.aef-sidebar-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.aef-sidebar-contact-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--sky-blue);
  text-decoration: none;
}
.aef-sidebar-contact-link:hover { text-decoration: underline; }
.aef-sidebar-info--availability {
  border-left: 3px solid var(--sky-blue);
  border-radius: 0 8px 8px 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .aef-product-layout {
    grid-template-columns: 1fr;
  }
  .aef-product-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .aef-booking-card { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .aef-specs-strip { justify-content: flex-start; }
  .aef-spec { padding: 1.1rem 1.5rem; }
  .aef-product-sidebar { grid-template-columns: 1fr; }
}
/* ============================================================
   END AEF PRODUCT DETAIL PAGES
   ============================================================ */

/* ── AEF Mile High card ── */
.aef-package-card--mile-high {
  background: #EBF4FC;
  border-color: var(--sky-blue);
}

.aef-package-card--mile-high .aef-package-badge {
  background: var(--sky-blue);
  color: white;
}

.aef-package-card--mile-high .aef-package-price {
  color: var(--navy);
}

.btn-book--mile-high {
  background: var(--sky-blue);
  color: white;
  border-color: var(--sky-blue);
}

.btn-book--mile-high:hover {
  background: #1a6aa8;
  border-color: #1a6aa8;
}


/* ═══════════════════════════════════════
   WEATHER PAGE
   ═══════════════════════════════════════ */

/* Flying day notice bar */
.weather-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #FDF3E3;
  border: 1px solid var(--amber);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Embed wrapper — maintains aspect ratio and caps width */
.weather-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,46,82,0.12);
}

.weather-embed-frame {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

.weather-embed-frame--radar {
  height: 560px;
}

.weather-embed-credit {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Forecast link cards grid */
.weather-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.weather-link-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  border: 1px solid #e2e8ef;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.weather-link-card:hover {
  box-shadow: 0 6px 20px rgba(11,46,82,0.10);
  border-color: var(--sky-blue);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}

.weather-link-card--primary {
  border-color: var(--amber);
  background: #FFFDF9;
}

.weather-link-card--primary:hover {
  border-color: var(--amber);
  box-shadow: 0 6px 20px rgba(232,146,10,0.15);
}

.weather-link-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.weather-link-card--primary .weather-link-icon {
  background: #FDF3E3;
  color: var(--amber);
}

.weather-link-body {
  flex: 1;
  min-width: 0;
}

.weather-link-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.weather-link-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.weather-link-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.weather-link-card:hover .weather-link-arrow {
  color: var(--sky-blue);
  transform: translateX(3px);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .weather-embed-frame {
    height: 360px;
  }

  .weather-embed-frame--radar {
    height: 420px;
  }

  .weather-links-grid {
    grid-template-columns: 1fr;
  }

  .weather-notice {
    font-size: 0.88rem;
  }
}

.weather-radar-img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.2s;
}

.weather-radar-img:hover {
  opacity: 0.9;
}

/* ── Supporters Strip ───────────────────────────────── */
.supporters-strip {
  background: #fff;
  border-top: 2px solid var(--pale);
  padding: 3rem 0 2.5rem;
}

.supporters-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  margin-bottom: 2rem;
}

.supporters-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3.5rem;
}

.supporters-logos a {
  display: flex;
  align-items: center;
}

.supporters-logos a img {
  height: 80px;
  width: auto;
  display: block;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.35s ease;
}

.supporters-logos a:hover img {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 640px) {
  .supporters-logos {
    gap: 1.75rem 2.5rem;
  }
  .supporters-logos a img {
    height: 48px;
  }
}

/* ── Nav logo mobile size ── */
@media (max-width: 640px) {
  .nav-logo img {
    height: 50px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   WEIGHT ELIGIBILITY CHECKER  (aef-product pages)
   ═══════════════════════════════════════════════════════ */

.weight-checker {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 46, 82, 0.12);
}

.weight-checker-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 0.6rem;
}

.weight-checker-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.4rem;
}

.weight-input {
  width: 90px;
  padding: 0.5rem 0.65rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--sky-blue);
  border-radius: 6px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.weight-input:focus {
  border-color: var(--amber);
}

/* Remove browser spin arrows on number input */
.weight-input::-webkit-outer-spin-button,
.weight-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.weight-input[type=number] { -moz-appearance: textfield; }

.btn-check-weight {
  padding: 0.6rem 1rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-check-weight:hover {
  background: var(--navy-mid);
}

.weight-checker-note {
  font-size: 0.78rem;
  color: #6b7a8d;
  margin: 0 0 0.5rem;
}

/* Result panels */
.weight-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
}

/* Eligible */
.weight-ok {
  background: #edf7ed;
  border: 1px solid #a3d4a5;
}

.weight-ok-msg {
  font-size: 0.88rem;
  color: #2e7d32;
  font-weight: 600;
  margin: 0 0 0.85rem;
}

/* Over limit */
.weight-over {
  background: #fff8e1;
  border: 1px solid #ffe082;
}

.weight-over-msg {
  font-size: 0.85rem;
  color: var(--navy);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   AEF PRODUCT LAYOUT ALIASES
   The weight-checker update introduced aef-product-container
   and aef-product-content — these alias them to the existing
   grid/body rules so the layout renders correctly.
   ═══════════════════════════════════════════════════════ */

.aef-product-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}

.aef-product-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.aef-product-content h2:first-of-type {
  padding-top: 0;
  border-top: none;
}

.aef-product-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.aef-product-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.aef-product-content ul li {
  font-family: "DM Sans", sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}

.aef-product-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.aef-product-content a {
  color: var(--sky-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Privacy Policy */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

