/* ─────────────────────────────────────────────────────────────────
   Rosemary & Thyme — vintage cookbook tokens & components
   Adapted from docs/design_handoff_vintage_cookbook/prototype/tokens.css
   Hearthside palette only.
   ───────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Caveat:wght@400;500;600&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  /* Type stacks */
  --rt-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --rt-body:    'EB Garamond', Georgia, serif;
  --rt-hand:    'Caveat', 'Brush Script MT', cursive;
  --rt-ui:      'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --rt-mono:    ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px;

  /* Radii */
  --r-sm: 4px;  --r-md: 8px;  --r-lg: 14px;
  --r-xl: 22px; --r-pill: 999px;

  /* Hearthside palette */
  --paper:        #f3e9d2;
  --paper-deep:   #e9dcb8;
  --paper-card:   #fbf5e1;
  --paper-edge:   #d9c89c;
  --ink:          #2a1f14;
  --ink-soft:     #5b4a34;
  --ink-faint:    #8a755a;
  --hairline:     #c9b78a;
  --hairline-soft: rgba(75, 55, 30, 0.18);

  --herb:         #3a5a40;
  --herb-deep:    #243a2b;
  --herb-bg:      #d9e0c8;

  --copper:       #b35a2a;
  --copper-deep:  #8a3f1a;
  --copper-bg:    #f0d4be;

  --oxblood:      #7a2e1e;
  --gold:         #a78240;
  --gold-soft:    #c8a560;

  --signal-pos:   #3a5a40;
  --signal-neg:   #7a2e1e;
  --signal-warn:  #a06a1f;

  /* Elevation */
  --shadow-card:  0 1px 2px rgba(60, 40, 15, 0.08),
                  0 4px 16px rgba(60, 40, 15, 0.06);
  --shadow-pop:   0 14px 40px rgba(40, 25, 10, 0.18);
  --shadow-deep:  0 24px 60px rgba(40, 25, 10, 0.32);

  /* Type sizes */
  --t-display: 4.5rem;
  --t-h1:      2.75rem;
  --t-h2:      2rem;
  --t-h3:      1.5rem;
  --t-lede:    1.35rem;
  --t-body:    1.0625rem;
  --t-small:   0.9375rem;
  --t-caption: 0.8125rem;
  --t-eyebrow: 0.75rem;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--rt-body);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── Paper textures ─── */
.rt-paper {
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(255, 244, 210, 0.45), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(120, 90, 50, 0.10), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.22  0 0 0 0 0.16  0 0 0 0 0.08  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-blend-mode: multiply, normal, multiply;
  min-height: 100vh;
}

.rt-paper-card {
  background-color: var(--paper-card);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.22  0 0 0 0 0.16  0 0 0 0 0.08  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ─── Type primitives ─── */
.rt-display {
  font-family: var(--rt-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.rt-display-italic {
  font-family: var(--rt-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--ink);
}
.rt-body {
  font-family: var(--rt-body);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
}
.rt-hand {
  font-family: var(--rt-hand);
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.2;
}
.rt-ui {
  font-family: var(--rt-ui);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.rt-eyebrow {
  font-family: var(--rt-ui);
  font-weight: 600;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
.rt-smallcaps {
  font-family: var(--rt-display);
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rt-dropcap::first-letter {
  font-family: var(--rt-display);
  font-weight: 700;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  margin: 0.06em 0.08em -0.08em 0;
  color: var(--copper-deep);
}

/* ─── Rules ─── */
.rt-rule {
  border: 0;
  height: 1px;
  background: var(--hairline);
}
.rt-rule-double {
  border: 0;
  height: 4px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

/* ─── Buttons ─── */
.rt-btn {
  font-family: var(--rt-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: var(--r-md);
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 120ms ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.rt-btn:hover { background: var(--ink); color: var(--paper); }
.rt-btn:active { transform: translateY(1px); }
.rt-btn-filled {
  background: var(--ink);
  color: var(--paper);
}
.rt-btn-filled:hover {
  background: var(--copper-deep);
  color: var(--paper);
  border-color: var(--copper-deep);
}
.rt-btn-copper {
  background: var(--copper);
  color: var(--paper-card);
  border-color: var(--copper);
}
.rt-btn-copper:hover { background: var(--copper-deep); border-color: var(--copper-deep); }

/* ─── Chips ─── */
.rt-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 5px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
  font-family: var(--rt-body);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1;
}
.rt-chip-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.rt-chip-herb {
  background: var(--herb-bg);
  border-color: var(--herb);
  color: var(--herb-deep);
}

/* ─── Cards ─── */
.rt-card {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: var(--s-6);
}
.rt-card-bordered {
  background: var(--paper-card);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: var(--s-6);
  position: relative;
}
.rt-card-bordered::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--ink);
  pointer-events: none;
}

/* ─── Margin note ─── */
.rt-margin-note {
  font-family: var(--rt-hand);
  color: var(--copper-deep);
  font-size: 1.4rem;
  line-height: 1.15;
}

/* ─── Site chrome: top bar ─── */
.site-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  z-index: 10;
  background: transparent;
}
.site-topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.site-topbar__brand .rt-smallcaps {
  font-size: 0.9rem;
  color: var(--ink);
}
.site-topbar__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-topbar__nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 1rem;
  font-style: italic;
  font-family: var(--rt-body);
}
.site-topbar__nav a:hover { color: var(--copper-deep); }
.site-topbar__cta {
  padding: 8px 16px !important;
  font-size: 0.8rem !important;
}

/* ─── Site chrome: footer ─── */
.site-footer {
  padding: 56px 56px 40px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.site-footer__brand-tag {
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.95rem;
  max-width: 320px;
  margin: 0;
}
.site-footer__col-head {
  margin-bottom: 14px;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--rt-body);
}
.site-footer__col a:hover { color: var(--copper-deep); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 36px auto 0;
  padding-top: 18px;
}
.site-footer__copy,
.site-footer__lang {
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-family: var(--rt-body);
}
.site-footer__copy { font-style: italic; }
.site-footer__lang a {
  color: var(--ink-faint);
  text-decoration: none;
}
.site-footer__lang a:hover { color: var(--copper-deep); }

/* ─── Engraved frame (double border + 4 corner ornaments) ─── */
.engraved-frame {
  position: relative;
  border: 1px solid var(--ink);
  padding: var(--s-6);
  background: var(--paper-card);
}
.engraved-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--ink);
  pointer-events: none;
}
.engraved-frame__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--ink);
  pointer-events: none;
}
.engraved-frame__corner--tl { top: 4px;    left: 4px;  }
.engraved-frame__corner--tr { top: 4px;    right: 4px; transform: rotate(90deg); }
.engraved-frame__corner--br { bottom: 4px; right: 4px; transform: rotate(180deg); }
.engraved-frame__corner--bl { bottom: 4px; left: 4px;  transform: rotate(270deg); }

