/* =============================================
   York Rite Leadership - Main Stylesheet
   ============================================= */

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

:root {
  --blue:       #046bd2;
  --blue-dark:  #034ea0;
  --blue-light: #e8f1fc;
  --gold:       #c8a84b;
  --dark:       #1a1a2e;
  --mid:        #444;
  --light:      #f5f7fa;
  --white:      #ffffff;
  --border:     #dde3ec;
  --shadow:     0 4px 20px rgba(4,107,210,0.12);
  --radius:     8px;
  --max-w:      1140px;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

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

ul { list-style: none; }

/* --- Layout Helpers --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--light { background: var(--light); }
.section--blue  { background: var(--blue); color: var(--white); }
.section--dark  { background: var(--dark); color: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header h2 { margin-bottom: 16px; }
.section__header .subtitle {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 660px;
  margin: 0 auto;
}
.section--blue  .section__header .subtitle,
.section--dark  .section__header .subtitle { color: rgba(255,255,255,0.8); }
.section--blue  .section__header h2,
.section--dark  .section__header h2 { color: var(--white); }

.divider {
  width: 60px;
  height: 4px;
  background: var(--blue);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section--blue .divider,
.section--dark .divider { background: var(--gold); }

/* --- Grid --- */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(4,107,210,0.18); }
.card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4,107,210,0.30);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #b0923e;
  border-color: #b0923e;
  text-decoration: none;
  transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--blue);
  box-shadow: 0 2px 12px rgba(4,107,210,0.10);
  height: var(--nav-h);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.nav__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
}
.nav__brand-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.2;
}
.nav__brand-sub {
  font-size: 0.72rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.nav__links a:hover,
.nav__links a.active { background: var(--blue-light); color: var(--blue); }
.nav__links .btn--primary { color: var(--white); padding: 8px 18px; }
.nav__links .btn--primary:hover { background: var(--blue-dark); color: var(--white); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2a5e 60%, var(--blue) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero__eyebrow {
  display: inline-block;
  background: rgba(200,168,75,0.25);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero__lead {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--blue);
  padding: 28px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* =============================================
   FEATURES / BOK
   ============================================= */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(4,107,210,0.18); }
.feature-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; color: var(--blue); }

.bok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.bok-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bok-card__header {
  background: var(--blue);
  color: var(--white);
  padding: 28px;
  position: relative;
}
.bok-card__header .level {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 4px;
}
.bok-card__header h3 { color: var(--white); margin: 0; }
.bok-card__body {
  background: var(--white);
  padding: 28px;
}
.bok-card__courses { margin-top: 16px; }
.course-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 4px 4px 4px 0;
}
.course-tag--inperson {
  background: #fff8e6;
  color: #7a5c0a;
}

/* =============================================
   WHY / VALUE PROPS
   ============================================= */
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.value-card { text-align: center; }
.value-card h3 { margin-bottom: 10px; }
.value-card .value-icon { margin: 0 auto 20px; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.faq-item__question:hover { background: var(--blue-light); }
.faq-item.open .faq-item__question { background: var(--blue); color: var(--white); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 20px 24px;
  color: var(--mid);
  background: var(--white);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-item__answer { display: block; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--blue);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial__text {
  font-style: italic;
  color: var(--mid);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.9rem;
}
.testimonial__location {
  font-size: 0.82rem;
  color: #888;
}
.stars { color: var(--gold); margin-bottom: 12px; font-size: 1rem; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p { opacity: .9; max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2a5e 100%);
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { opacity: .85; font-size: 1.1rem; }

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-story__text h2 { margin-bottom: 16px; }
.about-story__text p { margin-bottom: 16px; }
.about-story__timeline { position: relative; }

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.timeline-item__year {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.2;
}
.timeline-item__content h4 { margin-bottom: 4px; color: var(--blue); }
.timeline-item__content p { font-size: 0.92rem; color: var(--mid); margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.value-pill {
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  padding: 32px 20px;
  font-weight: 700;
  font-size: 1rem;
}
.value-pill__icon { font-size: 2rem; margin-bottom: 12px; }

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.faculty-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}
.faculty-card__avatar {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--white);
  overflow: hidden;
}
.faculty-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.faculty-card__info { padding: 20px; }
.faculty-card__name { font-weight: 700; margin-bottom: 4px; }
.faculty-card__role { font-size: 0.85rem; color: var(--blue); }

/* =============================================
   COURSES PAGE
   ============================================= */
.course-full {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.course-full__header {
  background: var(--blue);
  color: var(--white);
  padding: 36px 40px;
}
.course-full__header .bok-number {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 6px;
}
.course-full__header h2 { color: var(--white); margin-bottom: 10px; }
.course-full__header p { opacity: .9; margin: 0; }
.course-full__body {
  background: var(--white);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.course-detail__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 10px;
}
.course-detail__list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.course-detail__list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   SCHEDULE PAGE
   ============================================= */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-left: 5px solid var(--blue);
  margin-bottom: 20px;
}
.event-card__date {
  flex-shrink: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  width: 70px;
  text-align: center;
  padding: 12px 8px;
}
.event-card__month {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .8;
}
.event-card__day {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
}
.event-card__year {
  font-size: 0.72rem;
  opacity: .7;
}
.event-card__content h3 { margin-bottom: 6px; }
.event-card__meta {
  font-size: 0.88rem;
  color: var(--mid);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.event-card__meta span { display: flex; align-items: center; gap: 4px; }

.region-section { margin-bottom: 48px; }
.region-section h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; color: var(--blue); }
.contact-info__item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info__text strong { display: block; margin-bottom: 2px; }
.contact-info__text a { color: var(--mid); }
.contact-info__text a:hover { color: var(--blue); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group label .required { color: #e53e3e; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(4,107,210,0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__brand p { margin-top: 16px; font-size: 0.9rem; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color .2s;
  text-decoration: none;
}
.footer__col ul li a:hover { color: var(--white); text-decoration: none; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--white); }

.footer__nav-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}
.footer__nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; }
  .course-full__body { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 20px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-top: 1px solid var(--border); gap: 4px; }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 10px 14px; }
  .nav__toggle { display: flex; }
  .nav { position: relative; }

  .hero { padding: 60px 0 50px; }
  .section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .cta__actions { flex-direction: column; align-items: center; }
}
