*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary palette — "Daddy's Home" book branding: bold royal blue on
     clean white, black ink text. Replaces the previous gold/black-then-
     cream editorial theme entirely. Blue values sampled directly from the
     book cover/promo poster art (see scripts/sample-colors*.js). */
  --brand-blue: #092bd5;
  --brand-blue-dark: #0422af;
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-card: #ffffff;
  --border: #e0e0e0;
  --border-light: #eeeeee;
  --ink: #000000;
  --text-muted: #333333;
  --text-dim: #595959;
  --text-faint: #9a9a9a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --display: 'Anton', 'Inter', sans-serif;

  /* Tonal blue variants — replace the previous rose/violet/teal accent
     set now that the whole theme is blue-monochrome. Same recurring-motif
     role (stat-card borders, award dots), just in-family with the brand
     color instead of a separate spectrum nod. */
  --blue-light: #5670e2;
  --blue-mid: #0824b0;
  --blue-navy: #051a80;

  /* Type scale */
  --fs-pullquote-lg: clamp(1.8rem, 4vw, 3rem);
  --fs-pullquote-sm: clamp(1.4rem, 3vw, 2.2rem);

  /* Spacing scale */
  --space-section-y: 6.5rem;
  --space-section-y-lg: 8rem;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

/* PAPER GRAIN — a faint fixed noise overlay across the whole site, giving
   the white canvas a physical, printed-page texture. Pure CSS/SVG, no
   image asset, so it's uniform across all four pages via this one rule. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
img { display: block; max-width: 100%; }

/* FLOURISH DIVIDER — an original, simple center-ornament rule (thin line +
   small diamond mark + thin line), evoking the book cover's ornamental
   dividers as a recurring motif without tracing its specific illustrated
   scrollwork. Used in the hero, mission section, and pull-quotes. */
.flourish-divider { display: flex; align-items: center; justify-content: center; gap: 0.85rem; margin: 0 auto 1.75rem; max-width: 320px; }
.flourish-divider::before, .flourish-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.flourish-divider-mark { width: 7px; height: 7px; background: var(--brand-blue); transform: rotate(45deg); flex-shrink: 0; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 200; height: 64px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem;
}
.nav-logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--brand-blue); }
.nav-cta { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 1.25rem; border: 1px solid var(--brand-blue); color: var(--brand-blue); transition: all 0.2s; }
.nav-cta:hover { background: var(--brand-blue); color: #ffffff; }

/* HERO */
.hero {
  position: relative; min-height: 92vh; display: grid;
  grid-template-columns: 1fr minmax(420px, 46%); gap: 4rem; align-items: center;
  padding: var(--space-section-y-lg) 2.5rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(9,43,213,0.08) 0%, transparent 65%),
              radial-gradient(ellipse 35% 45% at 10% 85%, rgba(4,34,175,0.05) 0%, transparent 55%);
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brand-blue); flex-shrink: 0; }
.hero-name { font-family: var(--display); font-size: clamp(4rem, 9.5vw, 7rem); font-weight: 400; line-height: 0.9; color: var(--ink); letter-spacing: 0; margin-bottom: 1.5rem; text-transform: uppercase; }
.hero-name em { display: block; font-style: normal; color: var(--brand-blue); }
.hero-sub { font-size: 0.9rem; color: var(--text-dim); max-width: 460px; line-height: 1.8; margin-bottom: 2.5rem; padding-left: 1.25rem; border-left: 2px solid var(--border); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; background: var(--brand-blue); color: #ffffff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--brand-blue-dark); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; background: transparent; color: var(--ink); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid var(--border); transition: all 0.2s; cursor: pointer; }
.btn-ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stats-bar { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; padding: 0 2.5rem 5rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--brand-blue); line-height: 1; display: block; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.2rem; display: block; }

