/* ============================================================
   Beltsville Elderly Care Home — styles.css
   Warm residential: sage green · cream · navy · terracotta
   Mobile-first · CSS Variables · No inline styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --cream:        #F7F3EC;
  --cream-dark:   #EDE7DB;
  --sage:         #7A9E7E;
  --sage-dark:    #5A7A5E;
  --sage-light:   #D4E6D5;
  --navy:         #2B3F5C;
  --navy-light:   #3D5580;
  --terracotta:   #C07050;
  --terra-dark:   #A05A3C;
  --warm-white:   #FDFAF5;
  --text:         #3A3028;
  --text-light:   #6B5E54;
  --text-muted:   #9C8E84;
  --border:       #E2D9CC;
  --shadow-sm:    0 2px 8px rgba(43,63,92,0.08);
  --shadow-md:    0 6px 24px rgba(43,63,92,0.12);
  --shadow-lg:    0 12px 48px rgba(43,63,92,0.16);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --max-width:    1140px;
  --nav-h:        74px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Utility ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--warm-white); }
.section--sage  { background: var(--sage-light); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-title--light { color: var(--warm-white); }
.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.section-lead--light { color: rgba(253,250,245,0.82); }

.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover { background: var(--terra-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--warm-white); }
.btn--outline-light {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(253,250,245,0.5);
}
.btn--outline-light:hover { background: rgba(253,250,245,0.1); }

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(253,250,245,0.85);
  font-size: 0.8rem;
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar a { color: var(--sage-light); font-weight: 600; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.nav__logo-sub {
  font-size: 0.7rem;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links {
  display: none;
  gap: 6px;
  align-items: center;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover, .nav__links a.active { color: var(--sage-dark); background: var(--sage-light); }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--terracotta);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.nav__phone svg { flex-shrink: 0; }
.nav__cta { display: none; }
.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: 0.25s;
}

/* Mobile nav open */
.nav__mobile {
  display: none;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.nav__mobile a:last-child { border: none; }
.nav__mobile .btn { width: 100%; text-align: center; justify-content: center; margin-top: 14px; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(43,63,92,0.92) 0%,
    rgba(43,63,92,0.7) 55%,
    rgba(90,122,94,0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px;
  max-width: 680px;
}
.hero__tag {
  display: inline-block;
  background: rgba(122,158,126,0.25);
  border: 1px solid rgba(122,158,126,0.5);
  color: var(--sage-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--sage-light);
}
.hero__lead {
  font-size: 1.1rem;
  color: rgba(253,250,245,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__address {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(253,250,245,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(253,250,245,0.65);
  font-size: 0.875rem;
}

/* ── Trust bar ────────────────────────────────────────────── */
.trustbar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: center;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.trustbar__item svg { color: var(--sage-dark); flex-shrink: 0; }

/* ── Intro ────────────────────────────────────────────────── */
.intro { display: grid; gap: 56px; align-items: center; }
@media (min-width: 768px) {
  .intro { grid-template-columns: 1fr 1fr; }
}
.intro__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.intro__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.intro__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro__badge-icon { font-size: 1.5rem; }
.intro__badge-text { font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.intro__badge-text span { color: var(--text-light); font-weight: 400; }

/* ── Care cards ───────────────────────────────────────────── */
.cards { display: grid; gap: 24px; }
@media (min-width: 600px)  { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__icon {
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card__title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.card__text  { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ── Two-col with image ───────────────────────────────────── */
.split { display: grid; gap: 56px; align-items: center; }
@media (min-width: 768px) {
  .split                  { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__img { order: -1; }
}
.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Philosophy list ─────────────────────────────────────── */
.philo-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.philo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.philo-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 8px;
}
.philo-item__text { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }
.philo-item__text strong { color: var(--navy); font-weight: 600; }

/* ── Quote block ─────────────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--sage);
  padding: 20px 28px;
  background: var(--sage-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.quote-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.7;
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery { display: grid; gap: 16px; }
.gallery--2 { grid-template-columns: 1fr 1fr; }
.gallery--3 { grid-template-columns: repeat(3, 1fr); }
.gallery--masonry {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
}
@media (min-width: 768px) {
  .gallery--masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
}
.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-dark);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--span2 { grid-column: span 2; }
.gallery__item--tall  { grid-row: span 2; }

/* Gallery no-photo state */
.gallery-placeholder {
  background: var(--cream);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 32px;
  text-align: center;
}
.gallery-placeholder__icon { font-size: 3rem; opacity: 0.5; }
.gallery-placeholder p { color: var(--text-light); font-size: 0.95rem; max-width: 360px; line-height: 1.7; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { display: grid; gap: 24px; }
@media (min-width: 700px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.tcard {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tcard__stars { color: #E8A040; font-size: 1rem; letter-spacing: 2px; }
.tcard__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.75;
  flex: 1;
}
.tcard__author { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.tcard__relation { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

/* Coming-soon testimonials */
.reviews-coming {
  text-align: center;
  padding: 48px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.reviews-coming h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.reviews-coming p { color: var(--text-light); font-size: 0.95rem; max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }

/* ── Trust signals ───────────────────────────────────────── */
.trust-grid { display: grid; gap: 24px; }
@media (min-width: 600px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(253,250,245,0.12);
}
.trust-item__icon { font-size: 2rem; margin-bottom: 12px; }
.trust-item__title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--warm-white); margin-bottom: 8px; }
.trust-item__text  { font-size: 0.85rem; color: rgba(253,250,245,0.7); line-height: 1.65; }

/* ── Care detail list ────────────────────────────────────── */
.care-list { display: flex; flex-direction: column; gap: 12px; }
.care-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}
.care-list li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Contact form ─────────────────────────────────────────── */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--sage-dark);
}
.contact-detail__label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail__value { font-size: 0.95rem; color: var(--text); font-weight: 500; margin-top: 2px; line-height: 1.5; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}
.map-wrap iframe { display: block; width: 100%; height: 260px; border: 0; }

/* ── Story page ───────────────────────────────────────────── */
.founder-block {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .founder-block { grid-template-columns: 1fr 1.6fr; } }

.founder-visual {
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--border);
}
.founder-visual__icon { font-size: 4rem; margin-bottom: 16px; }
.founder-visual__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-visual__title { font-size: 0.85rem; color: var(--sage-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.founder-visual__note { font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage);
  border: 3px solid var(--warm-white);
  box-shadow: 0 0 0 2px var(--sage);
  flex-shrink: 0;
}
.timeline-content { flex: 1; }
.timeline-content h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.timeline-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(122,158,126,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 14px;
  opacity: 0.8;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--warm-white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 680px;
}
.page-hero__lead {
  font-size: 1.05rem;
  color: rgba(253,250,245,0.78);
  max-width: 580px;
  line-height: 1.8;
}

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--warm-white);
  margin-bottom: 16px;
  font-weight: 700;
}
.cta-band__lead {
  color: rgba(253,250,245,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(253,250,245,0.75);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand__logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--warm-white);
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 300px; }

.footer-col h4 {
  color: var(--warm-white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 0.875rem; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--sage-light); }

.footer-bottom {
  border-top: 1px solid rgba(253,250,245,0.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(253,250,245,0.4);
}

/* ── Misc helpers ────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .hero__content { padding: 60px 0; }
  .btn { padding: 12px 22px; font-size: 0.875rem; }
}
