/*
 * styles.css — Heaven Sent Cavaliers
 * Warm heirloom domesticity. Fraunces + Mulish. Burgundy over cream, a thread of gold.
 * Design tokens from design-tokens.json; art direction from design-direction.md.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #6A2333;        /* Heaven Burgundy */
  --color-primary-dark: #4E1926;   /* Deep Garnet */
  --color-primary-light: #E9D3CE;  /* Blush Cream */
  --color-secondary: #4F6B4F;      /* Garden Sage */
  --color-accent: #C8A46A;         /* Heirloom Gold */
  --color-bg: #F8F3EC;             /* Warm Cream */
  --color-surface: #FFFDF9;        /* Ivory */
  --color-text: #40302A;           /* Chocolate Espresso */
  --color-text-secondary: #7A6858; /* Muted Taupe */
  --color-on-primary: #F8F3EC;     /* Warm Cream on dark */
  --color-border: #E4D8C6;         /* Soft Tan */

  --font-primary: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-secondary: 'Mulish', system-ui, -apple-system, sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;

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

  --shell: min(1180px, 92vw);
  --shell-narrow: min(760px, 92vw);
  --shell-wide: min(1360px, 96vw);
}

/* ============================================================
   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);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  padding-bottom: 42px; /* required */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--color-primary); text-decoration: none; }

/* Focus states — WCAG AA required */
:focus-visible { outline: 3px solid var(--color-accent); 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);
  color: var(--color-primary); font-weight: 700; text-decoration: none;
  border: 2px solid var(--color-accent); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-primary); color: var(--color-text); font-weight: 500; }

.display {
  font-family: var(--font-primary); font-weight: 600;
  font-size: clamp(2.9rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.h1, h1 {
  font-family: var(--font-primary); font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.015em;
  color: var(--color-primary);
}
.h2, h2 {
  font-family: var(--font-primary); font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1.14; letter-spacing: -0.01em;
  color: var(--color-primary);
}
.h3, h3 {
  font-family: var(--font-primary); font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem); line-height: 1.2;
}
.lead {
  font-family: var(--font-primary); font-weight: 400; font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem); line-height: 1.5; color: var(--color-text);
}
.body, p { font-family: var(--font-secondary); font-weight: 400; }
p { font-size: 1.0625rem; line-height: 1.7; }
.prose p { max-width: 68ch; margin-bottom: 1.15em; }
.prose p:last-child { margin-bottom: 0; }
.small { font-size: 0.9375rem; line-height: 1.55; color: var(--color-text-secondary); }

/* Kelly's first-person voice — always Fraunces italic */
.voice { font-family: var(--font-primary); font-style: italic; font-weight: 400; }

/* Eyebrow — sage/gold small-caps with a short gold rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-secondary); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-secondary); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--color-accent); flex: none; }
.eyebrow--gold { color: var(--color-accent); }
.eyebrow--on-dark { color: var(--color-accent); }
.eyebrow--on-dark { color: color-mix(in srgb, var(--color-accent) 92%, white); }

.caption {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.8125rem;
  line-height: 1.4; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* Numerals with weight */
