/* Yardley Kitchen of Kindness — page patterns */

/* =========================================================
   Section headers — asymmetric, not centred by default
   ========================================================= */

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head > :last-child { padding-bottom: 0.4rem; }

.section-head-single {
  grid-template-columns: 1fr;
  max-width: 680px;
}

/* Heading on the left, a link parked on the right */
.section-head-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.section-head-inline h2 { margin-bottom: 0; }

@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* A short coral rule that sits above a heading */
.tick {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* =========================================================
   Home hero — split, photo carries the brand instead of a wash
   ========================================================= */

.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(120% 90% at 12% 0%, #FFFDF4 0%, rgba(255, 253, 244, 0) 60%),
    var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy { max-width: 30rem; }

.hero h1 {
  font-size: clamp(2.35rem, 3.9vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero .lead {
  font-size: clamp(1.0625rem, 0.6vw + 0.95rem, 1.25rem);
  max-width: 40ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

/* Factual meta strip under the hero copy — no invented statistics */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  font-size: var(--step--1);
  color: var(--ink-mute);
}

.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }

.hero-meta .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--peach);
  flex: none;
}

/* Hero photograph, cropped to the bowl silhouette of the mark */
.hero-figure { position: relative; }

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: 62% 26%;
  border-radius: var(--bowl);
}

/* The rays that radiate off the heart in the logo */
.hero-rays {
  position: absolute;
  top: -18px;
  right: -14px;
  width: clamp(78px, 9vw, 124px);
  color: var(--peach);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  left: clamp(-0.5rem, -1vw, -1.75rem);
  bottom: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

.hero-badge svg { color: var(--coral); flex: none; }

.hero-badge b {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.2;
}

.hero-badge small {
  font-size: 0.75rem;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: none; }
  .hero-figure { max-width: 460px; }
  .hero-figure img { aspect-ratio: 4 / 3.6; }
  .hero-badge { left: auto; right: 1rem; }
}

/* =========================================================
   Interior page heroes — photo stays legible under a scrim
   ========================================================= */

.page-hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  color: #fff;
  background-color: var(--burgundy-deep);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  isolation: isolate;
}

/* Directional scrim: dark where the type sits, photo readable elsewhere */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg,
      rgba(66, 14, 23, 0.92) 0%,
      rgba(66, 14, 23, 0.78) 34%,
      rgba(66, 14, 23, 0.32) 68%,
      rgba(66, 14, 23, 0.18) 100%);
}

.page-hero .container { position: relative; }

.page-hero > .container > * { max-width: 46rem; }

section.page-hero h1 {
  color: #fff;
  margin-bottom: 0.9rem;
  text-shadow: none;
}

.page-hero p {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
  margin: 0;
  text-shadow: none;
}

.page-hero .eyebrow { color: var(--peach); }

/* Backgrounds */
.hero-team    { background-image: url('../assets/images/photos/588409364_1177256171211138_2349861352918402751_n.jpg'); }
.hero-donate  { background-image: url('../assets/images/photos/590764760_1177260677877354_8272275265280234646_n.jpg'); }
.hero-gallery { background-image: url('../assets/images/photos/589211666_1177260397877382_4073025688232615726_n.jpg'); }
.hero-request { background-image: url('../assets/images/photos/589655435_1177260721210683_2176968772835659170_n.jpg'); }
.hero-volunteer { background-image: url('../assets/images/photos/589190549_1177256277877794_7459857766814935686_n.jpg'); }
.hero-monthly { background-image: url('../assets/images/photos/590893501_1177260494544039_3555072081067432130_n.jpg'); }
.hero-matching { background-image: url('../assets/images/photos/590418190_1177258767877545_1133803036779581684_n.jpg'); }
.hero-legacy  { background-image: url('../assets/images/photos/590762879_1177256714544417_5962521010772245558_n.jpg'); }

/* =========================================================
   Facts band — statements the org already makes, set large
   ========================================================= */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.fact {
  background: var(--burgundy);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 2rem);
}

.fact b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  color: var(--peach);
  margin-bottom: 0.5rem;
}