/* HERO PHOTO */
.hero-photo-col { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hero-photo-wrap { position: relative; width: 100%; max-width: 480px; aspect-ratio: 4/5; }
.hero-photo-wrap::before { content: ''; position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px; border: 1px solid rgba(9,43,213,0.2); background: rgba(9,43,213,0.04); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; border: 1px solid var(--border); position: relative; z-index: 1; display: block; }

/* MISSION STATEMENT — the site's one deliberate bold-color moment: solid
   brand blue, white text. Everything else on the site is light/white. */
.mission { padding: var(--space-section-y-lg) 2.5rem; text-align: center; }
.mission-blue { background: var(--brand-blue); color: #ffffff; }
.mission-blue .flourish-divider::before, .mission-blue .flourish-divider::after { background: rgba(255,255,255,0.35); }
.mission-blue .flourish-divider-mark { background: #ffffff; }
.mission-quote { font-family: var(--serif); font-style: italic; font-size: var(--fs-pullquote-lg); color: inherit; line-height: 1.4; max-width: 780px; margin: 0 auto; }

/* PRESS RIBBON */
.press-ribbon { background: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 1rem 2.5rem; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.press-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; flex-shrink: 0; }
.press-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; }

/* SECTIONS */
.section { padding: var(--space-section-y) 2.5rem; }
.section-alt { background: var(--bg-alt); }
.section-label { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 3rem; display: flex; align-items: center; gap: 1rem; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* BOOK — COMING SOON */
.book-layout { display: grid; grid-template-columns: 300px 1fr; gap: 5rem; align-items: start; max-width: 900px; }
.book-layout.teaser-compact { grid-template-columns: 220px 1fr; gap: 3rem; max-width: 700px; }
.book-cover-wrap { position: relative; }
.book-cover-wrap::before { content: ''; position: absolute; top: 12px; left: -12px; right: 12px; bottom: -12px; background: #e8e8e8; z-index: 0; }
.book-cover-wrap::after { content: ''; position: absolute; top: 6px; left: -6px; right: 6px; bottom: -6px; background: #f2f2f2; z-index: 0; }
.book-cover-img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; position: relative; z-index: 1; box-shadow: 0 16px 48px rgba(0,0,0,0.18); border: 1px solid var(--border); }
.coming-soon-badge { display: inline-block; margin-top: 1.5rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.5rem 1.25rem; border: 1px solid rgba(9,43,213,0.35); color: var(--brand-blue); background: rgba(9,43,213,0.06); }
.book-info-genre { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 1rem; }
.book-info-title { font-family: var(--display); font-size: clamp(2.75rem, 5.5vw, 4.25rem); font-weight: 400; color: var(--brand-blue); line-height: 0.95; letter-spacing: 0; text-transform: uppercase; margin-bottom: 1rem; }
.book-info-title.teaser-title { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.book-info-desc { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 1.75rem; max-width: 460px; }

/* PREMIERE BANNER */
.premiere-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 1rem; }
.premiere-tagline { font-family: var(--serif); font-style: italic; font-size: var(--fs-pullquote-sm); color: var(--ink); line-height: 1.5; margin-bottom: 1.5rem; max-width: 460px; }
.premiere-byline { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 2rem; }
.premiere-byline strong { color: var(--ink); font-weight: 700; }
.premiere-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.book-pullquote { font-family: var(--serif); font-style: italic; font-size: var(--fs-pullquote-sm); color: var(--ink); line-height: 1.5; max-width: 460px; margin-bottom: 1.75rem; padding-left: 1.25rem; border-left: 2px solid var(--brand-blue); }
.book-pullquote cite { display: block; margin-top: 0.6rem; font-family: var(--sans); font-style: normal; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.book-divider { height: 1px; background: var(--border); margin: 1.75rem 0; }
.book-author-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.book-author-thumb { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; border: 1px solid var(--border); flex-shrink: 0; }
.book-author-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.book-author-sub { font-size: 0.7rem; color: var(--text-faint); margin-top: 0.15rem; }
.notify-label { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1rem; }
.notify-form { display: flex; max-width: 380px; margin-bottom: 1.25rem; }
.notify-form input { flex: 1; padding: 0.85rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-right: none; color: var(--ink); font-family: var(--sans); font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.notify-form input:focus { border-color: var(--brand-blue); }
.notify-form input::placeholder { color: var(--text-faint); }
.notify-form button { padding: 0.85rem 1.5rem; background: var(--brand-blue); color: #ffffff; border: none; font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.notify-form button:hover { background: var(--brand-blue-dark); }
.book-buy-cta { margin-bottom: 1rem; }
.freeroot-link { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; display: inline-block; }
.freeroot-link:hover { color: var(--brand-blue); border-color: var(--brand-blue); }
.freeroot-note { margin-top: 1rem; padding: 0.85rem 1rem; border-left: 2px solid var(--brand-blue); background: rgba(9,43,213,0.04); font-size: 0.8rem; color: var(--text-dim); line-height: 1.6; }
.catalog-teaser { margin-top: 1.5rem; }

/* AUDIOBOOK BADGE — original simple icon, not tracing the poster's badge art */
.audiobook-badge { display: inline-flex; align-items: center; gap: 0.65rem; margin-top: 1.5rem; }
.audiobook-badge-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.audiobook-badge-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); line-height: 1.4; }
.audiobook-badge-label span { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text-dim); text-transform: none; }

/* SOCIAL PROOF */
.press-grid { display: flex; flex-wrap: wrap; gap: 1rem 1rem; margin-bottom: 3.5rem; }
.press-name-lg { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-muted); padding: 0.65rem 1.15rem; border: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--brand-blue); padding: calc(1.85rem - 1px) 1.25rem 1.85rem; text-align: center; }
.stat-card--rose { border-top-color: var(--blue-light); }
.stat-card--teal { border-top-color: var(--blue-mid); }
.stat-card--violet { border-top-color: var(--blue-navy); }
.stat-num-lg { font-family: var(--serif); font-size: 2.5rem; font-weight: 900; color: var(--brand-blue); line-height: 1; display: block; margin-bottom: 0.5rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 440px 1fr; gap: 5rem; align-items: start; }
.about-grid.teaser-compact-about { grid-template-columns: 340px 1fr; gap: 3rem; }
.about-photo-stack { position: relative; }
.about-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border: 1px solid var(--border); display: block; }
.about-photo--landscape { aspect-ratio: 900 / 658; object-position: center; }
.about-photo-candid { position: absolute; width: 52%; right: -10%; bottom: -10%; border: 4px solid var(--bg); box-shadow: 0 16px 40px rgba(0,0,0,0.18); z-index: 2; }
.about-text h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--ink); line-height: 1.05; margin-bottom: 1.75rem; }
.about-text h2 em { font-style: italic; color: var(--brand-blue); }
.about-text p { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 1.25rem; }
.inline-figure { margin: 2.25rem auto 2.5rem; max-width: 460px; }
.inline-figure img { width: 100%; display: block; border: 1px solid var(--border); }
.inline-figure figcaption { font-family: var(--serif); font-style: italic; font-size: 0.78rem; color: var(--text-faint); margin-top: 0.65rem; }
.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* MORE BOOKS catalog */
.catalog-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.75rem; }
.catalog-item { text-align: center; }
.catalog-cover { width: 100%; aspect-ratio: 2/3; object-fit: cover; box-shadow: 0 12px 32px rgba(0,0,0,0.14); margin-bottom: 0.75rem; border: 1px solid var(--border); }
.catalog-title { font-size: 0.78rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.award-dot { width: 4px; height: 4px; background: var(--brand-blue); border-radius: 50%; margin-bottom: 0.4rem; }
.award-dot--rose { background: var(--blue-light); }
.award-dot--violet { background: var(--blue-mid); }
.award-dot--teal { background: var(--blue-navy); }
.award-title { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.award-body { font-size: 0.72rem; color: var(--text-dim); line-height: 1.5; }

/* SPEAKING / GENERIC CTA BANNER — a light banner (heading + button) used
   for the Speaking strip and any other single-statement closing CTA.
   Previously had a dark "anchor" variant; retired site-wide in favor of
   the single bold-blue exception reserved for the mission section only. */
.speaking { padding: var(--space-section-y) 2.5rem; text-align: center; background: var(--bg-alt); }
.speaking-inner { max-width: 640px; margin: 0 auto; }
.speaking-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 1.25rem; }
.speaking-heading { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 2rem; }

/* NEWSLETTER */
.newsletter { padding: var(--space-section-y-lg) 2.5rem; text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(9,43,213,0.05) 0%, transparent 65%); pointer-events: none; }
.newsletter-inner { position: relative; z-index: 2; max-width: 420px; margin: 0 auto; }
.newsletter h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; }
.newsletter p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 2.25rem; line-height: 1.7; }
.newsletter-form { display: flex; }
.newsletter-form input { flex: 1; padding: 0.9rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-right: none; color: var(--ink); font-family: var(--sans); font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--brand-blue); }
.newsletter-form input::placeholder { color: var(--text-faint); }
.newsletter-form button { padding: 0.9rem 1.75rem; background: var(--brand-blue); color: #ffffff; border: none; font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--brand-blue-dark); }

/* FOOTER — now light, matching the rest of the site (previously the one
   permanent dark "anchor" element; retired per the confirmed decision to
   drop dark sections everywhere except the mission-blue exception). */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 3rem 2.5rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.8rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--brand-blue); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.7rem; color: var(--text-faint); letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 4rem 2rem; }
  .hero-photo-col { order: -1; margin-bottom: 2.5rem; }
  .hero-photo-wrap { max-width: 420px; margin: 0 auto; }
  .book-layout, .book-layout.teaser-compact { grid-template-columns: 1fr; }
  .book-cover-wrap { max-width: 260px; }
  .about-grid, .about-grid.teaser-compact-about { grid-template-columns: 1fr; }
  .about-photo-stack { max-width: 420px; margin: 0 auto 1.5rem; }
  .about-photo-candid { position: static; width: 60%; margin: 1rem auto 0; right: auto; bottom: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission, .newsletter { padding: var(--space-section-y) 2rem; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .section { padding: 3.5rem 1.25rem; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero { padding: 3rem 1.25rem; }
  .press-ribbon, .mission, .newsletter, .footer, .speaking { padding-left: 1.25rem; padding-right: 1.25rem; }
  .stats-bar { gap: 1.75rem 2.25rem; padding: 0 1.25rem 3.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .notify-form, .newsletter-form { flex-direction: column; }
  .notify-form input, .newsletter-form input { border-right: 1px solid var(--border); border-bottom: none; }
  .notify-form button, .newsletter-form button { width: 100%; }
}
