/*
 * styles.css — Carl's Cones and Cat Supplies
 * "Under One Roof": two docked worlds (cream cone-side / teal cat-side) bound
 * by a recurring coral-and-cream awning beam. Fredoka display + Mulish body.
 * Design tokens from scaffold retained; layout/components authored by Site Build.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #1B5459;        /* Parlor Teal */
  --color-primary-dark: #123E42;   /* Deep Spruce Teal */
  --color-primary-light: #DDE8E5;  /* Sea-Glass Tint */
  --color-secondary: #C07830;      /* Burnt Honey */
  --color-accent: #D4826A;         /* Awning Coral */
  --color-bg: #F0D8C0;             /* Warm Cream Paper */
  --color-surface: #FBF4EA;        /* Signboard Cream */
  --color-text: #17302E;           /* Near-Black Spruce */
  --color-text-secondary: #6B5545; /* Wood Taupe */
  --color-text-on-primary: #FBF4EA;/* Warm White */
  --color-border: #E0C4A6;         /* Warm Sand */

  --font-primary: 'Fredoka', sans-serif;
  --font-secondary: 'Mulish', sans-serif;
  --font-size-base: 16px;

  --spacing-base: 8px;
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1200px;
  --maxw-wide: 1400px;

  --nav-h: 76px;

  --motion-duration: 280ms;
  --motion-duration-slow: 480ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 44px -22px color-mix(in srgb, var(--color-text) 55%, transparent);
  --shadow-plate: 0 24px 60px -26px color-mix(in srgb, var(--color-text) 60%, transparent);
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base, 16px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--color-bg, #ffffff);
  color: var(--color-text, #1a1a1a);
  line-height: 1.65;
  padding-bottom: 42px; /* required */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--color-accent, inherit); }

/* Focus states — WCAG AA required */
:focus-visible {
  outline: 3px solid var(--color-accent, #005fcc);
  outline-offset: 2px;
}

/* Skip navigation link — WCAG 2.4.1 (managed by fix_ada_safe.py) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface, #ffffff);
  color: var(--color-accent, #005fcc);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-accent, #005fcc);
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, .display {
  font-family: var(--font-primary);
  color: var(--color-primary);
  line-height: 1.05;
  font-weight: 600;
}
.display {
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
h1 {
  font-weight: 600;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
}
h3 { font-weight: 500; font-size: 1.375rem; line-height: 1.15; }
h4 { font-weight: 500; font-size: 1.125rem; line-height: 1.2; letter-spacing: 0.01em; }

p { max-width: 64ch; }
.lead {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--color-text);
}
.small { font-size: 0.875rem; line-height: 1.5; }
.eyebrow-cap {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--maxw-wide); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--color-bg); color: var(--color-text); }
.section--surface { background: var(--color-surface); color: var(--color-text); }
.section--teal { background: var(--color-primary); color: var(--color-text-on-primary); }
.section--teal h1, .section--teal h2, .section--teal h3, .section--teal h4 { color: var(--color-text-on-primary); }
.section--honey { background: var(--color-secondary); color: var(--color-text); }
.section--honey h1, .section--honey h2, .section--honey h3, .section--honey h4 { color: var(--color-text); }
.stack > * + * { margin-top: 1.1rem; }
.measure { max-width: 64ch; }
.center { text-align: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              transform var(--motion-duration) var(--motion-ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-primary); color: var(--color-text-on-primary); }
.btn--primary:hover { background: var(--color-primary-dark); color: var(--color-text-on-primary); }
.btn--accent { background: var(--color-accent); color: var(--color-text); }
.btn--accent:hover { background: #c56f56; color: var(--color-text); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-secondary); }
.btn--outline:hover { background: var(--color-secondary); color: var(--color-text); }
.section--teal .btn--outline { color: var(--color-text-on-primary); border-color: var(--color-text-on-primary); }
.section--teal .btn--outline:hover { background: var(--color-text-on-primary); color: var(--color-primary); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);   /* legible teal text */
  text-decoration: none;
}
.arrow-link i { color: var(--color-accent); transition: transform var(--motion-duration) var(--motion-ease); }
.arrow-link:hover { text-decoration: underline; text-decoration-color: var(--color-accent); }
.arrow-link:hover i { transform: translateX(4px); }
.section--teal .arrow-link { color: var(--color-text-on-primary); }

/* ============================================================
   Awning beam — the recurring structural datum
   ============================================================ */
