/* ==========================================================================
   Arthur Pentecostal Assembly (APA) — myapa.ca
   Brand palette pulled from the APA logo: navy + steel blue on white.
   ========================================================================== */

:root {
  --navy:        #1a3a5c;   /* logo dark pillar / wordmark */
  --navy-deep:   #12293f;   /* deeper shade for footers / overlays */
  --steel:       #3e5f87;   /* logo mid-blue arch */
  --steel-light: #6b87a8;
  --sky:         #e8eef5;   /* faint tint of the brand blue */
  --ink:         #1c2733;
  --body:        #45525f;
  --paper:       #ffffff;
  --mist:        #f5f7fa;
  --line:        #e3e8ef;
  --gold:        #c9a25a;   /* warm accent for small highlights */

  --wrap: 1180px;
  --radius: 14px;
  --shadow: 0 18px 45px -22px rgba(18, 41, 63, 0.45);
  --font-head: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--steel); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 700; }
ul { list-style: none; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.section { padding: 96px 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy-deep); color: #d7e0ea; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* ---------- Kicker / headings ---------- */
.kicker {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--steel);
  margin-bottom: 14px;
}
.section--navy .kicker { color: var(--steel-light); }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
h2.title { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.5px; }
.lead { font-size: 19px; color: var(--body); margin-top: 16px; }
.section--navy .lead { color: #b9c6d6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.btn--primary { background: var(--steel); color: #fff; }
.btn--primary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-deep); color:#fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

/* ==========================================================================
   Floating social bar (fixed, left, vertically centered)
   ========================================================================== */
.social-float {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 55; display: flex; flex-direction: column; gap: 2px;
  background: rgba(18, 41, 63, 0.85); backdrop-filter: blur(6px);
  border-radius: 0 12px 12px 0; padding: 8px 6px;
  box-shadow: 0 10px 30px -10px rgba(18,41,63,.5);
}
.social-float a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.social-float a:hover { background: var(--steel); transform: scale(1.08); }
.social-float svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 640px) {
  .social-float { flex-direction: row; left: 50%; top: auto; bottom: 0;
    transform: translateX(-50%); border-radius: 12px 12px 0 0; padding: 6px 8px; }
  .social-float a { width: 38px; height: 38px; }
}
@media print { .social-float { display: none; } }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 86px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 64px; width: auto; }
.brand__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 17px; line-height: 1.05; }
.brand__name span { display: block; font-weight: 500; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink);
  position: relative;
}
.nav__links a.active, .nav__links a:hover { color: var(--steel); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--steel);
}
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: #fff; text-align: left; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }

/* Animated hero slideshow (cross-fade + subtle Ken Burns) */
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; will-change: opacity, transform;
  animation: heroFade 28s infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
