/* ==========================================================================
   Foryoueats — corporate site
   Single stylesheet. Sections in order:
   tokens · reset · typography · layout · header · buttons · hero · sections
   · cards · split · values · stats · cta · form · footer · motion · print
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   Light palette lives on :root so it is always defined. Dark mode only
   overrides colour tokens — never layout — so the two stay in sync.
   -------------------------------------------------------------------------- */
:root {
  /* Palette matches the foryoueats.com product (its --color-primary et al). */
  --bg: #fbfaf8;
  --bg-tint: #f2f0eb;
  --surface: #ffffff;
  --surface-2: #f6f4f0;
  --text: #212024;
  --text-soft: #414549;
  --muted: #5f6b69;
  --border: #e4e2dc;
  --border-strong: #cfd1d0;

  --accent: #4a8077;
  --accent-hover: #386f66;
  --accent-soft: #e9f0ee;
  --accent-contrast: #ffffff;
  /* --accent is 4.4:1 on --bg: fine for fills, short of AA for small text.
     --accent-text is the same hue at 5.6:1 and carries anything set in type. */
  --accent-text: #386f66;

  --secondary: #c15f3c;
  --secondary-soft: #fbeee8;

  --success: #347343;
  --success-soft: #e9f2ea;

  --shadow-sm: 0 1px 2px rgb(33 32 36 / 0.06), 0 1px 3px rgb(33 32 36 / 0.04);
  --shadow-md: 0 4px 6px -1px rgb(33 32 36 / 0.07), 0 10px 24px -6px rgb(33 32 36 / 0.10);
  --shadow-lg: 0 12px 40px -12px rgb(33 32 36 / 0.20);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --container: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #212024;
    --bg-tint: #26252a;
    --surface: #2e2c30;
    --surface-2: #37353b;
    --text: #f4f3f1;
    --text-soft: #d6d4d0;
    --muted: #a5aba9;
    --border: #3d3b41;
    --border-strong: #4f4d54;

    /* The brand green is too dark to sit on a dark ground, so it lightens
       here while staying on the same hue. */
    --accent: #6faa9e;
    --accent-hover: #8cc2b6;
    --accent-soft: #21322e;
    --accent-contrast: #12201d;
    --accent-text: #8cc2b6;

    --secondary: #db8b67;
    --secondary-soft: #33241c;

    --success: #6fae7c;
    --success-soft: #1e2c21;

    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.45), 0 10px 24px -6px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 12px 40px -12px rgb(0 0 0 / 0.7);
  }
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

button, input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: var(--accent-contrast); }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 4.25rem); }
h2 { font-size: clamp(1.95rem, 1.4rem + 2.4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + 0.5vw, 1.4rem); letter-spacing: -0.01em; }
h4 { font-size: 1.0625rem; letter-spacing: 0; }

p { text-wrap: pretty; }

.lead {
  font-size: clamp(1.1rem, 1.02rem + 0.42vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

.muted { color: var(--muted); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 760px; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--bg-tint); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible { top: 1rem; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
/* <picture> is inline by default, which would misalign the mark in the flex row. */
.brand picture { display: flex; flex-shrink: 0; }

.brand__mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  /* The avatar carries its own dark ground, so it reads as an app icon —
     rounding matches that. Set to 0 for hard square corners. */
  border-radius: 25%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.brand:hover { color: var(--accent); }
.brand:hover .brand__mark { transform: rotate(-8deg); }

.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin-left: auto;
}

.nav__link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__link[aria-current="page"] { color: var(--accent-text); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 0.6rem; }

/* Toggle only appears once JS is confirmed (html.js) — without it the menu
   stays permanently expanded rather than becoming unreachable. */
.nav__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav__toggle-bars { position: relative; width: 18px; height: 2px; }
.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  display: block;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
}
.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after { top: 6px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 820px) {
  .js .nav__toggle { display: inline-flex; }

  .js .nav__menu {
    position: absolute;
    inset: 100% 0 auto 0;
    display: grid;
    gap: 0.25rem;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    /* Collapsed by default on small screens; JS flips [data-open]. */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  }
  .js .nav__menu[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }

  /* No JS: render the menu inline in the header instead of as an overlay. */
  html:not(.js) .nav__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }
  html:not(.js) .nav { flex-wrap: wrap; padding-block: 0.75rem; }

  .js .nav__links { flex-direction: column; align-items: stretch; gap: 0; margin-left: 0; }
  .js .nav__link { padding: 0.85rem 0.5rem; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .js .nav__actions { margin-top: 0.75rem; }
  .js .nav__actions .btn { width: 100%; justify-content: center; }

  html:not(.js) .nav__links { margin-left: 0; }
}

@media (min-width: 821px) {
  .nav__menu { display: contents; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s var(--ease), background-color 0.18s var(--ease),
              border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--accent); color: var(--accent-text); }

.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.9rem; }

