/*
 * Butterfly Theme — theme.css
 * Single stylesheet loaded globally via functions.php
 * Google Fonts loaded in header.php
 */

/* ─────────────────────────────
   RESET & ROOT
───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:     #8B1A8A;
  --lime:       #C8E63C;
  --lime-dark:  #9FB82E;
  --forest:     #102637;
  --sage:       #e7e7e7;
  --sage-mid:   #d4d4d4;
  --white:      #FAFAF8;
  --black:      #0D0D0C;
  --gray-mid:   #6B6B68;
  --gray-light: #E8E8E4;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Syne', system-ui, sans-serif;
  --pad:        clamp(20px, 5vw, 56px);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { outline: none; border: none; cursor: pointer; }
img { max-width: 100%; display: block; }
a { color: inherit; }


/* ─────────────────────────────
   BUTTONS
───────────────────────────── */
.btn-lime {
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  color: var(--black); background: var(--lime);
  padding: 20px 40px; border-radius: 100px;
  text-decoration: none; border: none; outline: none; cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-lime:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-purple {
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  color: var(--white); background: var(--purple);
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; border: none; outline: none; cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-purple:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  color: var(--black); background: transparent;
  padding: 18px 32px; border-radius: 100px;
  border: 2px solid var(--gray-light);
  text-decoration: none; outline: none; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }


/* ─────────────────────────────
   NAVIGATION
───────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad); height: 68px;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-light);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; z-index: 201; }
.nav-logo img { height: 28px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--gray-mid); text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a.current-menu-item,
.nav-links a.current { font-weight: 700; color: var(--purple); }

.nav-cta {
  font-size: 14px; font-weight: 700;
  color: var(--white); background: var(--purple);
  padding: 10px 22px; border-radius: 100px;
  border: none; outline: none; cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  letter-spacing: 0.01em; white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 201;
}
.nav-burger span {
  display: block; height: 2px; background: var(--black);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────
   MOBILE MENU
───────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 199; flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
  opacity: 0; transition: opacity 0.25s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-size: clamp(24px, 6vw, 36px); font-family: var(--serif);
  font-weight: 700; color: var(--black); text-decoration: none; transition: color 0.15s;
}
.mobile-menu a:hover,
.mobile-menu a.current { color: var(--purple); }
.mobile-menu .btn-purple { font-family: var(--sans); font-size: 16px; margin-top: 8px; }


/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.site-footer { background: var(--forest); color: var(--white); font-family: var(--sans); }

.footer-top {
  padding: 72px var(--pad) 56px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img {
  height: 24px; width: auto;
  filter: brightness(0) invert(1); margin-bottom: 20px;
}
.footer-about { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); margin-bottom: 28px; }

.footer-offices { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-office-btn {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5);
  background: none; border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: 100px; cursor: pointer; font-family: var(--sans);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.footer-office-btn:hover,
.footer-office-btn.active { color: var(--white); border-color: var(--lime); background: rgba(200,230,60,0.08); }

.footer-office-detail { display: none; flex-direction: column; gap: 4px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-office-detail.visible { display: flex; }
.footer-office-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.footer-office-detail a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-office-detail a:hover { color: var(--lime); }

.footer-col-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 24px; }
.footer-social { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.footer-social:hover { color: var(--white); }


/* ─────────────────────────────
   CONTACT MODAL
───────────────────────────── */
.contact-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(16,38,55,0.72); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.contact-modal-overlay.open { display: flex; }
.contact-modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: min(580px, 100%); max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: 0 32px 80px rgba(16,38,55,0.25);
  animation: modalIn 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-modal-header {
  padding: 40px 40px 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.contact-modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-light); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gray-mid); transition: background 0.15s; margin-top: 4px;
}
.contact-modal-close:hover { background: var(--sage-mid); }
.contact-modal-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple); font-family: var(--sans); margin-bottom: 10px;
}
.contact-modal-header h2 {
  font-family: var(--serif); font-size: clamp(22px,2.5vw,30px);
  line-height: 1.15; letter-spacing: -0.5px; color: var(--black); font-weight: 700;
}
.contact-modal-header h2 em { font-style: italic; color: var(--purple); }
.contact-modal-body { padding: 24px 40px 40px; }
.contact-modal-desc { font-size: 15px; line-height: 1.65; color: var(--gray-mid); margin-bottom: 28px; }
.contact-modal-founders { display: flex; flex-direction: column; gap: 10px; }
.contact-modal-founder {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border: 1px solid var(--gray-light);
  border-radius: var(--radius); text-decoration: none;
  transition: border-color 0.15s, background 0.15s; background: var(--white);
}
.contact-modal-founder:hover { border-color: var(--purple); background: rgba(139,26,138,0.03); }
.contact-modal-founder-left { display: flex; align-items: center; gap: 14px; }
.contact-modal-chip {
  width: 38px; height: 38px; border-radius: 50%; background: var(--purple);
  color: var(--white); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-modal-name { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 1px; }
.contact-modal-role { font-size: 12px; color: var(--gray-mid); }
.contact-modal-founder-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(139,26,138,0.07); display: flex; align-items: center;
  justify-content: center; color: var(--purple); flex-shrink: 0; transition: background 0.15s;
}
.contact-modal-founder:hover .contact-modal-founder-icon { background: var(--purple); color: var(--white); }


