/* ============================================================
   BARNSTORMERS FLYING CLUB — THEME STYLESHEET
   Corporate colours: Deep Red #8B0000 | Khaki #C8B07A | Black | White
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --red:       #8B0000;
  --red-dark:  #5a0000;
  --red-light: #b52020;
  --khaki:     #C8B07A;
  --khaki-lt:  #f0e8d0;
  --black:     #1a1a1a;
  --grey:      #555;
  --grey-lt:   #f5f0eb;
  --white:     #ffffff;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Open Sans', system-ui, sans-serif;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
  --header-h:   80px;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}


.test-line {
  background: yellow;
  color: black;
  padding: 5px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 600;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--red);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0.6rem auto 0;
}

.red-divider {
  border: none;
  height: 3px;
  background: var(--red);
  opacity: 0.15;
  margin: 0;
}

.caption {
  font-size: 0.82rem;
  color: var(--grey);
  font-style: italic;
  text-align: center;
  margin-top: 0.4rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary   { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn--outline   { background: transparent;  color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--red); }
.btn--ghost     { background: transparent;  color: var(--red);   border-color: var(--red); }
.btn--ghost:hover   { background: var(--red); color: var(--white); }
.btn--full      { width: 100%; text-align: center; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 0; z-index: 9999; background: var(--red); color: var(--white); padding: 8px 16px; }
.skip-link:focus { top: 0; }

/* ════════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════════ */
/* ═════════ HEADER BASE ═════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* MAIN HEADER ROW */
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT (LOGO AREA) */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BRANDING */
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 52px;
  width: auto;
}

.site-titles {
  display: flex;
  flex-direction: column;
}

.site-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.site-tagline {
  font-size: 0.72rem;
  color: var(--khaki);
  font-style: italic;
}

/* CENTER NAV */
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 12px;
}

.nav-menu li a {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: var(--radius);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  background: rgba(255,255,255,0.15);
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LOGIN BUTTON (SINGLE SOURCE OF TRUTH) */
.member-link a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;

  color: var(--white);
  font-weight: 600;
  text-decoration: none;

  transition: all 0.2s ease;
}

.member-link a:hover {
  background: rgba(255,255,255,0.12);
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: url('../images/hero.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(90,0,0,0.82) 0%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  color: var(--white);
  max-width: 740px;
}
.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 0.5rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--khaki-lt);
  margin-bottom: 0.25rem;
}
.hero__latin {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: scrollBounce 1.4s infinite;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translate(0,0);opacity:.6} 50%{transform:rotate(45deg) translate(5px,5px);opacity:1} }

/* ════════════════════════════════════════════════════════════════
   INTRO STRIP
════════════════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--grey-lt);
  padding: 64px 0;
  border-top: 3px solid var(--red);
}
.intro-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.intro-strip__logo img { width: 220px; }
.intro-strip__text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1rem;
}
.intro-strip__text p { color: var(--grey); font-size: 1.05rem; }

/* ════════════════════════════════════════════════════════════════
   PILLARS
════════════════════════════════════════════════════════════════ */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid #e8e0d4;
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-card__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.pillar-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--red); margin-bottom: 0.5rem; }
.pillar-card p { color: var(--grey); font-size: 0.95rem; }

/* ════════════════════════════════════════════════════════════════
   PHOTO STRIP
════════════════════════════════════════════════════════════════ */
.photo-strip { background: var(--black); }
.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.photo-strip__item {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.photo-strip__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}
.photo-strip__item:hover::before { background: rgba(90,0,0,0.55); }
.photo-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.photo-strip__cta { background: var(--red); text-align: center; padding: 24px; }

/* ════════════════════════════════════════════════════════════════
   QUOTE BANNER
════════════════════════════════════════════════════════════════ */
.quote-banner { background: var(--khaki-lt); }

.pullquote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--red-dark);
  line-height: 1.6;
  margin: 0;
}
.pullquote cite { font-size: 0.82rem; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }

.pullquote {
  width: 100%;
  max-width: 100%;
  margin: 2.5rem auto;
  padding: 2rem;
  text-align: center;

  background: #fdf5f5;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  border-radius: var(--radius);

  box-sizing: border-box;
}
.pullquote--inline p { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--red-dark); margin: 0; }