.beam {
  position: relative;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.beam--honey { background: var(--color-secondary); }
.beam__label {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--color-text);       /* near-black on coral = 4.8:1 */
}
/* near-black on honey is ~4:1 — hold honey labels at large-bold so they clear AA */
.beam--honey .beam__label { font-weight: 700; font-size: clamp(1.2rem, 1.9vw, 1.45rem); }
/* subtle awning stripe reading, kept light so the label stays legible */
.beam::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    color-mix(in srgb, #ffffff 16%, transparent) 0 22px,
    transparent 22px 44px);
  pointer-events: none;
}
/* scalloped bottom edge — the awning line */
.beam::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -11px;
  height: 12px;
  background: radial-gradient(circle at 12px 0, var(--color-accent) 11px, transparent 12px) repeat-x;
  background-size: 24px 12px;
}
.beam--honey::after {
  background: radial-gradient(circle at 12px 0, var(--color-secondary) 11px, transparent 12px) repeat-x;
  background-size: 24px 12px;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  overflow: visible;
}
/* coral awning-scallop reading the nav bar as the shop's awning line */
.nav::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 6px;
  background: radial-gradient(circle at 7px 0, var(--color-accent) 6px, transparent 7px) repeat-x;
  background-size: 14px 6px;
}
.nav__brand { display: inline-flex; align-items: center; line-height: 0; }
.nav__brand img { height: 60px; width: auto; max-width: 220px; display: block; }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1.9rem;
  line-height: 1;
  padding: 0.25rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  list-style: none;
}
.nav__links a {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;           /* 16px — above the 15px floor */
  color: var(--color-primary);
  text-decoration: none;
  padding-block: 0.25rem;
  position: relative;
}
/* text stays teal for legibility; the coral is carried by the underline accent */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.nav__links a:hover { color: var(--color-primary-dark); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after,
.nav__links .nav__cta::after { transform: scaleX(1); }

/* ============================================================
   Footer — deep teal, colossal caps index, signboard logo plate
   ============================================================ */
.footer {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}
.footer a { color: var(--color-text-on-primary); }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.footer__signplate {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: inline-block;
  box-shadow: var(--shadow-soft);
}
.footer__signplate img { height: 52px; width: auto; max-width: 160px; display: block; }
.footer__contact { font-family: var(--font-secondary); line-height: 1.7; }
.footer__contact h3 { color: var(--color-text-on-primary); margin-bottom: 0.6rem; font-size: 1.125rem; }
.footer__contact a { text-decoration: none; }
.footer__contact a:hover { color: var(--color-accent); }
.footer__row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.5rem; }
.footer__row i { color: var(--color-accent); font-size: 1.15rem; margin-top: 0.15rem; flex: none; }
.footer__index { display: flex; flex-direction: column; gap: 0.1rem; }
.footer__index h3 { color: var(--color-text-on-primary); font-size: 1.125rem; margin-bottom: 0.4rem; }
.footer__index a {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  line-height: 1.02;
  text-decoration: none;
  transition: color var(--motion-duration) var(--motion-ease);
}
.footer__index a:hover { color: var(--color-accent); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--color-text-on-primary) 40%, transparent);
  font-size: 1.3rem;
  transition: color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.footer__social a:hover { color: var(--color-accent); border-color: var(--color-accent); }
.footer__base {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--color-text-on-primary) 22%, transparent);
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--color-text-on-primary) 82%, transparent);
}

/* ============================================================
   HOME — Hero: twin overlapping photo plates under a shared beam
   ============================================================ */