.numeral { font-family: var(--font-primary); font-weight: 500; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container { width: var(--shell); margin-inline: auto; }
.container--narrow { width: var(--shell-narrow); margin-inline: auto; }
.container--wide { width: var(--shell-wide); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--surface { background: var(--color-surface); }
.section--blush { background: var(--color-primary-light); }
.section--sage { background: linear-gradient(180deg, color-mix(in srgb, var(--color-secondary) 8%, var(--color-bg)), var(--color-bg)); }

.section-head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Framed image (thin tan frame + soft cream margin) */
.framed {
  background: var(--color-surface); padding: 10px; border: 1px solid var(--color-border);
  box-shadow: 0 24px 48px -32px rgba(64, 48, 42, 0.4);
}
.framed img { width: 100%; height: auto; }

/* Heritage mosaic — asymmetric photo collage */
.heritage-mosaic {
  display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 14px; max-width: 880px; height: clamp(380px, 42vw, 520px);
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.heritage-mosaic__anchor { grid-row: 1 / 3; grid-column: 1; }
.heritage-mosaic__top { grid-row: 1; grid-column: 2 / 4; }
.heritage-mosaic__bl { grid-row: 2; grid-column: 2; }
.heritage-mosaic__br { grid-row: 2; grid-column: 3; }
.heritage-mosaic .framed { margin: 0; height: 100%; min-height: 0; overflow: hidden; }
.heritage-mosaic .framed img { width: 100%; height: 100%; object-fit: cover; }
.heritage-mosaic > div { min-height: 0; }
.heritage-mosaic__br img { object-position: 78% 55%; }
@media (max-width: 700px) {
  .heritage-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 150px 150px; height: auto; gap: 10px; }
  .heritage-mosaic__anchor { grid-row: 1; grid-column: 1 / 3; }
  .heritage-mosaic__top { grid-row: 2; grid-column: 1 / 3; }
  .heritage-mosaic__bl { grid-row: 3; grid-column: 1; }
  .heritage-mosaic__br { grid-row: 3; grid-column: 2; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-secondary); font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 4px; border: 1px solid transparent;
  cursor: pointer; transition: background var(--motion-duration) var(--motion-ease),
    color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.btn--primary { background: var(--color-primary); color: var(--color-on-primary); }
.btn--primary:hover { background: var(--color-primary-dark); color: var(--color-on-primary); }
.btn--on-dark { background: var(--color-bg); color: var(--color-primary); }
.btn--on-dark:hover { background: #fff; color: var(--color-primary-dark); }
.btn--ghost { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn--ghost:hover { background: var(--color-primary); color: var(--color-on-primary); }

/* Restrained text CTA with animated gold underline */
.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-secondary); font-weight: 600; letter-spacing: 0.01em;
  color: var(--color-primary); position: relative;
}
.textlink::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--color-accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.textlink:hover::after { transform: scaleX(1); }
.textlink i { transition: transform var(--motion-duration) var(--motion-ease); }
.textlink:hover i { transform: translateX(4px); }
.textlink--on-dark { color: var(--color-on-primary); }

/* ============================================================
   Navigation — logo-left, menu-right; ivory bar, gold hairline
   ============================================================ */
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 clamp(16px, 4vw, 40px); min-height: 74px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-accent);
  position: sticky; top: 0; z-index: 100;
}
.nav__brand { display: inline-flex; align-items: center; flex: none; }
.nav__brand img { height: 34px; width: auto; max-width: 210px; display: block; }
.nav__menu { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); list-style: none; }
.nav__link {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem;
  letter-spacing: 0.02em; color: var(--color-text); position: relative; padding: 4px 0;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--color-accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--color-primary); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta {
  background: var(--color-primary); color: var(--color-on-primary);
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem;
  letter-spacing: 0.01em; padding: 10px 20px; border-radius: 4px;
  transition: background var(--motion-duration) var(--motion-ease);
}
.nav__cta:hover { background: var(--color-primary-dark); color: var(--color-on-primary); }
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--color-primary);
  transition: transform var(--motion-duration) var(--motion-ease), opacity var(--motion-duration) var(--motion-ease); }

@media (max-width: 960px) {
  .nav__menu {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--color-surface); border-bottom: 1px solid var(--color-accent);
    padding: 8px clamp(16px, 4vw, 40px) 24px; transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: transform var(--motion-duration) var(--motion-ease),
      opacity var(--motion-duration) var(--motion-ease); box-shadow: 0 24px 40px -28px rgba(64,48,42,.5);
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__item { border-bottom: 1px solid var(--color-border); }
  .nav__item:last-child { order: -1; border-bottom: 1px solid var(--color-border); } /* CTA first in drawer */
  .nav__link { display: block; padding: 16px 0; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { display: block; text-align: center; margin: 8px 0 18px; padding: 14px 20px; font-size: 1rem; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   Hero — full-bleed photo, text set in the photo's own open space (home only)
   ============================================================ */
.hero { position: relative; width: 100%; min-height: clamp(540px, 78vh, 780px);
  overflow: hidden; display: flex; align-items: center; }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 66% 42%; transform: scale(1.02); animation: heroZoom 9s var(--motion-ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.005); } }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg,
    color-mix(in srgb, var(--color-surface) 88%, transparent) 0%,
    color-mix(in srgb, var(--color-surface) 72%, transparent) 16%,
    color-mix(in srgb, var(--color-surface) 38%, transparent) 28%,
    transparent 42%);
}
.hero .container { width: 100%; margin-inline: 0; padding: 0 clamp(16px, 4vw, 40px); }
.hero__inner { position: relative; z-index: 1; max-width: 470px;
  padding: clamp(90px, 10vw, 120px) 0 40px; }