.hero__slide:nth-child(2) { animation-delay: 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s; }
.hero__slide:nth-child(4) { animation-delay: 21s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.08); }
  3%   { opacity: 1; }
  25%  { opacity: 1; }
  28%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; }
  .hero__slide:not(:nth-child(1)) { display: none; }
  .hero__slide:nth-child(1) { opacity: 1; }
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,41,63,.55) 0%, rgba(18,41,63,.72) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; margin: 0; padding: 120px clamp(36px, 8vw, 150px); }
.hero__inner > * { max-width: 620px; }
.hero h1 { color: #fff; font-size: clamp(38px, 6.5vw, 74px); letter-spacing: -1.5px; line-height: 1.05; }
.hero .tagline { font-size: clamp(18px, 2.4vw, 23px); color: #e6edf5; margin-top: 22px; font-weight: 300; }
.hero__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index:1; color:#fff; font-size: 12px; letter-spacing:.2em; text-transform: uppercase; opacity:.8; }
.youth-chip {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: var(--steel); padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}

/* ==========================================================================
   Service times strip
   ========================================================================== */
.times { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.time-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow); transition: transform .22s ease;
}
.time-card:hover { transform: translateY(-4px); }
.time-card .day { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 20px; }
.time-card .hour { font-size: 26px; font-family: var(--font-head); font-weight: 700; color: var(--steel); margin: 6px 0 4px; }
.time-card .desc { font-size: 15px; color: var(--body); }

/* ==========================================================================
   Split feature (image + text)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__body h2 { font-size: clamp(26px, 3.4vw, 38px); }
.split__body p { margin-top: 16px; }
.split__body .btn { margin-top: 26px; }

/* ==========================================================================
   Cards grid (ministries / info)
   ========================================================================== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); }
.card__img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.card__imglink { display: block; overflow: hidden; }
.card__imglink .card__img { transition: transform .35s ease; }
.card__imglink:hover .card__img { transform: scale(1.05); }
.card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { font-size: 21px; margin-bottom: 10px; }
.card__body p { font-size: 15.5px; flex: 1; }
.card__tag {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--steel);
  background: var(--sky); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; align-self: flex-start;
}
.card__link { margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy); }
.card__link::after { content: " \2192"; }

/* ==========================================================================
   Event feature
   ========================================================================== */
.event { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center;
  background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.event__media { position: relative; align-self: stretch; }
.event__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.event__body { padding: 50px 46px; }
.event__date { display:inline-flex; align-items:center; gap:8px; font-family: var(--font-head); font-weight:600; color: var(--gold); letter-spacing:.05em; margin-bottom: 14px; }
.event__body h3 { font-size: clamp(26px, 3vw, 36px); }
.event__body p { margin: 16px 0 26px; }

/* ==========================================================================
   Camp banner (youth)
   ========================================================================== */
.camp-banner { display: block; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); max-width: 1000px; margin-inline: auto; }
.camp-banner img { width: 100%; display: block; transition: transform .35s ease; }
.camp-banner:hover img { transform: scale(1.02); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { column-count: 3; column-gap: 16px; max-width: 1000px; margin-inline: auto; }
.gallery img {
  width: 100%; margin: 0 0 16px; border-radius: 12px; display: block;
  break-inside: avoid; -webkit-column-break-inside: avoid;
  transition: transform .3s ease, filter .3s ease; filter: saturate(.95);
}
.gallery img:hover { transform: scale(1.02); filter: saturate(1.1); }

/* Moments — horizontal scroll carousel (uniform cards, no gaps) */
.moments { position: relative; }
.moments__track {
  display: flex; gap: 18px; overflow-x: auto; padding: 4px 2px 6px;
  scroll-snap-type: x proximity; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.moments__track::-webkit-scrollbar { display: none; }
.moments__track img {
  flex: 0 0 auto; width: 320px; height: 460px; object-fit: cover;
  border-radius: 16px; scroll-snap-align: start; filter: saturate(.97);
  transition: filter .3s ease;
}
.moments__track img:hover { filter: saturate(1.1); }
.moments__nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.moments__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--navy); font-family: var(--font-head); font-size: 24px;
  line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.moments__btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.moments__btn:disabled { opacity: .35; cursor: default; }
@media (max-width: 640px) {
  .moments__track img { width: 250px; height: 370px; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.cta-band p { color: #b9c6d6; max-width: 560px; margin: 16px auto 30px; }
.cta-band .hero__actions { margin-top: 10px; }
.cta-band:not(:has(.hero__actions)) { padding-bottom: 40px; }
.cta-band:not(:has(.hero__actions)) p { margin-bottom: 0; }

/* ==========================================================================
   Page banner (interior pages)
   ========================================================================== */
.page-banner {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; text-align: center; padding: 118px 0 66px;
}
.page-banner h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); letter-spacing: -1px; }
.page-banner p { color: #b9c6d6; max-width: 620px; margin: 16px auto 0; font-size: 18px; }
.breadcrumb { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 18px; }
.breadcrumb a { color: var(--steel-light); }

/* ==========================================================================
   Contact / info blocks
   ========================================================================== */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.info-item { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background:#fff; }
.info-item h4 { font-size: 15px; letter-spacing:.08em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.info-item p { color: var(--ink); font-size: 17px; }
.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); filter: grayscale(.15); }
.map-card {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 30px 34px; border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.10), transparent 42%),
    linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: #fff; box-shadow: var(--shadow); transition: transform .2s ease;
}
.map-card:hover { transform: translateY(-3px); color:#fff; }
.map-card__pin { width: 46px; height: 46px; fill: #fff; flex: none; opacity: .95; }
.map-card strong { display: block; font-family: var(--font-head); font-size: 20px; }
.map-card span:not(.btn) { color: #d7e0ea; font-size: 15px; }
.map-card .btn { margin-left: auto; }
@media (max-width: 560px) { .map-card .btn { margin-left: 0; } }

.prose p { margin-bottom: 18px; }
.prose h3 { margin: 34px 0 12px; color: var(--navy); }

/* Leadership team */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; max-width: 940px; margin-inline: auto; }
.team-member__photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
  border-radius: var(--radius); box-shadow: var(--shadow); background: var(--sky);
}
.team-member__name { font-size: 25px; margin: 24px 0 3px; }
.team-member__role {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--steel);
}
.team-member__bio { margin-top: 16px; font-size: 16.5px; }

/* Membership section (Lakewood-style layout) */
.membership-section { padding-top: 0; padding-bottom: 80px; text-align: center; }
.membership-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 8px;
  text-align: center;
}
.membership-desc {
  font-size: 17px;
  color: var(--body);
  max-width: 820px;
  margin: 16px auto 0;
  line-height: 1.7;
  text-align: center;
}
.membership-banner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
.membership-banner img {
  width: 100%;
  height: 820px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto;
  filter: saturate(.95);
  transition: filter .3s ease;
}
.membership-banner img:hover { filter: saturate(1.1); }
.membership-learn {
  text-align: center;
  max-width: 820px;
  margin: 56px auto 0;
}
.membership-learn__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 16px;
  text-align: center;
}
.membership-learn__text {
  font-size: 16.5px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 32px;
  text-align: center;
}
.membership-learn__cta { margin-top: 10px; text-align: center; }
.membership-learn__cta .btn {
  padding: 16px 44px;
  font-size: 16px;
  letter-spacing: .06em;
}
@media (max-width: 760px) {
  .membership-banner img { height: 500px; }
  .membership-learn { margin-top: 40px; }
}
@media (max-width: 760px) { .team { grid-template-columns: 1fr; gap: 44px; max-width: 460px; } }