.hero { position: relative; background: var(--color-bg); padding-bottom: clamp(2rem, 5vw, 4rem); }
.hero__beam {
  position: relative;
  background: var(--color-accent);
  padding: 0.85rem var(--gutter);
  text-align: center;
  z-index: 3;
}
.hero__beam::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    var(--color-surface) 0 34px,
    transparent 34px 68px);
  opacity: 0.28;
  pointer-events: none;
}
.hero__brandline {
  position: relative;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  line-height: 1;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.hero__stage {
  position: relative;
  max-width: var(--maxw-wide);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter) 0;
}
.hero__plates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.hero__plate {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-plate);
  border: 6px solid var(--color-surface);
}
.hero__plate img { width: 100%; height: clamp(300px, 46vh, 460px); object-fit: cover; }
.hero__plate--cone { grid-column: 1; grid-row: 1; margin-top: clamp(2.5rem, 6vw, 5rem); margin-right: -8%; z-index: 1; }
.hero__plate--cone img { object-position: center 35%; }
.hero__plate--cat { grid-column: 2; grid-row: 1; margin-left: -8%; z-index: 1; }
.hero__plate--cat img { object-position: center 40%; }
.hero__seal {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: var(--color-surface);
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: var(--shadow-plate);
  width: clamp(96px, 15vw, 150px);
  height: clamp(96px, 15vw, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__seal img { width: 100%; height: auto; }
.hero__ctas {
  position: relative;
  z-index: 2;
  max-width: var(--maxw-wide);
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-items: center;
}
.hero__ctas .btn { width: fit-content; }

/* hero entrance — only under JS; content fully visible without it */
html.js .hero__beam { animation: beam-draw var(--motion-duration-slow) var(--motion-ease) both; }
html.js .hero__plate--cone { animation: plate-dock var(--motion-duration-slow) var(--motion-ease) 0.15s both; }
html.js .hero__plate--cat  { animation: plate-dock var(--motion-duration-slow) var(--motion-ease) 0.22s both; }
html.js .hero__seal { animation: seal-settle var(--motion-duration) var(--motion-ease) 0.42s both; }
@keyframes beam-draw { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes plate-dock { from { opacity: 0; transform: translateY(42px); } to { opacity: 1; transform: none; } }
@keyframes seal-settle { from { opacity: 0; transform: translate(-50%, -38%) scale(0.82); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  html.js .hero__beam, html.js .hero__plate--cone, html.js .hero__plate--cat, html.js .hero__seal { animation: none; }
}

/* ============================================================
   Statement band + doodles
   ============================================================ */
.statement { text-align: center; }
.statement p { margin-inline: auto; }
.statement__lead { font-family: var(--font-secondary); font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; }
.statement__warm { font-family: var(--font-primary); font-weight: 500; color: var(--color-primary); }
.doodle-arrow { display: block; margin: 1.5rem auto 0; width: 54px; height: auto; color: var(--color-accent); }
.paw-trail { color: var(--color-accent); width: clamp(140px, 40vw, 260px); height: auto; }

/* Crooked stamp */
.stamp {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--color-text);
  background: var(--color-accent);
  border: 2px solid var(--color-text);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  transform: rotate(-7deg);
  box-shadow: 0 4px 0 color-mix(in srgb, var(--color-text) 25%, transparent);
}

/* ============================================================
   Leader-dot ledger (flavor board / values)
   ============================================================ */
.ledger { list-style: none; }
.ledger__group + .ledger__group { margin-top: 1.75rem; }
.ledger__grouphead {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.ledger__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
}
.ledger__name { font-family: var(--font-primary); font-weight: 500; font-size: 1.25rem; color: var(--color-primary); }
.ledger__leader { flex: 1 1 auto; min-width: 1rem; align-self: center; border-bottom: 2px dotted var(--color-secondary); }
.ledger__tag {
  font-family: var(--font-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  color: var(--color-text);
  background: var(--color-accent);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
/* seasonal pills: teal fill + warm-white clears AA (near-black on honey would not) */
.ledger__tag--honey { background: var(--color-primary); color: var(--color-text-on-primary); }
.ledger__tag i { font-size: 0.85rem; }
.ledger__row:hover .ledger__leader { border-bottom-width: 3px; }

.ledger--two { columns: 2; column-gap: clamp(2rem, 5vw, 4rem); }
.ledger--two .ledger__group { break-inside: avoid; -webkit-column-break-inside: avoid; }

/* ============================================================
   HOME — Today's Board teaser
   ============================================================ */
.board-teaser__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2rem;
}
.board-teaser__inset {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
}
.board-teaser__inset img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }

/* ============================================================
   HOME — Dee's Cat Shop teaser (teal world)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--55 { grid-template-columns: 1.2fr 1fr; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-plate); }
.split__media img { width: 100%; height: clamp(300px, 44vh, 460px); object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.split__media:hover img { transform: scale(1.05); }
.cat-teaser__stamp { position: absolute; top: 1rem; right: 1rem; z-index: 2; }

/* ============================================================
   Scrapbook gallery
   ============================================================ */
.scrapbook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
}
.scrapbook figure {
  position: relative;
  background: var(--color-surface);
  padding: 10px 10px 34px;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--motion-duration) var(--motion-ease);
}
.scrapbook figure:nth-child(3n+1) { transform: rotate(-3deg); }
.scrapbook figure:nth-child(3n+2) { transform: rotate(2deg); }
.scrapbook figure:nth-child(3n+3) { transform: rotate(-1.5deg); }
.scrapbook figure:hover { transform: rotate(0deg) scale(1.03); z-index: 2; }
.scrapbook figure::before {
  content: "";
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--color-text) 45%, transparent);
  z-index: 3;
}
.scrapbook .lb-figure { overflow: hidden; border-radius: 2px; }
.scrapbook img { width: 100%; height: 220px; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.scrapbook figure:hover img { transform: scale(1.06); }
.scrapbook figcaption {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

/* ============================================================
   Marquee (always-on flavor ticker)
   ============================================================ */
.marquee {
  background: var(--color-secondary);
  overflow: hidden;
  padding-block: 0.9rem;
  border-block: 3px solid color-mix(in srgb, var(--color-text) 12%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 34s linear infinite;
}
.marquee__item {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem); /* >=24px so near-black clears AA on honey (large-text 3:1) */
  color: var(--color-text);
}
.marquee__paw { width: 1.6rem; height: 1.6rem; color: var(--color-accent); flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   HOME — People teaser + cast list
   ============================================================ */
.castlist { list-style: none; margin: 0.5rem 0 0; }
.castlist li {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   Visit CTA band (colossal hours dateline)
   ============================================================ */
.cta-band { text-align: center; }
.dateline {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--color-text-on-primary);
}
.dateline .sep { color: var(--color-accent); }
.cta-band__addr { margin: 1rem auto 1.75rem; font-family: var(--font-secondary); }

/* ============================================================
   Page hero band (interior pages)
   ============================================================ */
.pagehero { position: relative; }
.pagehero__media { position: relative; }
.pagehero__media img { width: 100%; height: clamp(320px, 60vh, 560px); object-fit: cover; }
.pagehero__media--tall img { height: clamp(360px, 66vh, 620px); }
.pagehero__title {
  position: relative;
  z-index: 2;
  background: var(--color-accent);
  padding: 0.9rem var(--gutter);
}
.pagehero__title--honey { background: var(--color-secondary); }
.pagehero__title h1 { color: var(--color-text); margin: 0; }
.pagehero__beamlabel {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}
/* honey title band: keep the label large-bold so near-black clears AA on honey */
.pagehero__title--honey .pagehero__beamlabel { font-size: clamp(1.2rem, 1.9vw, 1.4rem); }

/* ============================================================
   FLAVORS — seasonal banner
   ============================================================ */
.seasonal {
  background: var(--color-accent);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--color-surface);
}
.seasonal__body { padding: clamp(1.5rem, 4vw, 2.75rem); }
.seasonal__body h2 { color: var(--color-text); }
.seasonal__kicker {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--color-text);
}
.seasonal__media { align-self: stretch; }
.seasonal__media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }

/* ============================================================
   FLAVORS — scoop portrait gallery
   ============================================================ */
.scoopgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 2.5rem;
}
.scoopgrid figure {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
}
.scoopgrid .lb-figure { overflow: hidden; border-radius: var(--radius-sm) var(--radius-sm) 0 0; box-shadow: inset 0 0 0 0 var(--color-accent); }
.scoopgrid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.scoopgrid figure:hover img { transform: scale(1.06); }
.scoopgrid figure:hover .lb-figure { box-shadow: inset 0 0 0 4px var(--color-accent); }
.scoopgrid figcaption {
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--color-primary);
  padding: 0.6rem 0.4rem 0.8rem;
}

/* ============================================================
   FLAVORS — craft diptych
   ============================================================ */
.diptych { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); margin-top: 2rem; }
.diptych figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.diptych img { width: 100%; height: clamp(260px, 40vw, 420px); object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.diptych figure:hover img { transform: scale(1.05); }
.craft-note { text-align: center; margin: 1.5rem auto 0; max-width: 52ch; }

/* ============================================================
   CAT SUPPLIES — category tile wall
   ============================================================ */
.wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.85rem, 2vw, 1.4rem);
  margin-top: 2rem;
}
.wall__tile {
  grid-column: span 2;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  color: var(--color-text);
  text-decoration: none;
}
.wall__tile--wide { grid-column: span 3; }
.wall__tile--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.wall__tile--photo::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; /* let clicks reach the img for the lightbox */
  background: linear-gradient(to top, color-mix(in srgb, var(--color-text) 82%, transparent) 0%, transparent 55%);
}
.wall__tile--photo:hover img { transform: scale(1.06); }
.wall__tile--photo .wall__label { pointer-events: none; }
.wall__tile--flat { background: var(--tile-fill, var(--color-secondary)); }
.wall__tile--flat .wall__label, .wall__tile--flat .wall__label .h { color: var(--color-text); }
.wall__silhouette {
  position: absolute;
  right: -6%;
  bottom: -4%;
  width: 62%;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}