.hero__eyebrow { max-width: 100%; }
.hero__title { margin: 0 0 18px; max-width: 100%; }
.hero__sub { font-family: var(--font-secondary); font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6; color: var(--color-text); max-width: 100%; margin-bottom: 28px; }

@media (max-width: 780px) {
  .hero { min-height: clamp(480px, 72vh, 640px); align-items: flex-end; }
  .hero__image { object-position: 78% center; }
  .hero::after {
    background: linear-gradient(to bottom, transparent 30%,
      color-mix(in srgb, var(--color-primary-dark) 55%, transparent) 72%,
      color-mix(in srgb, var(--color-primary-dark) 88%, transparent) 100%);
  }
  .hero__inner { max-width: none; padding: 40px 0 44px; }
  .hero__title, .hero__sub, .hero__cta { color: var(--color-on-primary); }
  .hero__eyebrow { color: var(--color-on-primary); }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3rem); text-shadow: 0 2px 20px rgba(30,12,16,0.35); }
}

/* ============================================================
   In-home proof band — image band + overlapping ivory caption card
   ============================================================ */
.proof { position: relative; background: var(--color-bg); }
.proof__band { position: relative; width: 100%; height: clamp(340px, 60vh, 620px); overflow: hidden;
  border-top: 8px solid var(--color-surface); box-shadow: 0 -6px 16px rgba(30,12,16,0.18); }
.proof__band img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.proof__card {
  position: relative; z-index: 2; width: min(560px, 88vw); margin: -96px 0 0 clamp(16px, 6vw, 96px);
  background: var(--color-surface); border-top: 3px solid var(--color-accent);
  padding: clamp(28px, 4vw, 44px); box-shadow: 0 30px 60px -34px rgba(64, 48, 42, 0.5);
}
.proof__card h2 { margin-bottom: 12px; }
.proof__card p { color: var(--color-text); }
@media (max-width: 640px) {
  .proof__card { margin: -48px auto 0; width: 90vw; }
}

/* ============================================================
   Editorial split (image beside text) — used across pages
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--40 { grid-template-columns: 40% 1fr; }
.split--60 { grid-template-columns: 1fr 42%; }
.split__text { min-width: 0; }
.split__media { min-width: 0; }
.split--reverse .split__media { order: 2; }
@media (max-width: 820px) {
  .split, .split--40, .split--60 { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
}

/* The Promise teaser — pulled-thread first line */
.promise__quote { margin-top: 8px; }
.promise__quote .voice { font-size: clamp(1.25rem, 1.9vw, 1.6rem); line-height: 1.5; display: block; }
.promise__quote .voice .pull { display: block; margin-left: -0.6em; text-indent: -0.4em; }
@media (min-width: 821px) {
  .promise__quote .voice .pull { margin-left: -1.4em; }
}

/* Photo-album annotation caption */
.album-caption { margin-top: 14px; color: var(--color-text-secondary); }

/* ============================================================
   Ledger of Names — the signature registry device
   ============================================================ */