.btn__arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s var(--ease);
}
.link-arrow:hover { border-bottom-color: currentColor; }
.link-arrow svg { transition: transform 0.2s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  /* Soft warm wash behind the headline. Decorative only. */
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(1000px, 130%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%,
              color-mix(in srgb, var(--accent) 15%, transparent) 0%,
              transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.hero__inner { max-width: 780px; }
.hero__title { margin-bottom: 1.35rem; }
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__lead { max-width: 60ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.25rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem 0.35rem 0.7rem;
  background: var(--accent-soft);
  color: var(--accent-text);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
a.pill:hover { background: color-mix(in srgb, var(--accent) 20%, transparent); }

/* Compact hero used on interior pages */
.page-hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner { max-width: 720px; }
.page-hero p { margin-top: 1.1rem; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.card p { color: var(--muted); font-size: 0.97rem; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.35rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
}
.card__icon--secondary { background: var(--secondary-soft); color: var(--secondary); }

/* --------------------------------------------------------------------------
   Split (text beside a visual panel)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__body > * + * { margin-top: 1.1rem; }
.split__body .btn, .split__body .link-arrow { margin-top: 1.75rem; }

.panel {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(155deg,
              color-mix(in srgb, var(--accent) 12%, var(--surface)) 0%,
              var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.panel__list { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.panel__list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.panel__list li:last-child { padding-bottom: 0; border-bottom: 0; }
.panel__list strong { display: block; font-weight: 600; }
.panel__list span { font-size: 0.93rem; color: var(--muted); }
.panel__check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Values
   -------------------------------------------------------------------------- */
.values { display: grid; gap: 0; counter-reset: value; }
.value {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--border);
}
.value:last-child { border-bottom: 1px solid var(--border); }
.value::before {
  counter-increment: value;
  content: "0" counter(value);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-text);
  padding-top: 0.15rem;
}
.value__body > p { margin-top: 0.6rem; color: var(--muted); max-width: 62ch; }

@media (max-width: 620px) {
  .value { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.stat { padding: 1.25rem 0; border-top: 2px solid var(--accent); }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.stat__label { margin-top: 0.4rem; font-size: 0.92rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(140deg, var(--accent) 0%, #2c564f 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -60%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgb(255 255 255 / 0.16) 0%, transparent 65%);
  pointer-events: none;
}
.cta h2 { color: #fff; position: relative; }
.cta p {
  position: relative;
  max-width: 52ch;
  margin: 1rem auto 0;
  color: rgb(255 255 255 / 0.9);
}
.cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}
.cta .btn--primary { background: #fff; color: #2c564f; }
.cta .btn--primary:hover { background: rgb(255 255 255 / 0.9); }
.cta .btn--ghost { color: #fff; border-color: rgb(255 255 255 / 0.45); }
.cta .btn--ghost:hover { background: rgb(255 255 255 / 0.12); border-color: #fff; color: #fff; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.email-card {
  padding: clamp(2rem, 5vw, 3.25rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

/* The address is the page's primary call to action, so it is set at display
   size and wraps rather than overflowing on narrow screens. */
.email-card__address {
  display: inline-block;
  margin-block: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 0.9rem + 2.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--accent-text);
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s var(--ease);
}
.email-card__address:hover { border-bottom-color: currentColor; }

.email-card p { max-width: 52ch; margin-inline: auto; color: var(--muted); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--bg-tint);
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

.footer__brand p {
  margin-top: 1rem;
  max-width: 34ch;
  font-size: 0.93rem;
  color: var(--muted);
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer__col a {
  font-size: 0.94rem;
  color: var(--text-soft);
  text-decoration: none;
}
.footer__col a:hover { color: var(--accent-text); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.87rem;
  color: var(--muted);
}
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--accent-text); }

/* --------------------------------------------------------------------------
   Motion — reveal on scroll (JS adds .is-visible; no JS = always visible)
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .cta, .nav__toggle, .hero::before { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .panel, .email-card { box-shadow: none; border: 1px solid #ccc; }
}