.wall__label {
  position: relative;
  z-index: 2;
  padding: 1rem 1.15rem;
}
.wall__label .h { font-family: var(--font-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.05rem; display: block; }
.wall__tile--photo .wall__label { color: var(--color-surface); }
.wall__tile--photo .wall__label .h { color: var(--color-surface); }
.wall__label .d { font-family: var(--font-secondary); font-size: 0.85rem; font-weight: 500; display: block; margin-top: 0.15rem; }

/* ============================================================
   CAT SUPPLIES — Dee's Staff Picks
   ============================================================ */
.picks-island {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
  position: relative;
  color: var(--color-text);              /* reset from teal-section warm-white */
}
.picks-island h2 { color: var(--color-primary); }
.picks-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); margin-top: 2rem; }
.pick-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: transform var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pick-card__need { font-family: var(--font-primary); font-weight: 500; font-size: 1.1rem; color: var(--color-primary); }
.pick-card__brand { font-family: var(--font-secondary); font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem; margin-top: 0.75rem; }
.pick-card i { color: var(--color-accent); font-size: 1.5rem; }

/* ============================================================
   Brands strip (typographic pills)
   ============================================================ */
.pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.pill {
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-secondary);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  transition: border-color var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease);
}
.pill:hover { border-color: var(--color-accent); } /* border warms; text stays legible teal */

/* ============================================================
   Forms
   ============================================================ */
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
}
.field .opt { color: var(--color-text-secondary); font-weight: 500; }
.field input, .field textarea {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 40%, transparent);
}
.contact-form button[type="submit"] { justify-self: start; }

/* ============================================================
   Visit — colossal Cat's Hours + accordion + location
   ============================================================ */
.hours-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); margin-top: 1.75rem; max-width: 720px; }
.hours-block {
  background: color-mix(in srgb, var(--color-text-on-primary) 8%, transparent);
  border: 2px solid color-mix(in srgb, var(--color-text-on-primary) 24%, transparent);
  border-top: 4px solid var(--color-accent); /* the coral signal */
  border-radius: var(--radius);
  padding: 1.5rem;
}
.hours-block__label {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-on-primary); /* legible on teal; coral carried by border + icon */
  font-size: 0.9rem;
}
.hours-block__label i { color: var(--color-accent); }
.hours-block__time {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-on-primary);
  line-height: 1.1;
  margin-top: 0.35rem;
}
.accordion { margin-top: 1.75rem; max-width: 720px; }
.accordion__item { border-top: 1px solid color-mix(in srgb, var(--color-text-on-primary) 24%, transparent); }
.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--color-text-on-primary);
  text-align: left;
}
.accordion__trigger i { color: var(--color-accent); transition: transform var(--motion-duration) var(--motion-ease); font-size: 1.3rem; }
.accordion__trigger[aria-expanded="true"] i { transform: rotate(45deg); }
.accordion__panel { display: none; padding-bottom: 1.1rem; color: var(--color-text-on-primary); font-family: var(--font-secondary); }
.accordion__panel.is-open { display: block; }

.location { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.location__facts .footer__row i { color: var(--color-accent); }
.location__facts .factrow { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 1rem; }
.location__facts .factrow i { color: var(--color-accent); font-size: 1.4rem; margin-top: 0.1rem; flex: none; }
.location__facts .tel-big {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  color: var(--color-primary);   /* legible teal; coral phone icon carries the accent */
  text-decoration: none;
}
.location__facts .tel-big:hover { text-decoration: underline; text-decoration-color: var(--color-accent); }
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--color-surface);
}
.location__map iframe { display: block; width: 100%; height: clamp(280px, 40vw, 420px); border: 0; }

/* ============================================================
   Two-column broadsheet story (About)
   ============================================================ */
.broadsheet { columns: 2; column-gap: clamp(2rem, 5vw, 3.5rem); column-rule: 1px solid var(--color-border); }
.broadsheet p { max-width: none; margin-bottom: 1rem; break-inside: avoid; }
.broadsheet__name { font-family: var(--font-primary); font-weight: 500; color: var(--color-primary); display: block; margin-bottom: 0.25rem; font-size: 1.2rem; }
.story-inset { margin: 1.5rem 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); break-inside: avoid; }
.story-inset img { width: 100%; height: 260px; object-fit: cover; }
.story-merge { text-align: center; font-family: var(--font-primary); font-weight: 500; font-size: 1.25rem; color: var(--color-primary); margin-top: 1.5rem; }