.ledger { list-style: none; border-top: 1px solid var(--color-border); }
.ledger__row {
  display: flex; align-items: baseline; gap: 16px; padding: 18px 4px;
  border-bottom: 1px solid var(--color-border);
}
.ledger__label {
  font-family: var(--font-primary); font-weight: 500; font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--color-primary); flex: none; max-width: 58%;
}
.ledger__label a { color: inherit; text-decoration-color: color-mix(in srgb, var(--color-accent) 60%, transparent); text-underline-offset: 3px; }
.ledger__label a:hover { color: var(--color-accent); }
.ledger__leader { position: relative; flex: 1 1 auto; min-width: 24px; align-self: flex-end; margin-bottom: 6px; height: 1px; }
.ledger__leader::before {
  content: ''; position: absolute; inset: 0; border-top: 1px dashed var(--color-accent);
  transform: scaleX(1); transform-origin: left;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
body.js-load-ready .ledger .ledger__leader::before { transform: scaleX(0); }
body.js-load-ready .ledger.is-revealed .ledger__leader::before { transform: scaleX(1); }
.ledger__value {
  font-family: var(--font-secondary); font-size: 1.0625rem; color: var(--color-text);
  flex: none; text-align: right; max-width: 42%;
}
.ledger__value .numeral { color: var(--color-primary); }
.ledger__row--note { border-bottom: none; padding-top: 24px; }
.ledger__row--note .ledger__label { color: var(--color-text); }

@media (max-width: 560px) {
  .ledger__row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ledger__label, .ledger__value { max-width: 100%; text-align: left; }
  .ledger__leader { flex: 0 0 auto; width: 52px; height: 1px; margin: 4px 0; align-self: flex-start; }
}

/* Sub-ledger of "doors still open" on Available Puppies */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 999px;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.875rem; color: var(--color-text);
}
.tag i { color: var(--color-secondary); }

/* Sage credential tick lists */
.ticklist { list-style: none; display: grid; gap: 14px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.0625rem; line-height: 1.6; }
.ticklist i { color: var(--color-secondary); font-size: 1.2rem; margin-top: 2px; flex: none; }

/* ============================================================
   Deep Garnet bands — CTA + founding spread + footer
   ============================================================ */
.garnet { background: var(--color-primary-dark); color: var(--color-on-primary); }
.garnet h1, .garnet h2, .garnet h3 { color: var(--color-on-primary); }
.garnet p { color: color-mix(in srgb, var(--color-on-primary) 90%, transparent); }

/* CTA invitation band */
.invite { text-align: center; }
.invite__inner { max-width: 46ch; margin-inline: auto; }
.invite .ornament { margin: 0 auto 22px; }
.invite__title { color: var(--color-on-primary); font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.invite__sub { margin-bottom: 30px; }

/* Ornament (gold fleuron) — stands in for the logo's gold ornament */
.ornament { width: 46px; height: auto; display: block; }
.ornament--lg { width: 76px; }

/* Founding-story two-movement spread */
.founding { position: relative; }
.founding__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.founding__movement { max-width: 52ch; }
.founding__movement--one { align-self: start; padding-top: clamp(8px, 4vw, 48px); }
.founding__movement--two { align-self: end; padding-bottom: clamp(8px, 4vw, 48px); }
.founding__label { color: var(--color-accent); margin-bottom: 18px; }
.founding__label::before { background: var(--color-accent); }
.founding__movement .voice { font-size: clamp(1.2rem, 1.7vw, 1.55rem); line-height: 1.6; }
.founding__movement p + p { margin-top: 1.1em; }
.founding__divider { display: flex; align-items: center; justify-content: center; align-self: stretch; }
.founding__divider::before, .founding__divider::after {
  content: ''; width: 1px; flex: 1; background: linear-gradient(var(--color-accent), transparent);
  opacity: 0.5;
}
.founding__divider::after { background: linear-gradient(transparent, var(--color-accent)); }
.founding__divider .ornament { margin: 18px 0; }
@media (max-width: 820px) {
  .founding__grid { grid-template-columns: 1fr; }
  .founding__divider { flex-direction: row; height: auto; }
  .founding__divider::before, .founding__divider::after { height: 1px; width: auto; }
  .founding__divider::before { background: linear-gradient(90deg, transparent, var(--color-accent)); }
  .founding__divider::after { background: linear-gradient(90deg, var(--color-accent), transparent); }
  .founding__divider .ornament { margin: 0 18px; }
  .founding__movement { max-width: none; }
}

/* ============================================================
   Contained page hero (interior pages)
   ============================================================ */
.pagehero { padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px); }
.pagehero__grid { display: grid; grid-template-columns: 1fr 42%; gap: clamp(32px, 5vw, 64px); align-items: center; }
.pagehero__grid--reverse { grid-template-columns: 42% 1fr; }
.pagehero__text { min-width: 0; }
.pagehero__media { min-width: 0; }
.pagehero .lead { margin-top: 18px; max-width: 46ch; }
@media (max-width: 820px) {
  .pagehero__grid, .pagehero__grid--reverse { grid-template-columns: 1fr; gap: 28px; }
  .pagehero__grid--reverse .pagehero__media { order: -1; }
}