/* ─── Hero ─── */
.hero {
  padding: 80px 56px 64px;
  text-align: center;
  position: relative;
}
.hero__eyebrow-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.hero__eyebrow-rule {
  flex: 0 0 80px;
  height: 1px;
  background: var(--ink-faint);
}
.hero__title {
  font-family: var(--rt-display);
  font-weight: 600;
  font-size: 6.5rem;
  line-height: 0.95;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.hero__title-amp {
  font-family: var(--rt-display);
  font-style: italic;
  font-weight: 500;
  color: var(--copper-deep);
  margin: 0 0.2em;
}
.hero__divider {
  display: flex;
  justify-content: center;
  margin: 8px 0 32px;
}
.hero__tagline {
  font-family: var(--rt-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 18px;
}
.hero__lede {
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero__plate {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}
.hero__plate-inner {
  position: absolute;
  inset: 24px;
  background: var(--paper-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(80, 50, 20, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__plate-inner img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
}
.hero__note {
  position: absolute;
  right: 96px;
  top: 200px;
  transform: rotate(-7deg);
  text-align: left;
  max-width: 220px;
}
.hero__note-text {
  font-size: 1.6rem;
  display: block;
}
.hero__note-attr {
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin-left: 12px;
  font-family: var(--rt-body);
}

/* ─── Section base ─── */
.site-section {
  padding: 96px 56px;
  border-top: 1px solid var(--hairline);
}
.site-section--no-top { border-top: 0; }

/* ─── Features (Six Chapters) ─── */
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header h2 {
  font-size: 3.5rem;
  margin: 0 0 14px;
}
.features-header .rt-display-italic {
  font-size: 3.5rem;
  color: var(--copper-deep);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  max-width: 1280px;
  margin: 0 auto;
}
.features-grid article {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-card);
  position: relative;
}
.features-grid__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.features-grid__icon { color: var(--copper-deep); }
.features-grid article h3 {
  font-family: var(--rt-display);
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--ink);
}
.features-grid__tag {
  font-family: var(--rt-display);
  font-style: italic;
  font-weight: 500;
  color: var(--copper-deep);
  margin: 0 0 16px;
  font-size: 1rem;
}
.features-grid article p.rt-body {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1rem;
}

/* ─── Privacy band ─── */
.privacy {
  padding: 96px 56px;
  border-top: 1px solid var(--hairline);
  background: var(--paper-deep);
}
.privacy__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.privacy__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.privacy h2 {
  font-size: 3.25rem;
  margin: 0 0 18px;
  line-height: 1.0;
}
.privacy h2 .rt-display-italic {
  display: block;
  color: var(--copper-deep);
  font-size: 3.25rem;
}
.privacy__body {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 600px;
}
.privacy__stats {
  display: flex;
  gap: 36px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.privacy__stat .rt-eyebrow {
  color: var(--copper-deep);
  margin-bottom: 6px;
  display: block;
}
.privacy__stat-value {
  font-style: italic;
  color: var(--ink);
  font-family: var(--rt-body);
}

/* ─── Provenance ─── */
.provenance__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.provenance h2 {
  font-size: 2.5rem;
  margin: 0 0 32px;
}
.provenance__body {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-align: left;
  max-width: 760px;
  margin: 0 auto 28px;
}
.provenance__divider {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.provenance__thanks {
  font-family: var(--rt-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-faint);
  margin: 24px 0 28px;
}
.site-callout {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--paper-card);
  border: 1px solid var(--ink);
  border-radius: 4px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  max-width: 540px;
  text-align: left;
}
.site-callout__stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px dashed var(--copper-deep);
  color: var(--copper-deep);
  flex: 0 0 auto;
}
.site-callout__body { flex: 1; }
.site-callout__eyebrow {
  display: block;
  margin-bottom: 2px;
  font-size: 0.62rem;
}
.site-callout__title {
  font-family: var(--rt-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}
.site-callout__title em {
  color: var(--ink-faint);
  font-family: var(--rt-display);
  font-style: italic;
  font-weight: 500;
}
.site-callout__sub {
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-family: var(--rt-body);
}

/* ─── Download band ─── */
.download {
  padding: 88px 56px;
  border-top: 1px solid var(--hairline);
  background: var(--herb-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.download__leaf-tr {
  position: absolute;
  top: -40px;
  right: -40px;
  opacity: 0.08;
  transform: rotate(20deg);
  pointer-events: none;
}
.download__leaf-bl {
  position: absolute;
  bottom: -60px;
  left: -30px;
  opacity: 0.06;
  transform: rotate(-30deg);
  pointer-events: none;
}
.download__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.download__eyebrow { color: var(--gold-soft); margin-bottom: 18px; display: block; }
.download h2 {
  font-family: var(--rt-display);
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 1.0;
  margin: 0 0 16px;
  color: var(--paper);
}
.download__tag {
  font-family: var(--rt-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--paper-edge);
  margin: 0 0 36px;
  max-width: 460px;
  line-height: 1.4;
}
.download__cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.download__appstore-link {
  display: inline-block;
  text-decoration: none;
}
.download__appstore-link img {
  height: 56px;
  width: auto;
  display: block;
}
.download__scan-link {
  color: var(--paper-edge);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  font-style: italic;
  font-family: var(--rt-body);
}
.download__qr-plate {
  background: var(--paper);
  padding: 22px;
  border-radius: 4px;
  width: 240px;
  justify-self: end;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--paper-edge);
}
.download__qr-plate img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.download__qr-label {
  text-align: center;
  margin-top: 12px;
  color: var(--ink-soft);
  display: block;
}

/* ─── Tip jar ─── */
.tipjar__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.tipjar h2 {
  font-size: 3rem;
  margin: 0 0 14px;
  line-height: 1.0;
}
.tipjar h2 .rt-display-italic {
  display: block;
  color: var(--copper-deep);
  font-size: 3rem;
  margin-top: 4px;
}
.tipjar__body {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 36px;
  font-style: italic;
}
.tipjar__plate {
  max-width: 520px;
  margin: 0 auto;
}
.tipjar__plate-content {
  position: relative;
  z-index: 1;
}
.tipjar__illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.tipjar__subtitle {
  font-size: 0.78rem;
  color: var(--copper-deep);
  letter-spacing: 0.22em;
  margin-bottom: 6px;
  display: block;
}
.tipjar__display {
  font-family: var(--rt-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.4;
}
.tipjar__stripe {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.tipjar__stripe stripe-buy-button {
  display: inline-block;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  background: var(--paper);
}
.tipjar__thanks {
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin: 12px 0 0;
}
.tipjar__ps {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.tipjar__ps .rt-margin-note {
  transform: rotate(-1deg);
  font-size: 1.3rem;
  color: var(--ink-soft);
  max-width: 420px;
  text-align: center;
}

/* ─── Floret divider helper ─── */
.floret-divider {
  display: block;
  color: var(--ink-faint);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .site-topbar { padding: 16px 24px; flex-wrap: wrap; gap: 12px; }
  .site-topbar__nav { gap: 18px; flex-wrap: wrap; }
  .hero { padding: 48px 24px 40px; }
  .hero__title { font-size: 3.5rem; }
  .hero__note { display: none; }
  .hero__plate { width: 260px; height: 260px; }
  .site-section { padding: 64px 24px; }
  .privacy { padding: 64px 24px; }
  .privacy__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .privacy__seal { align-items: center; }
  .privacy h2, .privacy h2 .rt-display-italic { font-size: 2.25rem; }
  .privacy__stats { justify-content: center; }
  .features-header h2, .features-header .rt-display-italic { font-size: 2.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .download { padding: 64px 24px; }
  .download__inner { grid-template-columns: 1fr; gap: 32px; }
  .download h2 { font-size: 2.5rem; }
  .download__qr-plate { justify-self: center; }
  .tipjar h2, .tipjar h2 .rt-display-italic { font-size: 2.25rem; }
  .site-footer { padding: 40px 24px 28px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero__title { font-size: 2.75rem; }
  .hero__tagline { font-size: 1.35rem; }
  .hero__plate { width: 220px; height: 220px; }
  .site-footer__grid { grid-template-columns: 1fr; }
}
