/* =========================================================================
   RCCG Cornerstone Overflow Center — Public Site Stylesheet
   Design language: warm ivory light theme, stained-glass accent palette,
   "foundation block" motif echoing the church's name (Cornerstone).
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* ---- Color tokens ---- */
  --ivory:        #FBF8F2;
  --ivory-deep:    #F3EDE0;
  --surface:       #FFFFFF;
  --ink:           #1B2430;
  --ink-soft:      #4B5563;
  --gold:          #C6862B;
  --gold-deep:     #A66B1E;
  --gold-pale:     #F1DDB0;
  --wine:          #7A2E3A;
  --wine-deep:     #5E2029;
  --pine:          #2F5D50;
  --pine-deep:     #244A40;
  --line:          #E7E0D2;

  /* ---- Type ---- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --max-width: 1220px;
  --radius: 6px;
  --shadow-soft: 0 10px 30px -14px rgba(27, 36, 48, 0.18);
  --shadow-card: 0 4px 18px -6px rgba(27, 36, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--ivory-deep); }
.section-dark {
  background: var(--ink);
  color: #EDE9DF;
}
.section-dark h2, .section-dark h3 { color: #FFFDF7; }
.section-dark p { color: #C7CBD4; }

.section-head {
  max-width: 680px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Foundation-block divider: the site's signature element ----------
   A staggered row of "stone blocks" in the three accent hues, used to
   separate major sections the way a cornerstone course anchors a wall. */
.foundation-divider {
  display: flex;
  height: 10px;
  width: 100%;
}
.foundation-divider span { flex: 1 1 0; }
.foundation-divider span:nth-child(3n+1) { background: var(--gold); }
.foundation-divider span:nth-child(3n+2) { background: var(--wine); }
.foundation-divider span:nth-child(3n+3) { background: var(--pine); }

/* ---- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #201404; }
.btn-gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-soft); }
.btn-wine { background: var(--wine); color: #fff; }
.btn-wine:hover { background: var(--wine-deep); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---- Top bar --------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: #C9CDD6;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: #C9CDD6; opacity: .85; }
.topbar-social a:hover { color: var(--gold); opacity: 1; }

/* ---- Header / nav ------------------------------------------------------ */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 332px; height: 63px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand-text .name-full {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.15;
}
.brand-text .name-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 12px 15px;
  font-weight: 700;
  font-size: 0.92rem;
 /* color: var(--ink); */
  border-radius: var(--radius);
}
.main-nav > ul > li > a:hover { color: var(--wine); background: var(--ivory-deep); }
.main-nav .has-dropdown > a::after {
  content: '▾';
  font-size: 0.65em;
  margin-left: 5px;
  opacity: 0.7;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .15s ease;
  list-style: none;
  margin: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.dropdown li a:hover { background: var(--ivory-deep); color: var(--wine); }
.nav-give {
  margin-left: 6px;
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

/* ---- Hero carousel ------------------------------------------------------ */
.hero-carousel {
  position: relative;
  height: min(88vh, 720px);
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: flex-end;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,18,24,0.86) 0%, rgba(15,18,24,0.42) 48%, rgba(15,18,24,0.28) 100%);
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  color: #fff;
}
.hero-slide-inner .eyebrow { color: var(--gold-pale); }
.hero-slide-inner .eyebrow::before { background: var(--gold-pale); }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
  color: #fff;
  max-width: 820px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #EDE9DF;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; backdrop-filter: blur(3px);
  transition: background .15s ease;
}
.hero-nav-btn:hover { background: rgba(255,255,255,0.3); }
.hero-nav-prev { left: 22px; }
.hero-nav-next { right: 22px; }

.hero-dots {
  position: absolute; z-index: 5; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid #fff;
  background: transparent; padding: 0; cursor: pointer; opacity: .7;
}
.hero-dots button.is-active { background: var(--gold); border-color: var(--gold); opacity: 1; }

.hero-empty {
  height: 60vh; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--ink) 0%, #2b2118 100%);
  color: #fff; text-align: center;
}

/* ---- Foundation stat blocks (service times) ------------------------- */
.blocks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -64px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-soft);
}
.blocks-row .block {
  background: var(--surface);
  padding: 26px 22px;
}
.blocks-row .block:nth-child(odd) { background: var(--ink); color: #fff; }
.blocks-row .block .block-label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--gold);
  display: block; margin-bottom: 8px;
}
.blocks-row .block:nth-child(even) .block-label { color: var(--gold-deep); }
.blocks-row .block .block-value {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.blocks-row .block:nth-child(odd) .block-value { color: #fff; }
.blocks-row .block:nth-child(even) .block-value { color: var(--ink); }

/* ---- Cards ------------------------------------------------------------ */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--ivory-deep); position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  display: inline-block; align-self: flex-start;
  background: var(--gold-pale); color: var(--gold-deep);
  font-size: 0.7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; margin-bottom: 12px;
}
.card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card-body h3 a:hover { color: var(--wine); }
.card-meta { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 10px; }
.card-foot { margin-top: auto; padding-top: 10px; }
.card-link { font-weight: 700; color: var(--wine); font-size: 0.9rem; }
.card-link:hover { text-decoration: underline; }

