/* =========================================================
   The Special Connections — Stylesheet
   ========================================================= */

:root {
  --color-primary: #1b6f8c;        /* deep teal blue */
  --color-primary-dark: #0f3b4d;   /* deep navy-teal */
  --color-primary-darker: #082531;
  --color-accent: #f4982e;         /* bold warm orange */
  --color-accent-dark: #d97f17;
  --color-cta: #e2574c;            /* coral red — donate / urgent CTAs */
  --color-cta-dark: #c8453b;
  --color-bg: #ffffff;
  --color-bg-soft: #eaf2f4;
  --color-bg-alt: #fff4e8;         /* warm tint, pairs with accent */
  --color-text: #1b262c;
  --color-text-soft: #4f6b76;
  --color-border: #d6e4e8;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --container-width: 1180px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 59, 77, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

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

a { color: var(--color-primary); text-decoration: none; }

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

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary-dark); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
}

.section { padding: 70px 0; }
.section-bg-soft { background: var(--color-bg-soft); }
.section-bg-alt { background: var(--color-bg-alt); }
.section-bg-dark {
  background: linear-gradient(120deg, var(--color-primary-darker), var(--color-primary-dark));
  color: #fff;
}
.section-bg-dark h2, .section-bg-dark h3, .section-bg-dark h4 { color: #fff; }
.section-bg-dark .eyebrow { color: var(--color-accent); }
.section-bg-dark p { color: rgba(255,255,255,0.85); }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-head h2 { font-size: clamp(28px, 4vw, 38px); margin-top: 6px; }

.view-all { text-align: center; margin-top: 36px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-dark); }
.btn-cta { background: var(--color-cta); color: #fff; }
.btn-cta:hover { background: var(--color-cta-dark); }
.btn-outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-light { background: #fff; color: var(--color-primary-dark); }
.btn-light:hover { background: var(--color-accent); color: #fff; }
.btn-outline-light { background: transparent; border-color: #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--color-primary-dark); }
.btn-small { padding: 8px 18px; font-size: 13px; }

/* ---------- Top Announcement Bar ---------- */
.announce-bar {
  background: var(--color-cta);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 10px 16px;
  font-weight: 600;
}
.announce-bar a { color: #fff; font-weight: 800; text-decoration: underline; }
.announce-bar a:hover { color: var(--color-bg-alt); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo img { height: 56px; width: auto; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text span { font-size: 12px; font-weight: 600; color: var(--color-accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: var(--color-text);
  font-weight: 700;
  font-size: 15px;
  text-transform: capitalize;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--color-primary-dark);
}

/* ---------- Hero (full-bleed, photo + overlay) ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-darker);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8,37,49,0.92) 0%, rgba(8,37,49,0.68) 45%, rgba(8,37,49,0.30) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 620px; padding: 70px 0; }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5.5vw, 54px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page Hero (sub-pages, bold color band) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--color-primary-darker), var(--color-primary));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 5vw, 42px); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 10px auto 0; }
.breadcrumb { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 6px; }
.breadcrumb a { color: #fff; text-decoration: underline; }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--color-text-soft); margin-bottom: 16px; }
.about-text h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 18px; }

/* ---------- Team & Volunteers ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-card .team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  outline: 1px solid var(--color-border);
}
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .team-role {
  display: inline-block;
  color: var(--color-accent-dark);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.volunteers-block {
  text-align: center;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}
.volunteers-block p { color: var(--color-text-soft); max-width: 640px; margin: 0 auto; }
.volunteers-photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px auto 0;
  box-shadow: var(--shadow);
  max-width: 640px;
  aspect-ratio: 16/9;
}
.volunteers-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Programs ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.programs-grid.programs-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.program-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.program-card:hover { transform: translateY(-4px); }
.program-media { aspect-ratio: 16/10; overflow: hidden; }
.program-media img { width: 100%; height: 100%; object-fit: cover; }
.program-body { padding: 20px; }
.program-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-body p { color: var(--color-text-soft); font-size: 15px; }
.badge-new {
  background: var(--color-cta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Events / Calendar ---------- */
.events-toolbar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.events-toolbar button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.events-toolbar button.active,
.events-toolbar button:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 4px solid var(--color-accent);
}
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 14px;
  letter-spacing: 0.5px;
}
.event-card h3 { font-size: 18px; margin: 0; }
.event-location {
  color: var(--color-text-soft);
  font-size: 14px;
}
.event-desc { color: var(--color-text-soft); font-size: 14px; }
.event-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

.events-empty, .events-loading, .events-error {
  text-align: center;
  color: var(--color-text-soft);
  padding: 24px;
  grid-column: 1 / -1;
}

/* ---------- Past events accordion ---------- */
.past-events-heading {
  margin: 64px 0 32px;
  padding-top: 48px;
  border-top: 2px solid var(--color-border);
}

.past-year-section {
  border-bottom: 1px solid var(--color-border);
}

.past-year-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
  gap: 16px;
}
.past-year-btn:hover .past-year-label { color: var(--color-primary); }

.past-year-label {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  transition: color 0.2s ease;
}

.past-year-chevron {
  font-size: 32px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.past-year-section.open .past-year-chevron {
  transform: rotate(180deg);
}

.past-year-events {
  display: none;
  padding-bottom: 32px;
}
.past-year-section.open .past-year-events {
  display: block;
}

/* ---------- Follow Us / social ---------- */
.social-follow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.social-follow-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1 / 1;
}
.social-follow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.social-follow-card:hover img { transform: scale(1.05); }
.social-follow-card span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(8,37,49,0.85), rgba(8,37,49,0));
}

/* ---------- Resources ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.resource-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.resource-card h3 { font-size: 19px; margin-bottom: 8px; }
.resource-card p { color: var(--color-text-soft); font-size: 15px; margin-bottom: 10px; }
.resource-card a.btn { margin-top: 6px; }

/* ---------- Patrons static page ---------- */
.patron-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 48px 0;
}
.patron-card-static {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.patron-card-static a {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.patron-card-static a:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(15,59,77,0.15);
}
.patron-card-static img {
  width: 100%;
  height: auto;
  display: block;
}
.patron-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 15px;
  text-align: center;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0 60px;
}
.social-row a {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-weight: 700;
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--color-primary); color: #fff; }

.patrons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin-top: 24px;
}
.patron-card { text-align: center; }
.patron-card img {
  max-height: 80px;
  width: auto;
  margin: 0 auto 10px;
  filter: grayscale(20%);
}
.patron-card span { font-size: 14px; font-weight: 700; color: var(--color-text-soft); }

