/* =========================================================
   Celebration Lutheran Church – Stylesheet v2
   Aesthetic: Warm Traditional / High-Church Parchment
   Fonts: Cormorant Garamond (display) + Source Serif 4 (body)
   Palette: Parchment cream, deep burgundy, forest green, aged gold
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

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

:root {
  --parchment:   #f5efe3;
  --parchment-dk:#ede5d4;
  --parchment-lt:#fdf9f3;
  --burgundy:    #6b1a2a;
  --burgundy-dk: #4a1020;
  --burgundy-lt: #8c2a3e;
  --forest:      #2d4a2d;
  --gold:        #9a7a32;
  --gold-lt:     #c9a84c;
  --gold-pale:   #e8d9a8;
  --ink:         #1e1612;
  --ink-muted:   #4a3f35;
  --border:      #c8b898;
  --border-lt:   #ddd0b8;
  --white:       #ffffff;
  --red-notice:  #7a1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--parchment-lt);
}

a { color: var(--burgundy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────────
   TOP BAR
───────────────────────────────────────── */
.top-bar {
  background: var(--burgundy-dk);
  color: rgba(245,239,227,.6);
  font-family: 'Source Serif 4', serif;
  font-size: .78rem;
  letter-spacing: .06em;
  padding: 6px 48px;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(245,239,227,.65); }
.top-bar a:hover { color: var(--gold-lt); }