/* ─────────────────────────────
   PAGE HERO (archive pages)
───────────────────────────── */
.page-hero {
  padding: 148px var(--pad) 0; background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,26,138,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1400px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
}
.page-hero-left { padding-bottom: 96px; }
.page-hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.page-hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--lime); border-radius: 2px;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(44px,5.5vw,80px);
  line-height: 1.03; letter-spacing: -1.5px;
  color: var(--black); font-weight: 700; margin-bottom: 28px;
}
.page-hero h1 em { font-style: italic; color: var(--purple); }
.page-hero-desc {
  font-size: clamp(16px,1.4vw,18px); line-height: 1.7;
  color: var(--gray-mid); max-width: 440px; margin-bottom: 36px;
}
.page-hero-right { position: relative; align-self: stretch; min-height: 480px; }
.page-hero-img-wrap {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
}
.page-hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.hero-img-caption {
  position: absolute; bottom: 24px; left: 24px; background: #0a1823;
  border: 1.5px solid rgba(255,255,255,0.18); border-radius: 100px;
  padding: 10px 18px 10px 14px; display: inline-flex; align-items: center; gap: 9px;
  max-width: calc(100% - 48px);
}
.hero-img-caption-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(200,230,60,0.9);
}
.hero-img-caption-text { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.01em; line-height: 1; }
.hero-meta-row {
  display: flex; align-items: center; gap: 14px;
  padding-top: 32px; border-top: 1px solid var(--gray-light);
}
.hero-author-chip {
  width: 40px; height: 40px; border-radius: 50%; background: var(--purple);
  color: var(--white); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-author-name { font-size: 14px; font-weight: 700; color: var(--black); display: block; margin-bottom: 1px; }
.hero-author-meta { font-size: 12px; color: var(--gray-mid); }
.hero-read-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--purple);
  text-decoration: none; letter-spacing: 0.04em;
  transition: gap 0.15s; margin-left: auto;
}
.hero-read-link:hover { gap: 10px; }


/* ─────────────────────────────
   FILTER BAR
───────────────────────────── */
.section-filter {
  padding: 18px var(--pad); background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky; top: 68px; z-index: 100;
}
.filter-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; max-width: 1400px; }
.filter-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-mid); margin-right: 4px; white-space: nowrap;
}
.filter-btn {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--gray-mid);
  background: transparent; border: 1.5px solid var(--gray-light);
  padding: 7px 16px; border-radius: 100px; cursor: pointer;
  transition: all 0.15s; white-space: nowrap;
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.active { background: var(--purple); border-color: var(--purple); color: var(--white); }