.fact span {
  display: block;
  font-size: var(--step--1);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

/* =========================================================
   Values — typographic blocks, no icon-in-a-circle
   ========================================================= */

/* Unordered, so they get vertical rules — the ordered steps below get
   numbers and a horizontal line. Keeps the two sections from rhyming. */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.value {
  padding: 0 clamp(1.5rem, 3vw, 2.75rem);
  border-left: 1px solid var(--rule);
}

.value:first-child { padding-left: 0; border-left: none; }
.value:last-child { padding-right: 0; }

.value h3 { margin-bottom: 0.75rem; }
.value p { line-height: 1.7; }

@media (max-width: 800px) {
  .values { gap: 2rem; }
  .value {
    padding: 1.5rem 0 0;
    border-left: none;
    border-top: 1px solid var(--rule);
  }
  .value:first-child { padding-top: 1.5rem; border-top: 1px solid var(--rule); }
}

/* =========================================================
   Steps — a horizontal line of numbered moments
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  position: relative;
}

.step { position: relative; padding-top: 2.75rem; }

.step::before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--coral);
}

/* the thin connector that reads as one continuous line of service */
.step::after {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 2.2rem;
  right: -1.5rem;
  height: 1px;
  background: var(--rule);
}

.step:last-child::after { display: none; }

@media (max-width: 760px) {
  .step::after { display: none; }
}

.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: var(--step--1); }

/* legacy support for the old .step-number markup */
.step-number {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--coral-tint);
  color: var(--coral);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
}

/* =========================================================
   Photo mosaic — deliberately uneven, reads as a real album
   ========================================================= */

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(130px, 15.5vw, 215px);
  gap: clamp(0.65rem, 1.4vw, 1rem);
}

.mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.mosaic .m-tall { grid-row: span 2; }
.mosaic .m-wide { grid-column: span 2; }

@media (max-width: 760px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic .m-wide { grid-column: span 2; }
}

/* =========================================================
   Option cards — "pick a way in". Photo does the work; no
   icon-in-a-circle anywhere.
   ========================================================= */

.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
}

.option {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(280px, 30vw, 350px);
  padding: clamp(1.5rem, 2.5vw, 1.9rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-decoration: none;
  background: var(--burgundy-deep);
}

.option img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.option::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    rgba(56, 11, 19, 0.96) 0%,
    rgba(56, 11, 19, 0.9) 34%,
    rgba(56, 11, 19, 0.55) 62%,
    rgba(56, 11, 19, 0.2) 100%);
}

.option:hover img,
.option:focus-visible img { transform: scale(1.05); }

.option .option-kicker {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-soft);
  margin-bottom: 0.6rem;
}

.option h3 {
  color: #fff;
  font-size: var(--step-2);
  margin-bottom: 0.4rem;
}

.option p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--step--1);
  line-height: 1.55;
  margin: 0;
}

.option .option-go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--peach-soft);
}

.option .option-go svg { transition: transform var(--transition-fast); }
.option:hover .option-go svg { transform: translateX(4px); }

/* A wider first card when one option matters more */
.options-feature > .option:first-child { grid-column: span 2; }

@media (max-width: 760px) {
  .options-feature > .option:first-child { grid-column: auto; }
}

/* =========================================================
   Amount ladder — the giving moment, set like a price list
   ========================================================= */

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.1rem);
}

.tier-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 0.85rem;
}

.tier h3 {
  font-size: var(--step-1);
  margin-bottom: 0.45rem;
}

.tier p {
  font-size: var(--step--1);
  line-height: 1.6;
  margin: 0;
}

.tier-tag {
  position: absolute;
  top: clamp(1.6rem, 3vw, 2.1rem);
  right: clamp(1.6rem, 3vw, 2.1rem);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.tier-featured { background: var(--coral-tint); }
.tier-featured .tier-amount { color: var(--coral-deep); }

/* Amount + description rows inside the monthly tier picker */
.tier-row {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2rem);
}

.tier-row-amount { flex: none; min-width: 6.5rem; }
.tier-row-body { flex: 1; }
.tier-row-body h3 { margin-bottom: 0.35rem; }
.tier-amount-sm { font-size: 1.4rem !important; }

@media (max-width: 560px) {
  .tier-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* =========================================================
   Definition list — benefits, terms, anything label + detail
   ========================================================= */

.deflist {
  margin: 0;
  max-width: 900px;
  border-top: 1px solid var(--rule);
}

.deflist > div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: 0.4rem 2.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule-soft);
}

.deflist dt {
  font-weight: 600;
  color: var(--burgundy);
  font-size: var(--step-1);
  letter-spacing: -0.01em;
}

