/* ─────────────────────────────────────────────
   Perelandra Publishing Company — Stylesheet
   Color palette and typography derived from
   the Perelandra logo imagery.
───────────────────────────────────────────── */

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

/* ── Custom Properties ── */
:root {
  --cream:       #EDE8DC;
  --dark:        #1A1814;
  --teal:        #4AABA0;
  --sand:        #C8B496;
  --warm-white:  #F8F4EE;
  --ocean:       #2D7A85;
  --muted:       #6a5e52;

  --font-script: 'Dancing Script', cursive;
  --font-body:   'Cormorant Garant', serif;
  --font-ui:     'Montserrat', sans-serif;

  --nav-height:    76px;
  --max-width:     1200px;
  --section-pad:   5.5rem 1.5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--dark);
  background: var(--warm-white);
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-script);
  font-weight: 600;
  line-height: 1.2;
}

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-pad); }

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover  { background: var(--ocean); border-color: var(--ocean); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }

.text-link {
  font-family: var(--font-ui);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--ocean); border-color: var(--ocean); }

.section-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Scroll fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Grain texture overlay (applied to cream sections) ── */
.grain {
  position: relative;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 180, 150, 0.28);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.75rem;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 3px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(200, 180, 150, 0.28);
  padding: 1.5rem 1.75rem;
  gap: 1.25rem;
  position: sticky;
  top: var(--nav-height);
  z-index: 199;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
.mobile-nav a.active { color: var(--teal); }

/* ═══════════════════════════════════════════
   WAVE DIVIDERS
═══════════════════════════════════════════ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 1.5rem 2.25rem;
  text-align: center;
}
.footer-logo {
  width: 180px;
  margin: 0 auto 1.5rem;
  opacity: 0.88;
}
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--sand);
  margin-bottom: 1.75rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.25rem;
  list-style: none;
  margin-bottom: 2.25rem;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav a:hover { color: var(--teal); opacity: 1; }
.footer-divider {
  width: 48px;
  height: 1px;
  background: rgba(200, 180, 150, 0.25);
  margin: 0 auto 1.5rem;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  color: rgba(200, 180, 150, 0.4);
}

/* ═══════════════════════════════════════════
   HOMEPAGE — HERO
═══════════════════════════════════════════ */
.hero {
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 0;
  background: linear-gradient(162deg, var(--ocean) 0%, var(--teal) 52%, #7EC9BE 80%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}

/* Concentric ring texture */
.hero-rings {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-rings::before,
.hero-rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-rings::before {
  width: 160vmax;
  height: 160vmax;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 80px rgba(255,255,255,0.03),
    0 0 0 160px rgba(255,255,255,0.025),
    0 0 0 240px rgba(255,255,255,0.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.25rem, 9vw, 7rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 28px rgba(0,0,0,0.12);
  line-height: 1.05;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.25vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.84);
  margin-bottom: 2.75rem;
  letter-spacing: 0.03em;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   HOMEPAGE — FEATURED RELEASE
═══════════════════════════════════════════ */
.featured-release {
  background: var(--cream);
  padding: var(--section-pad);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.featured-book-wrap { position: relative; }
.featured-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 1;
}
.book-cover-placeholder {
  aspect-ratio: 2/3;
  max-width: 320px;
  background: linear-gradient(150deg, var(--ocean) 0%, var(--teal) 60%, #5DC4B8 100%);
  border-radius: 4px 14px 14px 4px;
  box-shadow: -10px 10px 0 var(--sand), 6px 6px 32px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.book-cover-placeholder svg { opacity: 0.35; }
.book-cover-placeholder span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured-copy .section-label { margin-bottom: 0.85rem; }
.featured-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.1rem;
  color: var(--dark);
}
.featured-copy .book-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.featured-copy .book-author {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 2rem;
}
.featured-copy .btn { margin-right: 0.75rem; }

/* ═══════════════════════════════════════════
   HOMEPAGE — ABOUT TEASER
═══════════════════════════════════════════ */
.about-teaser {
  background: var(--warm-white);
  padding: var(--section-pad);
  text-align: center;
}
.about-teaser-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pull-quote {
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  color: var(--teal);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.pull-quote-attr {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2.25rem;
  display: block;
}
.about-teaser-bio {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.teal-rule {
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin: 0 auto 2.25rem;
  border: none;
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(125deg, var(--ocean) 0%, var(--teal) 100%);
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: #fff;
  margin-bottom: 0.6rem;
}
.page-hero-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.bio-section {
  background: var(--warm-white);
  padding: var(--section-pad);
}
.bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.bio-photo-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 2.5rem);
}
.photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--cream), var(--sand));
  border: 3px solid var(--teal);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--sand);
}
.photo-placeholder svg { opacity: 0.5; }
.photo-placeholder span {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bio-text h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.bio-text p {
  font-size: 1.075rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.bio-text p:last-child { margin-bottom: 0; }

/* ── Highlights ── */
.highlights-strip {
  background: var(--cream);
  padding: 4rem 1.5rem;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.highlight-card {
  background: var(--warm-white);
  border-top: 3px solid var(--teal);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.highlight-stat {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}
.highlight-card p {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.65;
}

/* ── Publications ── */
.publications-section {
  background: var(--warm-white);
  padding: var(--section-pad);
}
.section-heading {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
  margin-bottom: 2.75rem;
}
.pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}
.pub-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: 3px;
}
.pub-glyph {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pub-card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.4;
}
.pub-card-note {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.pub-note {
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   STORE PAGE
═══════════════════════════════════════════ */
.store-intro {
  background: var(--cream);
  padding: var(--section-pad);
  text-align: center;
}
.store-intro-inner {
  max-width: 680px;
  margin: 0 auto;
}
.store-intro h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.1rem;
}
.store-intro p {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.product-grid-section {
  background: var(--warm-white);
  padding: var(--section-pad);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-card {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.11);
}
.product-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--ocean), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-cover svg { opacity: 0.22; }
.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--sand);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}
.product-info { padding: 1.35rem 1.25rem 1.5rem; }
.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.product-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.zoho-note {
  max-width: 600px;
  margin: 3.5rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: 3px;
  border-left: 3px solid var(--teal);
  text-align: center;
}
.zoho-note p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-section {
  background: var(--warm-white);
  padding: var(--section-pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--teal);
}
.contact-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
}
.contact-card .card-desc {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Forms */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
  opacity: 0.8;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(200, 180, 150, 0.55);
  border-radius: 3px;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234AABA0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.5rem; }

.press-note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--warm-white);
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: #8a7a6a;
  line-height: 1.5;
}
.press-note a { color: var(--teal); border-bottom: 1px solid var(--teal); }

.contact-aside {
  background: var(--cream);
  padding: 4rem 1.5rem;
  text-align: center;
}
.contact-aside-inner {
  max-width: 560px;
  margin: 0 auto;
}
.contact-aside h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.contact-aside p {
  font-size: 0.975rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .featured-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .book-cover-placeholder { max-width: 260px; margin: 0 auto; }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bio-photo-wrap {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root { --section-pad: 3.75rem 1.25rem; }

  .hero { padding-top: 4rem; }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .footer-nav { gap: 0.5rem 1.5rem; }
}