/* ============================================================
   Our Dogs — stud-book registry entries
   ============================================================ */
.group { padding-top: clamp(28px, 4vw, 48px); }
.group + .group { border-top: 1px solid var(--color-accent); margin-top: clamp(28px, 4vw, 48px); }
.group__label { color: var(--color-secondary); }
.dog { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start;
  padding: clamp(20px, 3vw, 36px) 0; }
.dog:not(:last-child) { border-bottom: 1px solid var(--color-border); }
.dog--reverse { grid-template-columns: 1fr 300px; }
.dog--reverse .dog__media { order: 2; }
.dog__media { min-width: 0; }
.dog__media img { transition: transform var(--motion-duration-slow) var(--motion-ease); }
.dog__media:hover img { transform: scale(1.03); }
.dog__body { min-width: 0; }
.dog__name { color: var(--color-primary); margin-bottom: 6px; }
.dog__meta { color: var(--color-text-secondary); margin-bottom: 16px; }
.dog--thumb { grid-template-columns: 200px 1fr; }
.dog--noimg { grid-template-columns: 1fr; }
.dog--noimg .dog__body { max-width: 68ch; }
.ledger--compact { border-top: none; }
.ledger--compact .ledger__row { padding: 12px 4px; }
.ledger--compact .ledger__label { font-size: 1.05rem; }
@media (max-width: 700px) {
  .dog, .dog--reverse, .dog--thumb { grid-template-columns: 1fr; gap: 18px; }
  .dog--reverse .dog__media { order: 0; }
  .dog__media { max-width: 320px; }
}

/* ============================================================
   Health — buyer journey gold path
   ============================================================ */
.journey { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; }
.journey::before {
  content: ''; position: absolute; top: 22px; left: 6%; right: 6%; height: 2px;
  background: var(--color-accent); transform: scaleX(1); transform-origin: left;
  transition: transform 900ms var(--motion-ease);
}
body.js-load-ready .journey::before { transform: scaleX(0); }
body.js-load-ready .journey.is-revealed::before { transform: scaleX(1); }
.journey__step { position: relative; text-align: center; }
.journey__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--color-surface);
  border: 2px solid var(--color-accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary); font-weight: 600; font-size: 1.15rem; color: var(--color-primary);
  margin: 0 auto 16px; position: relative; z-index: 1;
}
.journey__kicker { color: var(--color-secondary); display: block; font-size: 0.75rem; margin-bottom: 6px; }
.journey__label { font-family: var(--font-primary); font-weight: 500; font-size: 1.05rem; color: var(--color-primary); margin-bottom: 6px; }
.journey__step p { font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.5; }
@media (max-width: 860px) {
  .journey { grid-template-columns: 1fr; gap: 0; }
  .journey::before { top: 6%; bottom: 6%; left: 22px; right: auto; width: 2px; height: auto;
    transform: scaleY(1); transform-origin: top; }
  body.js-load-ready .journey::before { transform: scaleY(0); }
  body.js-load-ready .journey.is-revealed::before { transform: scaleY(1); }
  .journey__step { display: grid; grid-template-columns: 46px 1fr; gap: 18px; text-align: left; padding: 16px 0; align-items: start; }
  .journey__num { margin: 0; }
  .journey__kicker { margin-top: 6px; }
}