/* ============================================================
   Reveal-gating — visible without JS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--motion-ease), transform 0.6s var(--motion-ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.25rem; padding: var(--section-y) var(--gutter); }
.notfound .display { font-size: clamp(3rem, 12vw, 7rem); color: var(--color-accent); }

/* ============================================================
   Gallery lightbox — scaffolded shared mechanism (brand-restyled chrome)
   ============================================================ */
.lightbox-zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox.is-open { display: flex; animation: lightbox-in var(--motion-duration) var(--motion-ease); }
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lightbox.is-open { animation: none; } }
.lightbox__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-primary-dark) 90%, transparent); }
.lightbox__frame {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 6px solid var(--color-surface);
  border-radius: 4px;
  box-shadow: 0 24px 80px -16px color-mix(in srgb, var(--color-text) 70%, transparent);
}
.lightbox__caption { font-family: var(--font-secondary); font-size: 0.9rem; line-height: 1.5; color: var(--color-bg); text-align: center; max-width: 60ch; }
.lightbox__counter {
  position: absolute;
  bottom: 1.1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-bg);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  z-index: 2;
  width: 2.8rem; height: 2.8rem;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: 50%;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--color-text) 30%, transparent);
  font-size: 1.2rem; line-height: 1;
}
.lightbox__close:hover, .lightbox__close:focus-visible,
.lightbox__prev:hover, .lightbox__prev:focus-visible,
.lightbox__next:hover, .lightbox__next:focus-visible { color: var(--color-accent); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev  { left: 1rem;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__caption[hidden], .lightbox__counter[hidden], .lightbox__prev[hidden], .lightbox__next[hidden] { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__index { grid-column: 1 / -1; }
  .scoopgrid { grid-template-columns: repeat(3, 1fr); }
  .picks-grid { grid-template-columns: 1fr; }
  .wall__tile, .wall__tile--wide { grid-column: span 3; }
}

@media (max-width: 768px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-surface);
    padding: 0.5rem var(--gutter) 1.25rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--color-border); font-size: 1.05rem; }
  .nav__links a[aria-current="page"]::after { display: none; }

  /* Hero flips to stacked plates still pinched by a horizontal beam across the seam */
  .hero__plates { grid-template-columns: 1fr; }
  .hero__plate--cone, .hero__plate--cat { grid-column: 1; margin: 0; }
  .hero__plate--cone { grid-row: 1; }
  .hero__plate--cat { grid-row: 2; margin-top: -14%; }
  .hero__plate img { height: clamp(220px, 40vh, 320px); }
  .hero__seal { top: 50%; width: clamp(84px, 26vw, 120px); height: clamp(84px, 26vw, 120px); }
  .hero__ctas { grid-template-columns: 1fr; }

  .board-teaser__body { grid-template-columns: 1fr; }
  .split, .split--55, .form-split, .location, .seasonal, .diptych { grid-template-columns: 1fr; }
  .seasonal { display: block; }
  .seasonal__media img { min-height: 200px; }
  .scrapbook { grid-template-columns: repeat(2, 1fr); }
  .scrapbook figure:nth-child(3n+1),
  .scrapbook figure:nth-child(3n+2),
  .scrapbook figure:nth-child(3n+3) { transform: rotate(-1.5deg); }
  .scoopgrid { grid-template-columns: repeat(2, 1fr); }
  .broadsheet { columns: 1; column-rule: none; }
  .ledger--two { columns: 1; }
  .hours-blocks { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .scrapbook, .scoopgrid { grid-template-columns: 1fr; }
  .wall__tile, .wall__tile--wide { grid-column: 1 / -1; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* hebrew */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWs89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWg89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWu89XgHPyh.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* hebrew */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWs89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWg89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWu89XgHPyh.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* hebrew */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWs89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWg89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWu89XgHPyh.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* hebrew */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWs89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWg89XgHPyhRMw.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWu89XgHPyh.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0gotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk2wotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0AotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0QotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk3wotYKNnBQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0gotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk2wotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0AotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0QotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk3wotYKNnBQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0gotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk2wotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0AotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0QotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk3wotYKNnBQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0gotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk2wotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0AotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk0QotYKNnBcif.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/1Ptvg83HX_SGhgqk3wotYKNnBQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