/* ─────────────────────────────
   CARDS (shared — work + thinking)
───────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1400px; }

.card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-light);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.card:hover { border-color: var(--purple); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(139,26,138,0.08); }
.card.hidden { display: none; }

.card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

.card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.card-tag.essay       { color: var(--purple); background: rgba(139,26,138,0.07); }
.card-tag.report      { color: var(--white);  background: var(--forest); }
.card-tag.provocation { color: var(--black);  background: var(--lime); }
.card-tag.framework   { color: var(--black);  background: var(--sage-mid); }

.card-readtime { font-size: 11px; color: var(--gray-mid); font-weight: 500; }
.card-title { font-family: var(--serif); font-size: clamp(17px,1.4vw,20px); line-height: 1.22; letter-spacing: -0.3px; color: var(--black); font-weight: 700; margin-bottom: 10px; }
.card-deck { font-size: 14px; line-height: 1.65; color: var(--gray-mid); flex: 1; margin-bottom: 20px; }

.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--gray-light); margin-top: auto; }
.card-author { display: flex; align-items: center; gap: 9px; }
.card-chip { width: 30px; height: 30px; border-radius: 50%; background: var(--purple); color: var(--white); font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-author-name { font-size: 12px; font-weight: 700; color: var(--gray-mid); }
.card-link { font-size: 12px; font-weight: 700; color: var(--purple); text-decoration: none; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0; transition: gap 0.15s; }
.card:hover .card-link { gap: 8px; }


/* ─────────────────────────────
   NEWSLETTER
───────────────────────────── */
.section-newsletter { background: var(--forest); padding: 88px var(--pad); position: relative; overflow: hidden; }
.section-newsletter::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(139,26,138,0.15) 0%, transparent 70%); pointer-events: none; }
.newsletter-inner { max-width: 620px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.newsletter-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; }
.newsletter-inner h2 { font-family: var(--serif); font-size: clamp(28px,3vw,40px); line-height: 1.15; letter-spacing: -0.5px; color: var(--white); font-weight: 700; margin-bottom: 14px; }
.newsletter-sub { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 16px; }
.newsletter-input { flex: 1; font-family: var(--sans); font-size: 15px; color: var(--white); background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 14px 22px; outline: none; transition: border-color 0.15s; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--lime); }
.newsletter-submit { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--black); background: var(--lime); border: none; padding: 14px 28px; border-radius: 100px; cursor: pointer; white-space: nowrap; transition: opacity 0.15s, transform 0.15s; }
.newsletter-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.3); }


/* ─────────────────────────────
   TESTIMONIAL
───────────────────────────── */
.section-testimonial {
  padding: 96px var(--pad);
  background: linear-gradient(135deg, #8B1A8A 0%, #102637 100%);
  position: relative; overflow: hidden;
}
.section-testimonial::before {
  content: '\201C'; position: absolute; top: -20px; left: var(--pad);
  font-family: var(--serif); font-size: 240px; line-height: 1;
  color: var(--lime); opacity: 0.18; pointer-events: none; font-weight: 700;
}
.testimonial-inner { max-width: 860px; position: relative; z-index: 1; }
.testimonial-quote { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); line-height: 1.4; color: var(--white); letter-spacing: -0.3px; margin-bottom: 36px; font-weight: 400; font-style: italic; }
.testimonial-attr { font-size: 14px; font-weight: 700; color: var(--lime); letter-spacing: 0.06em; text-transform: uppercase; }
.testimonial-attr span { color: rgba(255,255,255,0.5); font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 8px; }


/* ─────────────────────────────
   CONTACT SECTION
───────────────────────────── */
.section-contact {
  padding: 96px var(--pad); background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; border-top: 1px solid var(--gray-light);
}
.contact-headline { font-family: var(--serif); font-size: clamp(36px,4vw,56px); line-height: 1.08; letter-spacing: -1px; color: var(--black); font-weight: 700; margin-bottom: 24px; }
.contact-headline em { font-style: italic; color: var(--purple); }
.contact-sub { font-size: 17px; line-height: 1.65; color: var(--gray-mid); margin-bottom: 40px; }
.contact-founders { display: flex; flex-direction: column; gap: 12px; }
.contact-founder {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border: 1px solid var(--gray-light);
  border-radius: var(--radius); text-decoration: none;
  transition: border-color 0.15s, background 0.15s; background: var(--white);
}
.contact-founder:hover { border-color: var(--purple); background: rgba(139,26,138,0.03); }
.contact-founder-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.contact-founder-role { font-size: 13px; color: var(--gray-mid); }
.contact-founder-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(139,26,138,0.07); display: flex; align-items: center; justify-content: center; color: var(--purple); flex-shrink: 0; transition: background 0.15s; }
.contact-founder:hover .contact-founder-icon { background: var(--purple); color: var(--white); }


/* ─────────────────────────────
   SCROLL REVEAL
───────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ─────────────────────────────
   RESPONSIVE — GLOBAL
───────────────────────────── */
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-right { min-height: 380px; }
  .page-hero-img-wrap { border-radius: var(--radius-lg); }
  .page-hero-left { padding-bottom: 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-contact { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .site-nav .nav-links,
  .site-nav .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .page-hero { padding: 120px var(--pad) 0; }
  .page-hero-left { padding-bottom: 56px; }
  .page-hero-right { min-height: 300px; }
  .section-filter { position: relative; top: auto; }
  .card-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