/* Values list */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value { text-align: center; padding: 20px; }
.value .num { font-family: var(--font-head); font-weight: 700; font-size: 40px; color: var(--sky); }
.value h3 { margin: 6px 0 10px; color: var(--navy); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow);
}
.contact-card h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 8px; }
.contact-card > p { margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-head); font-size: 13.5px; font-weight: 600; letter-spacing: .03em; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px;
  background: var(--mist); transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--steel); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); }
.form-consent input { margin-top: 4px; width: auto; }
.form-consent label { font-family: var(--font-body); font-weight: 400; color: var(--body); letter-spacing: normal; }
.contact-card .btn { margin-top: 6px; border: none; cursor: pointer; }
.form-hint { display: none; font-size: 13px; color: #b3413a; margin-top: -4px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 22px; }
.contact-sidebar .info-item { background: #fff; }
.contact-sidebar h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; color: var(--steel); margin-bottom: 4px; }

.form-banner {
  display: none; align-items: center; gap: 12px; padding: 18px 24px; border-radius: var(--radius);
  font-size: 15px; margin-bottom: 34px;
}
.form-banner.show { display: flex; }
.form-banner--success { background: #eaf4ec; color: #245c37; border: 1px solid #bfe0c6; }
.form-banner--error { background: #fbeceb; color: #8a2f28; border: 1px solid #f2c4c0; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 30px 26px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: #9fb0c2; padding: 70px 0 30px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #9fb0c2; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 54px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.socials { display: flex; gap: 14px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background .2s ease;
}
.socials a:hover { background: var(--steel); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .section { padding: 68px 0; }
  .split, .event { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split__media { order: 0; }
  .event__body { padding: 36px 28px; }
  .values { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery { column-count: 2; column-gap: 12px; }
  .gallery img { margin-bottom: 12px; }

  .nav__links {
    position: fixed; inset: 86px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 5%; transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a.active::after { display: none; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand__name { font-size: 15px; }
  .hero__inner { padding: 90px 0; }
}