/* ════════════════════════════════════════════════════════════════
   MILESTONES
════════════════════════════════════════════════════════════════ */
.milestones { background: var(--grey-lt); }
.milestones__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.milestone {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--red);
}
.milestone__year {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.milestone p { font-size: 0.9rem; color: var(--grey); }

/* ════════════════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: url('../images/gallery/Naledi - the Barnstormers.png') center / cover no-repeat;
  background-position-y: 42%;
  text-align: center;
  padding: 160px 0;
}
.cta-banner__overlay { position: absolute; inset: 0; background: rgba(90,0,0,0.55); }
.cta-banner__content { position: relative; z-index: 1; color: var(--white); }
.cta-banner__content h2 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 0.75rem; }
.cta-banner__content p  { font-size: 1.05rem; margin-bottom: 1.5rem; opacity: 0.9; }

/* ════════════════════════════════════════════════════════════════
   PAGE BANNER (inner pages)
════════════════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  height: 520px;
  background: url('../images/gallery/Naledi - the Barnstormers.png') center / cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(90,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}
.page-banner__content {
  position: relative;
  z-index: 1;
  padding: 2rem 24px 2.5rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}
.page-banner__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 0.4rem;
}
.page-banner__content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.3rem;
}
.page-banner__content p { color: rgba(255,255,255,0.8); font-size: 1rem; font-style: italic; }

/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════════ */
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-intro__text h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--red); margin-bottom: 1rem; }
.about-intro__image img { border-radius: var(--radius); box-shadow: var(--shadow); }

.heritage { background: var(--grey-lt); }
.heritage__intro { max-width: 820px; margin: 0 auto 2.5rem; text-align: center; font-size: 1.05rem; color: var(--grey); }
.heritage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.heritage__images { display: flex; flex-direction: column; gap: 1rem; }
.heritage__images img { border-radius: var(--radius); box-shadow: var(--shadow); }
.heritage__text p { color: var(--grey); }

.bateleur__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.bateleur__image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.bateleur__text p { color: var(--grey); }

.values-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.value-badge {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.4rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wings-section { background: var(--khaki-lt); }
.wings-section__inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: start; }
.wings-section__text h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--red); margin-bottom: 1rem; }
.wings-section__text h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--red-dark); margin: 1.5rem 0 0.5rem; }
.wings-section__text p  { color: var(--grey); }
.wings-section__image { text-align: center; }
.wings-section__image img { max-width: 220px; border-radius: var(--radius); box-shadow: var(--shadow); }

.wings-colours {
  display: flex;
  gap: 0.75rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.colour-swatch {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
}
.colour-swatch--red   { background: var(--red);   color: #fff; }
.colour-swatch--black { background: #1a1a1a;      color: #fff; }
.colour-swatch--white { background: #fff;          color: #333; border-color: #ccc; }
.colour-swatch--khaki { background: var(--khaki);  color: #333; }

/* ════════════════════════════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════════════════════════════ */
.gallery-section { padding: 0 0 72px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--black);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); opacity: 0.7; }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__zoom { font-size: 2rem; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.gallery-item__caption { color: var(--white); font-size: 0.85rem; font-weight: 600; text-align: center; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.lightbox__inner {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox__img,
#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 6px;
}

.lightbox__caption,
#lightbox-caption {
    color: white;
    margin-top: 10px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}
/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════════ */
.contact-section__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: var(--grey-lt);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
}
.contact-info__logo { margin-bottom: 1.25rem; }
.contact-info h2 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--red); margin-bottom: 0.25rem; }
.contact-info > p { font-style: italic; color: var(--grey); font-size: 0.9rem; margin-bottom: 1.25rem; }
.contact-info__block { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #e0d8cc; }
.contact-info__block:last-of-type { border-bottom: none; }
.contact-info__block h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 0.25rem; font-family: var(--font-sans); }
.contact-info__block p { color: var(--grey); font-size: 0.9rem; }
.contact-info__crest { text-align: center; margin-top: 1rem; opacity: 0.7; }

.contact-form-wrap h2 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--red); margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--grey); margin-bottom: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; gap: 1rem; }
.form-row--half .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--black); }
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #d4c8bc;
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 0.5rem; }

.form-success {
  background: #f0fdf0;
  border: 2px solid #2a7a2a;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.form-success h2 { color: #2a7a2a; font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-success p  { color: var(--grey); margin-bottom: 1.25rem; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--red-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 56px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo  { filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 0.5rem; }
.footer-motto { font-style: italic; font-size: 0.85rem; opacity: 0.6; }

.footer-links h3,
.footer-info  h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--khaki);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.footer-links ul li + li { margin-top: 0.35rem; }
.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-info p { font-size: 0.9rem; margin-bottom: 0.25rem; opacity: 0.8; }
.footer-colours { font-size: 0.78rem; opacity: 0.5; margin-top: 0.5rem; }