/* Certificate photo — photographed document */
.certificate { transform: rotate(-1.6deg); background: var(--color-surface); padding: 14px;
  border: 1px solid var(--color-border); box-shadow: 0 34px 60px -30px rgba(64,48,42,.55); }
.certificate img { width: 100%; }

/* ============================================================
   The Breed — broadsheet
   ============================================================ */
.dropcap::first-letter {
  font-family: var(--font-primary); font-weight: 600; float: left; font-size: 3.8em;
  line-height: 0.8; padding: 6px 12px 0 0; color: var(--color-primary);
}
.broadsheet { columns: 2; column-gap: 44px; column-rule: 1px solid var(--color-accent); }
.broadsheet p { max-width: none; margin-bottom: 1em; }
@media (max-width: 768px) { .broadsheet { columns: 1; column-rule: none; } }

/* Duotone accent for the ruby cavalier (warm-corrected) */
.duotone img { filter: sepia(0.28) saturate(1.05) hue-rotate(-8deg) contrast(1.02); }

/* ============================================================
   Testimonials — editorial wall, varied sizes
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 3vw, 32px); align-items: start; }
.quote { position: relative; padding: clamp(24px, 3vw, 40px); border: 1px solid var(--color-border);
  transition: transform var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease); }
.quote:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -30px rgba(64,48,42,.45); }
.quote--ivory { background: var(--color-surface); }
.quote--blush { background: var(--color-primary-light); }
.quote__mark { font-family: var(--font-primary); font-weight: 600; color: var(--color-accent);
  font-size: 4rem; line-height: 0.6; display: block; height: 0.5em; }
.quote__text { font-size: 1.0625rem; line-height: 1.65; color: var(--color-text); }
.quote__attr { margin-top: 18px; color: var(--color-secondary); }
.quote__attr .name { color: var(--color-primary); }
.quote--featured { grid-column: span 7; }
.quote--featured .quote__text { font-family: var(--font-primary); font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.5; }
.quote--featured .quote__mark { font-size: 6rem; }
.quote--sm { grid-column: span 5; }
.quote--half { grid-column: span 6; }
.quote--third { grid-column: span 4; }
.quote__photo { margin-top: 20px; }
.quote__photo img { border: 1px solid var(--color-border); }
@media (max-width: 820px) {
  .quote--featured, .quote--sm, .quote--half, .quote--third { grid-column: span 12; }
}

/* Alumni family photo wall */
.photowall { columns: 150px; column-gap: 18px; }
.photowall figure { break-inside: avoid; margin-bottom: 16px; }
.photowall figure img { width: 100%; border: 1px solid var(--color-border);
  transition: transform var(--motion-duration) var(--motion-ease); }
.photowall figure:hover img { transform: scale(1.02) rotate(-0.6deg); }
.photowall figcaption { margin-top: 8px; }

/* ============================================================
   Contact form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 40% 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { background: var(--color-surface); border: 1px solid var(--color-border);
  padding: clamp(24px, 4vw, 40px); display: grid; gap: 20px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-secondary); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-secondary); }
.field input, .field select, .field textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text);
  background: var(--color-bg); border: none; border-bottom: 2px solid var(--color-border);
  padding: 12px 4px; transition: border-color var(--motion-duration) var(--motion-ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--color-accent); }
.field textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--color-primary-dark); color: var(--color-on-primary); padding: clamp(48px, 6vw, 80px) 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer__logo { display: inline-block; background: var(--color-surface); padding: 10px 16px; border-radius: 6px; }
.footer__logo img { height: 30px; width: auto; max-width: 190px; }
.footer__tagline { margin-top: 18px; max-width: 34ch; color: color-mix(in srgb, var(--color-on-primary) 84%, transparent); }
.footer__col h2 { font-family: var(--font-secondary); font-weight: 700; font-size: 0.8125rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a { color: color-mix(in srgb, var(--color-on-primary) 88%, transparent);
  font-size: 0.95rem; transition: color var(--motion-duration) var(--motion-ease); }
.footer__col a:hover { color: var(--color-on-primary); }
.footer__col a i { color: var(--color-accent); margin-right: 4px; }
.footer__meta { display: flex; align-items: center; gap: 8px; color: color-mix(in srgb, var(--color-on-primary) 84%, transparent);
  font-size: 0.9rem; }
.footer__meta i { color: var(--color-accent); }
.footer__bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  color: color-mix(in srgb, var(--color-on-primary) 78%, transparent); font-size: 0.85rem; }
.site-footer a { color: color-mix(in srgb, var(--color-on-primary) 88%, transparent); }
@media (max-width: 700px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   New Puppy Guide — illustrated card grid
   ============================================================ */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.guide-card { text-align: center; }