.deflist dd {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 620px) {
  .deflist > div { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* =========================================================
   Factsheet — label/value rows for legal + org details
   ========================================================= */

.factsheet {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.factsheet > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 1.45fr);
  gap: 0.5rem 1.5rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule-soft);
}

.factsheet dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.factsheet dd {
  margin: 0;
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.45;
}

@media (max-width: 520px) {
  .factsheet > div { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* Compact numbered list for inside a column */
.ministeps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ministep;
}

.ministeps li {
  counter-increment: ministep;
  position: relative;
  padding: 0 0 1.25rem 2.6rem;
}

.ministeps li::before {
  content: counter(ministep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--coral);
}

.ministeps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.62rem;
  top: 1.9rem;
  bottom: 0.35rem;
  width: 1px;
  background: var(--rule);
}

.ministeps h4 { margin-bottom: 0.2rem; }
.ministeps p { font-size: var(--step--1); margin: 0; }

/* Panel for third-party embeds (Double the Donation, etc.) */
.widget-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

/* Pull the Double the Donation widget into the palette. Their markup is
   rendered inline (no iframe), so these are best-effort — if the vendor
   renames a class the widget still works, it just looks like their default. */
.widget-panel #dd-container { font-family: var(--font-body); }

.widget-panel .dtd-search-input,
.widget-panel #dd-container input[type="text"] {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.widget-panel .dtd-search-input:focus,
.widget-panel #dd-container input[type="text"]:focus {
  outline: none;
  border-color: var(--burgundy);
  background-color: var(--paper);
  box-shadow: 0 0 0 3px rgba(124, 29, 43, 0.1);
}

.widget-panel .lets-check,
.widget-panel #dd-container button {
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--coral);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.widget-panel .lets-check:hover,
.widget-panel #dd-container button:hover { background: var(--coral-deep); }

/* Pull quote inside a value block — the suggested bequest wording */
.pullquote {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--peach);
  font-size: var(--step--1);
  font-style: italic;
  color: var(--ink-mute);
}

/* =========================================================
   Notice panel — replaces the peach-outlined box
   ========================================================= */

.notice {
  border-left: 3px solid var(--peach);
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
}

.notice h3 { margin-bottom: 0.5rem; }
.notice p:last-child { margin-bottom: 0; }

.notice-ein {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(124, 29, 43, 0.08);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--burgundy);
}

/* =========================================================
   Quote / welcome moment
   ========================================================= */

.welcome {
  position: relative;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.welcome .display {
  max-width: 18ch;
  margin: 1.5rem auto 0;
}

.welcome-rays { display: block; color: var(--peach); margin: 0 auto; }

/* =========================================================
   Split content block (photo + prose)
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.split-reverse .split-media { order: 2; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
}

/* legacy alias */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 860px) {
  .two-column-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   Closing CTA
   ========================================================= */

.cta-deep {
  background: var(--burgundy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-deep .cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cta-deep h2 { max-width: 14ch; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 860px) {
  .cta-deep .cta-inner { grid-template-columns: 1fr; }
}

/* legacy */
.banner-maroon {
  background-color: var(--burgundy);
  color: #fff;
  text-align: center;
  padding: var(--pad-tight) 0;
}

.banner-maroon h2 { color: #fff; margin-bottom: 1rem; }
.banner-maroon p { color: rgba(255, 255, 255, 0.82); max-width: 46rem; margin: 0 auto; }

/* =========================================================
   Misc kept from before
   ========================================================= */

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 860px) {
  .content-layout { grid-template-columns: 1fr; }
}

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.info-card {
  background-color: var(--cream);
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
}

.info-card-center {
  max-width: 700px;
  margin: 0 auto;
}

.img-shadow { box-shadow: var(--shadow-md); }

.section-padding { padding: var(--pad-tight) 0; }
.section-padding-lg { padding: var(--pad) 0; }

.input-with-prefix { position: relative; }
.input-with-prefix input { padding-left: 2rem; }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background-color: var(--burgundy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem;
  font-size: 0.9375rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-brand img {
  width: 210px;
  max-width: 70%;
  margin-bottom: 1.1rem;
}

.footer-brand p { max-width: 30ch; color: rgba(255, 255, 255, 0.66); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-col p { margin-bottom: 0.6rem; }

.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 0.2em; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
}

.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.55); }
.footer-legal strong { color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.footer-bottom a { color: rgba(255, 255, 255, 0.72); }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
