/*
Theme Name: St John's Wood Lodge 4806
Theme URI: https://stjohnswoodlodge.org
Author: AAIRO LLP
Author URI: https://aairo.co.uk
Description: Official theme for St John's Wood Lodge No. 4806 — Centenary Edition 2026. A modern, elegant design befitting one of London's finest Masonic lodges.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sjwl
Tags: masonic, lodge, custom-background, custom-logo, featured-images, responsive-layout
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette */
  --navy-deep:   #0B1628;
  --navy:        #152240;
  --navy-mid:    #1E3160;
  --navy-light:  #2A4480;
  --gold:        #C8A84B;
  --gold-light:  #E2CC90;
  --gold-pale:   #FAF5E8;
  --cream:       #F7F4EE;
  --white:       #FFFFFF;
  --text-dark:   #0F1B30;
  --text-body:   #374163;
  --text-mid:    #5A6480;
  --text-muted:  #8890A8;
  --border:      #D6D0C4;
  --border-dark: #2E3F60;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-label:   'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius */
  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;

  /* Max widths */
  --max-w:      1180px;
  --max-w-text: 720px;
  --max-w-sm:   540px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-weight: 700; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-3);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: var(--max-w-text);
  margin: var(--sp-4) auto 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-20) 0;
}

.section--sm {
  padding: var(--sp-12) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section--gold-pale {
  background: var(--gold-pale);
}

.text-center { text-align: center; }

.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--sp-5) auto;
}

.gold-rule--left {
  margin-left: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 22, 40, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s var(--ease);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
}

.nav-logo-number {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hidden checkbox for pure-CSS mobile toggle */
.nav-toggle-check {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-menu a {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  padding: var(--sp-2) var(--sp-5) !important;
  border-radius: 100px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px var(--sp-6) var(--sp-20);
  position: relative;
  overflow: hidden;
}

/* Geometric background pattern — squares & diagonals */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 168, 75, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 75, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--navy-deep) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200, 168, 75, 0.12);
  border: 1px solid rgba(200, 168, 75, 0.35);
  border-radius: 100px;
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-8);
}

.hero__badge::before {
  content: '✦';
  font-size: 0.6rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--sp-6);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__number {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-8);
}

.hero__values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-10);
}

.hero__values span {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 75, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,168,75,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: var(--navy-deep);
  padding: 0 0 var(--sp-20);
}

.video-section .container {
  max-width: 960px;
}

.video-section h2 { color: var(--white); }
.video-section .section-intro { color: rgba(255,255,255,0.65); }

.video-wrapper {
  margin-top: var(--sp-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,168,75,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  background: #000;
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-caption {
  padding: var(--sp-4) var(--sp-6);
  background: rgba(200,168,75,0.07);
  border-top: 1px solid rgba(200,168,75,0.15);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-text h2 {
  margin-bottom: var(--sp-6);
}

.about-text p {
  color: var(--text-body);
  margin-bottom: var(--sp-4);
  font-size: 1.02rem;
}

.about-text p:last-of-type { margin-bottom: var(--sp-8); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.about-image-caption {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  background: rgba(11,22,40,0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.78rem;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}

/* ============================================================
   MEETINGS STRIP
   ============================================================ */
.meetings-strip {
  background: var(--gold);
  padding: var(--sp-8) 0;
}

.meetings-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.meetings-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.meetings-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.meetings-item__label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(11,22,40,0.6);
  display: block;
  margin-bottom: var(--sp-1);
}

.meetings-item__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.3;
}

/* ============================================================
   WHY JOIN — 6 cards
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.why-card {
  padding: var(--sp-8) var(--sp-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.why-card:hover {
  box-shadow: 0 12px 40px rgba(11,22,40,0.1);
  transform: translateY(-3px);
}

.why-card__icon {
  font-size: 1.6rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   DEGREES — three dark cards
   ============================================================ */
.degrees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.degree-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.degree-card::before {
  content: attr(data-number);
  position: absolute;
  top: -10px;
  right: var(--sp-5);
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.degree-card__roman {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-3);
}

.degree-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--sp-3);
}

.degree-card__subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: var(--sp-4);
}

.degree-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ============================================================
   PILLARS — Brotherhood, Integrity, Charity
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--sp-12);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
}

.pillar + .pillar {
  border-left: 1px solid var(--border);
}

.pillar__word {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-1);
  letter-spacing: -0.02em;
}

.pillar__label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}

.pillar h3 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-4);
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   FEES SECTION
   ============================================================ */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.fee-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
}

.fee-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.fee-card span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.fee-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--sp-3);
  line-height: 1.5;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  margin-top: var(--sp-10);
}

.contact-info h3 {
  margin-bottom: var(--sp-6);
}

.contact-detail {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  align-items: flex-start;
}

.contact-detail__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.contact-detail__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: var(--sp-1);
}

.contact-detail a, .contact-detail p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-detail a:hover { color: var(--gold); }

.contact-join {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  color: var(--white);
}

.contact-join h3 { color: var(--white); margin-bottom: var(--sp-4); }
.contact-join p { color: rgba(255,255,255,0.7); margin-bottom: var(--sp-6); font-size: 0.95rem; }
.contact-join .btn { display: inline-flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-dark);
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6) var(--sp-12);
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--sp-12);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.footer-motto {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.footer-ugle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links h4,
.footer-contact-col h4 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.footer-links ul li {
  margin-bottom: var(--sp-3);
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.footer-contact-col a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-contact-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: var(--sp-6) var(--sp-6);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SKIP LINK / ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 2000;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* ============================================================
   PAGE TEMPLATE (sub-pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px var(--sp-6) var(--sp-16);
  text-align: center;
}

.page-hero h1 { color: var(--white); }

.page-content {
  padding: var(--sp-16) var(--sp-6);
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2,
.page-content h3 { margin: var(--sp-8) 0 var(--sp-4); }

.page-content p { margin-bottom: var(--sp-4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .fees-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .degrees-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar + .pillar { border-left: none; border-top: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    padding: var(--sp-8);
    overflow-y: auto;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { font-size: 1.2rem; padding: var(--sp-3) var(--sp-6); }
  .hero__values span { font-size: 0.65rem; }
  .meetings-strip .container { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: var(--sp-8); }
}

@media (max-width: 480px) {
  .fees-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