.footer-bar {
  background: rgba(0,0,0,0.25);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.78rem;
  opacity: 0.65;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-bar p { margin: 0; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .intro-strip__inner,
  .about-intro__inner,
  .heritage__grid,
  .bateleur__grid,
  .wings-section__inner { grid-template-columns: 1fr; }

  .intro-strip__logo { display: none; }

  .photo-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .contact-section__inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .wings-section__image { text-align: left; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--red-dark);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .primary-nav.is-open { display: block; }
  .nav-menu { flex-direction: column; gap: 0; }
  .nav-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
  }

  .hero__title { font-size: 2.4rem; }

  .form-row { flex-direction: column; }

  .photo-strip__grid { grid-template-columns: 1fr; }
  .photo-strip__item { height: 220px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bar   { flex-direction: column; gap: 0.25rem; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

/* ── Scroll-reveal ──────────────────────────────────────────── */
.will-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.revealed    { opacity: 1; transform: translateY(0); }

/* ── Header scrolled state ──────────────────────────────────── */
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.35); }

.member-link {
    margin-top: 12px;
    text-align: center;
}

.member-link a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
}

.member-link a:hover {
    background: rgba(255,255,255,0.1);
}

.menu-item-login {
    margin-left: 10px;
}

.menu-item-login a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.menu-item-login a:hover {
    background: rgba(255,255,255,0.1);
}

.gallery-album-title {
    text-align: center;
    margin: 50px 0 20px;
    font-size: 28px;
    color: #fff;
    letter-spacing: 1px;
}

.gallery-grid {
    margin-bottom: 40px;
}

.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.album-card {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.album-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.album-card__overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px;
    text-align: center;
}

.album-back {
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.lightbox__inner {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.lightbox__caption {
    color: white;
    margin-top: 10px;
    font-size: 16px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}


```css
/* ── Custom Member Login ───────────────────────────── */

.login-box {
    width: 100%;
    max-width: 420px;
    background: rgba(15,15,15,0.92);
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    text-align: center;
}

.login-box h1 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 38px;
}

.login-subtitle {
    color: #ccc;
    margin-bottom: 35px;
}

.login-box label {
    display: block;
    text-align: left;
    color: #ddd;
    margin-bottom: 8px;
    font-weight: 600;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: white;
    margin-bottom: 20px;
}

.login-box input[type="submit"] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #c59d5f;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-box input[type="submit"]:hover {
    opacity: 0.9;
}

.login-box .forgetmenot {
    margin-bottom: 20px;
    text-align: left;
    color: #ccc;
}
```

body.login {
    background: #0b0f14;
}

.login form {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.login #nav, .login #backtoblog {
    text-align: center;
}

.login-box,
.login-box * {
    opacity: 1 !important;
    color: #fff !important;
}

.login-box form p {
    color: #fff;
    margin-bottom: 15px;
}

.login-box form input[type="text"],
.login-box form input[type="password"] {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.login-box form label {
    color: #fff;
}

.login-box form {
    color: #fff;
}

.login-box .login-username,
.login-box .login-password,
.login-box .login-remember {
    color: #fff;
}


body.page-template-page-login .section {
    opacity: 1 !important;
    filter: none !important;
}

body.page-template-page-login * {
    color: #fff !important;
}

.login-box {
    color: #ffffff;
}

.login-box h1,
.login-box p,
.login-box label {
    color: #ffffff;
}

.login-box form {
    color: #ffffff;
}

.login-box input {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

body.page-template-member-login {
    background: #0b0f14 !important;
    color: #ffffff !important;
}

body.page-template-member-login * {
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    filter: none !important;
}

/* WordPress login form */
.login-box input[type="submit"],
#wp-submit {
    display: inline-block !important;
    width: 100% !important;
    padding: 14px !important;
    border: none !important;
    border-radius: 8px !important;
    background: #c59d5f !important;
    color: #111 !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#wp-submit:hover {
    opacity: 0.9 !important;
}

.login-box {
    max-width: 500px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
}

.login-box h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 30px;
}

.login-box label {
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    color: #fff;
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
}

#wp-submit {
    width: 100%;
    padding: 14px;
    background: #c59d5f;
    color: #111;
    border: 0;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

body.login {
    background: #0b0f14 !important;
}

.login-box {
    color: #fff !important;
}

.login-box h1,
.login-box p,
.login-box label {
    color: #fff !important;
}
body.login .login-box {
    background: rgba(15,15,15,0.92);
    padding: 50px;
    border-radius: 14px;
    color: #fff;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.album-view button {
  display: block;
  margin: 2rem auto;
  padding: 0.9rem 2rem;
  font-size: 1.3rem;
  background-color: #800000; /* maroon */
  color: #ffffff;            /* white text */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.album-view button:hover {
  background-color: #d4af37; /* khaki/gold */
  color: #800000;            /* maroon text */
  transform: scale(1.05);    /* subtle grow effect */
}