/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
header {
  background: var(--burgundy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(74,16,32,.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 76px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.logo-link img {
  height: 50px; width: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold-lt);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  color: var(--parchment);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .02em;
}
.logo-text span {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-size: .7rem;
  color: var(--gold-lt);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Desktop nav */
nav.main-nav { display: flex; align-items: center; }
nav.main-nav > ul { display: flex; list-style: none; gap: 0; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  display: block;
  padding: 8px 10px;
  color: rgba(245,239,227,.85);
  font-family: 'Source Serif 4', serif;
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
  text-decoration: none;
  white-space: nowrap;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li.active > a {
  color: var(--gold-lt);
  background: rgba(0,0,0,.15);
}

/* Dropdown */
nav.main-nav ul ul {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--burgundy-dk);
  min-width: 210px;
  list-style: none;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  z-index: 300;
}
nav.main-nav ul li:hover > ul { display: block; }
nav.main-nav ul ul li a {
  display: block;
  padding: 10px 20px;
  color: rgba(245,239,227,.8);
  font-family: 'Source Serif 4', serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
nav.main-nav ul ul li:last-child a { border-bottom: none; }
nav.main-nav ul ul li a:hover { background: rgba(154,122,50,.2); color: var(--gold-lt); }

/* Nav CTAs */
.nav-cta-group { display: flex; gap: 10px; margin-left: 18px; }
.btn-nav {
  padding: 8px 18px;
  font-family: 'Source Serif 4', serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}
.btn-nav-outline { border: 1px solid rgba(245,239,227,.45); color: rgba(245,239,227,.85); white-space: nowrap; }
.btn-nav-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.btn-nav-gold { background: var(--gold); color: var(--parchment-lt); }
.btn-nav-gold:hover { background: var(--gold-lt); color: var(--ink); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--parchment); border-radius: 1px; transition: all .25s; }

/* Dropdown arrow — always inline with text */
.nav-arrow {
  display: inline;
  font-size: .6rem;
  vertical-align: middle;
  margin-left: 2px;
  letter-spacing: 0;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--burgundy-dk);
  padding: 20px 28px 30px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(245,239,227,.8);
  font-family: 'Source Serif 4', serif;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold-lt); }
.mobile-menu .mob-sub { padding-left: 18px; font-size: .76rem; color: rgba(245,239,227,.5); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--burgundy);
  background-image: repeating-linear-gradient(
    0deg,
    transparent, transparent 28px,
    rgba(255,255,255,.025) 28px, rgba(255,255,255,.025) 29px
  );
  padding: 60px 48px 56px;
  text-align: center;
  color: var(--parchment);
  border-bottom: 3px solid var(--gold);
}
.page-hero::after {
  content: '✦  ✦  ✦';
  display: block;
  margin-top: 18px;
  font-size: .75rem;
  letter-spacing: .4em;
  color: var(--gold-lt);
  opacity: .7;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.page-hero .subtitle {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,239,227,.72);
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   HOMEPAGE HERO
───────────────────────────────────────── */
.home-hero {
  background: var(--burgundy-dk);
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(107,26,42,.8) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(45,74,45,.5) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent, transparent 28px,
      rgba(255,255,255,.02) 28px, rgba(255,255,255,.02) 29px
    );
  color: var(--parchment);
  padding: 120px 48px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.home-hero::before {
  content: '✛';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 520px;
  color: rgba(245,239,227,.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.home-hero .eyebrow {
  font-family: 'Source Serif 4', serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
  margin-bottom: 24px;
}
.home-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.home-hero h1 em { font-style: italic; color: var(--gold-lt); }
.home-hero p {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(245,239,227,.72);
  max-width: 560px;
  margin: 0 auto 42px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Source Serif 4', serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--parchment-lt); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); color: var(--ink); border-color: var(--gold-lt); }
.btn-outline { background: transparent; border-color: rgba(245,239,227,.45); color: var(--parchment); }
.btn-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.btn-navy { background: var(--burgundy); color: var(--parchment); border-color: var(--burgundy); }
.btn-navy:hover { background: var(--burgundy-lt); border-color: var(--burgundy-lt); color: var(--parchment); }

/* ─────────────────────────────────────────
   INFO STRIP
───────────────────────────────────────── */
.info-strip {
  background: var(--forest);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 3px solid var(--gold);
}
.info-strip .cell {
  flex: 1 1 180px;
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.info-strip .cell:last-child { border-right: none; }
.info-strip .lbl {
  font-family: 'Source Serif 4', serif;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(232,217,168,.7);
  margin-bottom: 5px;
}
.info-strip .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section       { padding: 84px 48px; }
.section-cream { background: var(--parchment); }
.section-navy  { background: var(--burgundy); color: var(--parchment); }
.section-white { background: var(--parchment-lt); }
.section-inner { max-width: 1040px; margin: 0 auto; }

.section-tag {
  font-family: 'Source Serif 4', serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 10px;
}
.section-navy .section-tag { color: var(--gold-lt); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.15;
  letter-spacing: .01em;
  margin-bottom: 16px;
}
.section-navy .section-title { color: var(--parchment); }

.section-lead { color: var(--ink-muted); font-size: .98rem; max-width: 680px; }
.section-navy .section-lead { color: rgba(245,239,227,.72); }

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 28px;
  opacity: .8;
}

/* ─────────────────────────────────────────
   TWO-COL LAYOUT
───────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse .col-img { order: -1; }

.img-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.img-grid-2 img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 3px solid var(--parchment-dk);
  box-shadow: 4px 4px 0 var(--border);
}
.img-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.img-grid-3 img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border: 3px solid var(--parchment-dk);
  box-shadow: 4px 4px 0 var(--border);
}

/* Welcome section — two large side-by-side images */
.welcome-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 100%;
}
.welcome-img-pair img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 3px solid var(--parchment-dk);
  box-shadow: 4px 4px 0 var(--border);
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 36px; }
.card {
  background: var(--parchment-lt);
  border: 1px solid var(--border-lt);
  border-top: 3px solid var(--burgundy);
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 10px 32px rgba(107,26,42,.12); transform: translateY(-3px); }
.card .card-icon { font-size: 1.6rem; margin-bottom: 12px; }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 6px;
}
.card .time {
  font-family: 'Source Serif 4', serif;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .06em;
  font-weight: 600;
}
.card p { color: var(--ink-muted); font-size: .88rem; margin-top: 8px; line-height: 1.65; }

/* ─────────────────────────────────────────
   PERSON CARDS
───────────────────────────────────────── */
.person-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 40px; }
.person-card { text-align: center; }
.person-card img {
  width: 180px; height: 180px; object-fit: cover; border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  outline: 6px solid var(--parchment-dk);
  box-shadow: 0 4px 20px rgba(107,26,42,.18);
}
.person-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.person-card .role {
  font-family: 'Source Serif 4', serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.person-card p { color: var(--ink-muted); font-size: .88rem; line-height: 1.7; }
.person-card .contact-link { display: inline-block; margin-top: 16px; }

/* ─────────────────────────────────────────
   NOTICE BOX
───────────────────────────────────────── */
.notice {
  background: #fef8f0;
  border: 1px solid #d4a87c;
  border-left: 4px solid var(--red-notice);
  padding: 22px 26px;
  margin-top: 28px;
}
.notice h4 {
  color: var(--red-notice);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.notice p { color: #5a2a1a; font-size: .9rem; line-height: 1.7; }

/* ─────────────────────────────────────────
   SCRIPTURE BLOCK
───────────────────────────────────────── */
.scripture {
  background: var(--forest);
  color: var(--parchment);
  padding: 56px 48px;
  text-align: center;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.scripture::before {
  content: '❧';
  display: block;
  font-size: 1.8rem;
  color: var(--gold-lt);
  opacity: .5;
  margin-bottom: 18px;
}
.scripture blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.5;
  color: var(--parchment);
  max-width: 760px;
  margin: 0 auto;
}
.scripture cite {
  display: block;
  margin-top: 18px;
  font-family: 'Source Serif 4', serif;
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
}

/* ─────────────────────────────────────────
   BELIEVE PILLARS
───────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 36px; }
.pillar {
  background: rgba(245,239,227,.06);
  border: 1px solid rgba(245,239,227,.15);
  border-top: 2px solid var(--gold);
  padding: 26px 22px;
}
.pillar .pi { font-size: 1.4rem; margin-bottom: 10px; }
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-lt);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pillar p { color: rgba(245,239,227,.68); font-size: .87rem; line-height: 1.65; }

/* ─────────────────────────────────────────
   CONTENT PROSE
───────────────────────────────────────── */
.prose { max-width: 800px; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--burgundy);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--burgundy);
  margin: 30px 0 8px;
}
.prose p { color: var(--ink-muted); margin-bottom: 14px; font-size: .96rem; line-height: 1.82; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ─────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────── */
.contact-form label {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  margin-top: 18px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 10px 4px;
  font-family: 'Source Serif 4', serif;
  font-size: .95rem;
  color: var(--ink);
  background: transparent;
  transition: border-color .2s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--burgundy); }
.contact-form textarea { height: 120px; resize: vertical; }
.form-success { display: none; margin-top: 14px; font-size: .9rem; color: var(--forest); font-style: italic; }

/* ─────────────────────────────────────────
   FOOTER SIDEBAR
───────────────────────────────────────── */
.footer-sidebar {
  background: var(--parchment-dk);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}
.footer-sidebar-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.sidebar-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-block p,
.sidebar-block address {
  font-size: .88rem;
  color: var(--ink-muted);
  line-height: 1.8;
  font-style: normal;
}
.sidebar-block a { color: var(--burgundy); }
.sidebar-block a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   MAIN FOOTER
───────────────────────────────────────── */
footer.site-footer {
  background: var(--burgundy-dk);
  color: rgba(245,239,227,.5);
  padding: 40px 48px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.site-footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-lt);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 14px 0;
}
.site-footer .footer-links a {
  color: rgba(245,239,227,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-footer .footer-links a:hover { color: var(--gold-lt); }
.site-footer .copy { font-size: .74rem; font-style: italic; }

/* ─────────────────────────────────────────
   MEDIA BOX
───────────────────────────────────────── */
.media-box {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: var(--parchment-dk);
  border: 1px solid var(--border);
  border-left: 4px solid var(--burgundy);
  padding: 36px;
  margin-top: 32px;
}
.media-box .media-icon { font-size: 2.8rem; flex-shrink: 0; }
.media-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.media-box p { color: var(--ink-muted); font-size: .9rem; max-width: 520px; line-height: 1.75; }
.media-box .btn { margin-top: 18px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .top-bar { display: none; }
  nav.main-nav { display: none; }
  .nav-cta-group { display: none; }
  .hamburger { display: flex; }
  .home-hero { padding: 72px 24px 64px; }
  .page-hero { padding: 48px 24px 44px; }
  .section { padding: 56px 24px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-img { order: 0; }
  .img-grid-3 { grid-template-columns: 1fr 1fr; }
  .welcome-img-pair { grid-template-columns: 1fr 1fr; }
  .media-box { flex-direction: column; padding: 26px; }
  .footer-sidebar { padding: 44px 24px; }
  footer.site-footer { padding: 32px 20px; }
  .header-inner { padding: 0 20px; }
  .scripture { padding: 44px 24px; }
}
@media (max-width: 540px) {
  .info-strip .cell { flex: 1 1 50%; }
  .img-grid-2, .img-grid-3 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .home-hero h1 { font-size: 2.4rem; }
}