/* ---------- Impact page ---------- */
.impact-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.impact-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.impact-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--color-text-soft);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-primary);
}
.contact-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-soft);
  border-radius: 50%;
  font-size: 26px;
}
.contact-card h4 { font-size: 17px; margin-bottom: 10px; }

/* ---------- Donate CTA (bold full-width band) ---------- */
.donate-band {
  background: linear-gradient(120deg, var(--color-cta) 0%, var(--color-accent) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.donate-band .eyebrow { color: rgba(255,255,255,0.9); }
.donate-band h2 { color: #fff; font-size: clamp(24px, 4vw, 34px); margin: 8px 0 24px; }
.donate-band .btn-light:hover { background: var(--color-primary-dark); color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-darker);
  color: #cfe3ea;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-grid .logo img {
  height: 56px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  display: block;
}
.footer-grid p { color: #a9c4cf; margin-top: 14px; max-width: 320px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: #a9c4cf; }
.footer-grid a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-weight: 700;
}
.footer-social a:hover { background: var(--color-accent); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 14px;
  color: #82a3b0;
}
.footer-bottom a { color: #cfe3ea; }

/* ---------- Gallery page (Sheet-driven photo grid) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

/* ---------- Blog Index ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,59,77,0.16); }

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

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-card-meta strong { color: var(--color-primary); }

.blog-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-body h3 a { color: var(--color-primary-dark); }
.blog-card-body h3 a:hover { color: var(--color-primary); }

.blog-card-excerpt {
  color: var(--color-text-soft);
  font-size: 15px;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-tag {
  display: inline-block;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* ---------- Blog Article Page ---------- */
.article-hero {
  background: linear-gradient(120deg, var(--color-primary-darker), var(--color-primary-dark));
  color: #fff;
  padding: 60px 0 50px;
}
.article-hero .eyebrow { color: var(--color-accent); }
.article-hero h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
  max-width: 800px;
  margin: 12px 0 20px;
  line-height: 1.2;
}
.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.article-meta strong { color: #fff; }

.article-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
}

.article-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 48px 0 16px;
  color: var(--color-primary-dark);
}

.article-body h3 {
  font-size: 20px;
  margin: 36px 0 12px;
}

.article-body p { margin-bottom: 20px; }

.article-body img {
  width: 100%;
  border-radius: 12px;
  margin: 28px 0;
  box-shadow: 0 6px 20px rgba(15,59,77,0.12);
}

.article-body img + em,
.article-body figure figcaption {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-soft);
  margin-top: -16px;
  margin-bottom: 28px;
}

.article-body blockquote {
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-soft);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-size: 18px;
  color: var(--color-primary-dark);
  font-style: italic;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li { margin-bottom: 8px; }

.article-body a { color: var(--color-primary); text-decoration: underline; }

.author-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 28px;
  margin: 48px 0;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.author-bio img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio-text h4 { font-size: 16px; margin-bottom: 4px; }
.author-bio-text p { font-size: 14px; color: var(--color-text-soft); margin: 0; }

.article-back {
  max-width: 740px;
  margin: 0 auto 48px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .logo-col { grid-column: 1 / -1; }
  .hero { min-height: 520px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    display: none;
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 50px 0; }
}