/* Department card variant */
.dept-card { text-align: left; }
.dept-card .card-media { aspect-ratio: 1/1; }
.dept-card .leader { font-size: 0.82rem; color: var(--gold-deep); font-weight: 700; margin-bottom: 6px; }

/* Minister card */
.minister-card { text-align: center; }
.minister-card .card-media { aspect-ratio: 1/1; border-radius: 50%; width: 150px; margin: 26px auto 0; }
.minister-card .card-body { align-items: center; text-align: center; }
.minister-card .role { color: var(--gold-deep); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }

/* ---- Sermon / video list rows ------------------------------------------ */
.media-row {
  display: flex; gap: 20px; align-items: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.media-row .thumb { width: 96px; height: 96px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--ivory-deep); }
.media-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-row .play-icon {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--gold); font-size: 1.4rem;
}
.media-row .info { flex: 1; min-width: 0; }
.media-row .info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.media-row .info p { margin: 0; font-size: 0.85rem; }
.media-row audio { width: 100%; margin-top: 10px; }

/* ---- Gallery ------------------------------------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-grid a { display: block; aspect-ratio: 1/1; overflow: hidden; border-radius: 4px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

/* ---- Giving band --------------------------------------------------------- */
.give-band {
  background: var(--wine);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.give-band::after {
  content: '';
  position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(255,255,255,0.06);
}
.give-band h2, .give-band p { color: #fff; }
.give-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.give-option {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 20px;
}
.give-option .give-icon { font-size: 1.6rem; margin-bottom: 10px; }
.give-option h4 { color: #fff; margin-bottom: 6px; font-size: 1rem; font-family: var(--font-body); font-weight: 800; }
.give-option p { color: rgba(255,255,255,0.82); font-size: 0.85rem; margin: 0; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #C7CBD4; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-grid h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand .name-full { color: #fff; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.footer-brand p { color: #9AA0AC; margin-top: 12px; font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  font-size: 0.8rem;
  color: #8A909C;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---- Inner page header banner --------------------------------------------- */
.page-banner {
  background: linear-gradient(155deg, var(--ink) 0%, #2b2118 100%);
  color: #fff;
  padding: 70px 0 46px;
  position: relative;
}
.page-banner .breadcrumb { font-size: 0.82rem; color: var(--gold-pale); margin-bottom: 12px; }
.page-banner .breadcrumb a { color: var(--gold-pale); opacity: .85; }
.page-banner .breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.page-banner p { color: #D8D3C6; max-width: 640px; margin-top: 14px; }

/* ---- Forms ------------------------------------------------------------------ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 7px; color: var(--ink); }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], input[type=date], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,134,43,0.18);
}
textarea { resize: vertical; min-height: 120px; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; font-weight: 600; }
.alert-success { background: #E4F2E9; color: #235339; border: 1px solid #B9DEC7; }
.alert-error { background: #FBE7E7; color: #7A2222; border: 1px solid #F0BEBE; }
.alert-warning { background: var(--gold-pale); color: var(--gold-deep); border: 1px solid #E4C078; }

/* ---- Misc utility ------------------------------------------------------------ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state .icon { font-size: 2.4rem; margin-bottom: 12px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.pill-list a {
  display: inline-block; padding: 9px 16px; border: 1.5px solid var(--line); border-radius: 30px;
  font-size: 0.85rem; font-weight: 700; color: var(--ink);
}
.pill-list a:hover, .pill-list a.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.two-col { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }

.stat-strip { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 28px; }
.stat-strip .stat .value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--wine); }
.stat-strip .stat .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); font-weight: 700; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); border-radius: 6px; font-weight: 700; font-size: 0.85rem;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.pagination .is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- Lightbox ------------------------------------------------------------ */
.lightbox {
  position: fixed; inset: 0; background: rgba(15,18,24,0.92);
  display: none; align-items: center; justify-content: center; flex-direction: column;
  z-index: 999; padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 6px; box-shadow: var(--shadow-soft); }
.lightbox-caption { color: #EDE9DF; margin-top: 16px; font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: 22px; right: 30px; color: #fff; font-size: 2rem;
  background: none; border: none; cursor: pointer; line-height: 1;
}

/* ---- Donation amount chips ------------------------------------------------ */
.amount-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.amount-chip {
  padding: 10px 18px; border: 1.5px solid var(--line); border-radius: 30px;
  background: var(--surface); font-weight: 700; cursor: pointer; font-size: 0.9rem;
}
.amount-chip.is-active, .amount-chip:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--gold-deep); }

/* ---- Responsive ------------------------------------------------------------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .blocks-row { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .give-options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .main-nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--surface);
    flex-direction: column; align-items: stretch; padding: 90px 20px 20px; transition: right .25s ease; box-shadow: -8px 0 30px rgba(0,0,0,0.15); overflow-y: auto; }
  .main-nav.is-open { right: 0; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding-left: 12px; }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-toggle { display: block; }
  .topbar-left span:nth-child(2) { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .blocks-row { grid-template-columns: 1fr; margin-top: 24px; }
  .give-options { grid-template-columns: 1fr; }
  .hero-nav-btn { width: 38px; height: 38px; }
}