.guide-card__img { display: block; width: 100%; max-width: 176px; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; border: 1px solid var(--color-border); margin: 0 auto 18px;
  box-shadow: 0 18px 30px -22px rgba(64, 48, 42, .4); }
.guide-card h3 { font-family: var(--font-primary); font-weight: 500; font-size: 1.1rem;
  color: var(--color-primary); margin-bottom: 6px; }
.guide-card p { font-size: 0.9375rem; color: var(--color-secondary); line-height: 1.55; }
@media (max-width: 820px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .guide-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }

/* ============================================================
   FAQ / atmospheric — soft-photo backdrop band + accordion
   ============================================================ */
.faq-band, .atmos-band { position: relative; padding: clamp(56px, 8vw, 96px) 0; overflow: hidden; }
.faq-band__bg, .atmos-band__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  filter: blur(2px); z-index: 0; }
.faq-band::before, .atmos-band::before { content: ''; position: absolute; inset: 0; z-index: 1;
  background: color-mix(in srgb, var(--color-bg) 95%, transparent); }
.faq-band .container, .atmos-band .container { position: relative; z-index: 1; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); padding: 18px 4px; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-family: var(--font-primary); font-weight: 500;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--color-primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-secondary); color: var(--color-accent);
  font-size: 1.3rem; flex: none; transition: transform var(--motion-duration) var(--motion-ease); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 12px; color: var(--color-text); font-size: 0.975rem; line-height: 1.65; max-width: 62ch; }

/* ============================================================
   Decorative accents — generated fleuron/motif PNGs
   ============================================================ */
.decor { pointer-events: none; user-select: none; opacity: .85; height: auto; }
.decor--corner { position: absolute; top: 4px; left: clamp(4px, 2vw, 24px);
  width: clamp(120px, 14vw, 190px); opacity: .7; }
.decor--trail { width: clamp(160px, 20vw, 260px); display: block; margin: 8px auto; opacity: .65; }
.decor--arc { width: clamp(220px, 28vw, 380px); display: block; margin: 0 auto 8px; opacity: .9; }
.decor--inline { width: clamp(90px, 10vw, 130px); display: block; margin: 0 auto 20px; opacity: .9; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.notfound .display { color: var(--color-primary); }

/* ============================================================
   Motion — entrance stagger + scroll reveal
   ============================================================ */
/* Reveal is a progressive enhancement: visible by default (no-JS / QA-safe),
   hidden only once JS marks the body ready, then revealed on scroll. */
.reveal { transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
body.js-load-ready .reveal { opacity: 0; transform: translateY(20px); }
body.js-load-ready .reveal.is-revealed { opacity: 1; transform: none; }

body.js-load-ready .entrance { opacity: 0; transform: translateY(16px); }
.entrance { transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
body.js-animated .entrance { opacity: 1; transform: translateY(0); }
.entrance--1 { transition-delay: 60ms; }
.entrance--2 { transition-delay: 150ms; }
.entrance--3 { transition-delay: 260ms; }
.entrance--4 { transition-delay: 380ms; }
.entrance--5 { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__image { animation: none; transform: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .entrance { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ledger__leader::before, .journey::before { transform: none !important; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdfeQ7ZXk8kD6.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: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdPeQ7ZXk8kD6.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: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjeveQ7ZXk8g.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;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdfeQ7ZXk8kD6.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: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdPeQ7ZXk8kD6.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: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjeveQ7ZXk8g.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;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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: 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;
}
