/*
 * RedFern Herbal Extracts & Infusions
 * Site Build — Stage 16. Editorial apothecary-label system.
 * Palette image-derived; Fraunces + Hanken Grotesk.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #5C7A4A;       /* Fern Green — large headings only */
  --color-primary-dark: #3F5733;  /* Deep Moss — white text on green */
  --color-primary-light: #C7D2B0; /* Soft Sage — panels */
  --color-secondary: #3A3028;     /* Charcoal Bark */
  --color-accent: #A84030;        /* Terracotta */
  --color-accent-dark: #8A3324;   /* deeper terracotta — button hover */
  --color-bg: #F4EFDF;            /* Warm Parchment */
  --color-surface: #EAE3CE;       /* Tinted Parchment */
  --color-text: #2E2A22;          /* Ink Brown */
  --color-text-secondary: #6B6253;/* Muted Bark */
  --color-on-dark: #F4EFDF;       /* Parchment text on dark */
  --color-border: #D8CFB6;        /* Soft Tan */

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

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

  --measure: 66ch;
  --shell: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

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

html {
  font-size: var(--font-size-base, 16px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 1.0625rem;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.display {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
h1, .h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}
h2, .h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.005em;
  color: var(--color-primary);
}
h3, .h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
}
p { max-width: var(--measure); }

.lead {
  font-family: var(--font-secondary);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 60ch;
}
.body-copy p + p { margin-top: 1.1rem; }
.muted { color: var(--color-text-secondary); }

/* Apothecary kicker + hairline ("The Apothecary Label Rule") */
.kicker {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.kicker::before {
  content: "";
  width: 17px; height: 20px;
  flex: none;
  background-color: var(--color-accent);
  -webkit-mask: url('../images/fern-glyph.svg') center / contain no-repeat;
  mask: url('../images/fern-glyph.svg') center / contain no-repeat;
}
.label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent) 0%, color-mix(in srgb, var(--color-accent) 30%, transparent) 60%, transparent 100%);
}
.label--light .kicker { color: color-mix(in srgb, var(--color-on-dark) 80%, transparent); }
.label--light::after { background: linear-gradient(to right, var(--color-accent), transparent); }

/* ============================================================
   Layout helpers
   ============================================================ */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.center { text-align: center; }
.flow > * + * { margin-top: 1.1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.9rem;
  border: none;
  cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              transform var(--motion-duration) var(--motion-ease);
}
.btn--solid { background: var(--color-accent); color: var(--color-on-dark); }
.btn--solid:hover { background: var(--color-accent-dark); }
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-accent);
}
.btn--ghost:hover { background: var(--color-accent); color: var(--color-on-dark); }
.btn--on-dark { color: var(--color-on-dark); border-color: var(--color-accent); }
.btn--on-dark:hover { background: var(--color-accent); color: var(--color-on-dark); }

/* Terracotta text-link with arrow */
.text-link {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--motion-duration) var(--motion-ease), gap var(--motion-duration) var(--motion-ease);
}
.text-link:hover { border-color: var(--color-accent); gap: 0.7rem; }

/* ============================================================
   Announcement bar (scrolls off normally)
   ============================================================ */
.announce {
  background: var(--color-primary-dark);
  color: var(--color-on-dark);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.announce__mark {
  width: 13px; height: 15px;
  flex: none;
  background-color: var(--color-accent);
  -webkit-mask: url('../images/fern-glyph.svg') center / contain no-repeat;
  mask: url('../images/fern-glyph.svg') center / contain no-repeat;
}

/* ============================================================
   Navigation — centered logo, split menu, scroll-away
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 90%, transparent);
  -webkit-backdrop-filter: saturate(1.1) blur(2px);
  backdrop-filter: saturate(1.1) blur(2px);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
  transition: transform var(--motion-duration) var(--motion-ease),
              opacity var(--motion-duration) var(--motion-ease);
}
.site-header.is-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: 80px;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2rem); list-style: none; }
.nav__links--left { justify-content: flex-end; }
.nav__links--right { justify-content: flex-start; }
.nav__link {
  font-family: var(--font-secondary);
  font-size: 0.875rem;            /* 14px uppercase — clears the floor */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text);
  position: relative;
  padding-block: 0.5rem;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.nav__link:hover { color: var(--color-primary-dark); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--color-primary-dark); }

.nav__seal { justify-self: center; display: block; line-height: 0; }
.nav__seal img { height: 73px; width: auto; }

.nav__toggle {
  display: none;
  justify-self: end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 1.7rem;
  line-height: 1;
  padding: 0.3rem;
}

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform var(--motion-duration) var(--motion-ease);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu a[aria-current="page"] { color: var(--color-accent); }
.mobile-menu__close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--color-text);
}
.scrim {
  position: fixed; inset: 0;
  background: color-mix(in srgb, var(--color-secondary) 45%, transparent);
  opacity: 0; visibility: hidden;
  transition: opacity var(--motion-duration) var(--motion-ease), visibility var(--motion-duration);
  z-index: 150;
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
}
.hero__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 30%,
    color-mix(in srgb, var(--color-secondary) 30%, transparent) 68%,
    color-mix(in srgb, var(--color-secondary) 70%, transparent) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 100%;
  padding: clamp(2rem, 6vw, 5rem) var(--gutter) clamp(3rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
}
.hero__inner { max-width: var(--shell); margin-inline: auto; width: 100%; }
.hero__inner > * { max-width: 54ch; }
.hero__headline {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--color-on-dark);
  text-shadow: 0 1px 24px color-mix(in srgb, var(--color-secondary) 40%, transparent);
}
.underline { position: relative; white-space: nowrap; }
.underline::after {
  content: "";
  position: absolute;
  left: -0.02em; right: -0.05em; bottom: -0.16em;
  height: 0.2em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 14' preserveAspectRatio='none'%3E%3Cpath d='M3 9 C 45 3, 80 12, 120 7 S 185 3, 217 8' stroke='%23A84030' stroke-width='3.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero__sub {
  font-family: var(--font-secondary);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-on-dark) 88%, transparent);
  max-width: 48ch;
  margin: 1.4rem 0 2rem;
}

/* ============================================================
   Asymmetric intro blocks (The Promise / Meet Tawny)
   ============================================================ */
.split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.split__text { min-width: 0; }
.split__text .body-copy { max-width: 56ch; }
.split__media { min-width: 0; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* The Promise: 62/38 with a wide bare-parchment left margin; image bleeds right */
.promise {
  display: grid;
  grid-template-columns: minmax(0, 0.30fr) minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.promise__void { min-width: 0; }   /* the intentional emptiness */
.promise__text { min-width: 0; padding-block: clamp(1rem, 3vw, 3rem); }
.promise__media {
  min-width: 0;
  align-self: stretch;
  position: relative;
  min-height: 380px;
}
.promise__media img {
  position: absolute; inset: 0;
  width: calc(100% + var(--gutter));
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Meet Tawny: mirrored — image left, copy right */
.founder {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.founder__media { min-width: 0; }
.founder__media img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; object-position: top center; }
.founder__media figcaption {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  margin-top: 0.6rem;
}
.founder__text { min-width: 0; }

/* ============================================================
   Category rails (by intention)
   ============================================================ */
.rails { padding-block: clamp(3rem, 7vw, 6rem); }
.rail { margin-top: clamp(2.5rem, 5vw, 4rem); }
.rail:first-of-type { margin-top: 0; }
.rail__head { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.rail__head .label { margin-bottom: 0.5rem; }
.rail__head h2, .rail__head h3 { color: var(--color-primary); }
.rail__note { font-size: 0.95rem; color: var(--color-text-secondary); margin-top: 0.3rem; }

.rail__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, calc((min(100vw, var(--shell)) - var(--gutter) * 2 - 3 * 1.4rem) / 4.5));
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1.6rem var(--gutter);
  max-width: var(--shell);
  margin-inline: auto;
  scroll-padding-left: var(--gutter);
}
.rail__track::-webkit-scrollbar { display: none; }

.tile { scroll-snap-align: start; display: flex; flex-direction: column; min-width: 0; }
.tile__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.tile:hover .tile__media img { transform: scale(1.045); }
.tile__name {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  margin-top: 0.85rem;
  color: var(--color-text);
}
.tile__ingredients {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
  line-height: 1.45;
}
.tile__price {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-top: 0.55rem;
  transition: color var(--motion-duration) var(--motion-ease);
}
.tile:hover .tile__price { color: var(--color-accent); }

/* Sets read wider than a single bottle */
.rail--sets .rail__track { grid-auto-columns: minmax(300px, calc((min(100vw, var(--shell)) - var(--gutter) * 2 - 2 * 1.4rem) / 2.4)); }
.tile--set .tile__media { aspect-ratio: 16 / 10; }

/* ============================================================
   Soundwave teaser band (warm pivot)
   ============================================================ */
.band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.band__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    color-mix(in srgb, var(--color-secondary) 78%, transparent) 0%,
    color-mix(in srgb, var(--color-secondary) 55%, transparent) 42%,
    color-mix(in srgb, var(--color-secondary) 12%, transparent) 80%);
}
.band__panel {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}
.band__inner { max-width: 44ch; padding-block: clamp(3rem, 7vw, 6rem); }
.band__panel h2 { color: var(--color-on-dark); }
.band__panel p { color: color-mix(in srgb, var(--color-on-dark) 90%, transparent); }
.band__panel .kicker { color: color-mix(in srgb, var(--color-on-dark) 82%, transparent); }
.band__panel .label::after { background: linear-gradient(to right, var(--color-accent), transparent); }

/* ============================================================
   Featured testimonial (pinned note on sage)
   ============================================================ */
.quote-feature {
  background: var(--color-primary-light);
  padding-block: clamp(4rem, 9vw, 8rem);
}
.quote-feature__inner {
  max-width: 48ch;
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}
.quote-feature blockquote {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.34;
  color: var(--color-secondary);
  position: relative;
  font-feature-settings: "liga" 1, "dlig" 1;
}
.quote-feature blockquote::before {
  content: "\201C";
  position: absolute;
  left: -0.62em;
  top: -0.18em;
  font-size: 3.2em;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-primary);
}
.quote-feature cite {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* ============================================================
   Connect teaser + apothecary address label
   ============================================================ */
.connect { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.connect__text { min-width: 0; }
.connect__aside { min-width: 0; }

.addr-label {
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  position: relative;
}
.addr-label__mark {
  width: 30px; height: 34px;
  background-color: var(--color-accent);
  -webkit-mask: url('../images/fern-glyph.svg') center / contain no-repeat;
  mask: url('../images/fern-glyph.svg') center / contain no-repeat;
  margin-bottom: 0.9rem;
}
.addr-label dt {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 1.1rem;
}
.addr-label dt:first-of-type { margin-top: 0; }
.addr-label dd {
  font-family: var(--font-secondary);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-top: 0.25rem;
}
.addr-label dd a { color: var(--color-text); border-bottom: 1px solid var(--color-border); }
.addr-label dd a:hover { color: var(--color-accent); border-color: var(--color-accent); }
.addr-label hr { border: none; border-top: 1px solid var(--color-border); margin-top: 1.2rem; }

/* ============================================================
   Contact form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 45% 55%; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.field input, .field textarea {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 22%, transparent);
}
.field textarea { resize: vertical; min-height: 150px; }
.contact-aside {
  position: relative;
  align-self: stretch;
}
.contact-aside__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.16;
  z-index: 0;
}
.contact-aside .addr-label { position: relative; z-index: 1; background: color-mix(in srgb, var(--color-surface) 92%, transparent); }

/* ============================================================
   Page headers (interior pages)
   ============================================================ */
.page-head { padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-head h1 { color: var(--color-primary); max-width: 18ch; }
.page-head .lead { margin-top: 1.1rem; }
.contents-line {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1.5px solid var(--color-accent);
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
}
.contents-line span { white-space: nowrap; }
.contents-line span + span::before { content: "·"; color: var(--color-accent); margin-right: 1.1rem; }

.strip-image { width: 100%; height: clamp(200px, 30vw, 360px); object-fit: cover; object-position: center 40%; }

/* ============================================================
   Deep Moss banner (About / FAQ closing)
   ============================================================ */
.moss-banner {
  background: var(--color-primary-dark);
  color: var(--color-on-dark);
  position: relative;
  overflow: hidden;
}
.moss-banner__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.18; z-index: 0;
}
.moss-banner__inner {
  position: relative; z-index: 1;
  max-width: var(--shell); margin-inline: auto; padding: clamp(3.5rem, 8vw, 7rem) var(--gutter);
}
.moss-banner h1, .moss-banner h2 { color: var(--color-on-dark); max-width: 20ch; }
.moss-banner p { color: color-mix(in srgb, var(--color-on-dark) 92%, transparent); max-width: 60ch; margin-top: 1.2rem; }
.moss-banner .kicker { color: color-mix(in srgb, var(--color-on-dark) 82%, transparent); }
.moss-banner .label::after { background: linear-gradient(to right, var(--color-accent), transparent); }

/* ============================================================
   About — zigzag story splits
   ============================================================ */
.story-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); }
.story-split__media { min-width: 0; }
.story-split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.story-split__text { min-width: 0; }
.story-split--reverse .story-split__media { order: 2; }
.story-split--sage { background: var(--color-primary-light); }
.story-split--sage .story-split__text h2 { color: var(--color-primary-dark); }
.story-split--surface { background: var(--color-surface); }

/* ============================================================
   Soundwave — broadsheet monograph
   ============================================================ */
.broadsheet { max-width: 78ch; margin-inline: auto; }
.broadsheet__body {
  columns: 2;
  column-gap: clamp(2rem, 4vw, 4rem);
  column-rule: 1px solid var(--color-border);
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--color-text);
}
.broadsheet__body p { max-width: none; }
.broadsheet__body p + p { margin-top: 1rem; }
.broadsheet__lot {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.broadsheet__body p:first-child { break-inside: avoid; }

.guide-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.guide-feature__cover { min-width: 0; }
.guide-feature__cover img {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  box-shadow: 0 20px 50px -22px color-mix(in srgb, var(--color-secondary) 60%, transparent);
  transition: transform var(--motion-duration-slow) var(--motion-ease), box-shadow var(--motion-duration-slow) var(--motion-ease);
}
.guide-feature__cover:hover img { transform: translateY(-6px); box-shadow: 0 28px 60px -22px color-mix(in srgb, var(--color-secondary) 65%, transparent); }
.guide-feature__text { min-width: 0; }

.process-points { list-style: none; display: grid; gap: 1.3rem; margin-top: 1.5rem; }
.process-points li { display: flex; gap: 0.9rem; align-items: flex-start; }
.process-points i { color: var(--color-accent); font-size: 1.4rem; flex: none; margin-top: 0.1rem; }
.process-points strong { font-family: var(--font-primary); font-weight: 600; display: block; }

/* ============================================================
   Stories — noticeboard of pinned notes (varied scale)
   ============================================================ */
.notes { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); align-items: start; }
.note {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  grid-column: span 3;
}
.note--wide { grid-column: span 6; background: var(--color-primary-light); border-color: transparent; }
.note--tall { grid-column: span 3; }
.note--narrow { grid-column: span 2; }
.note blockquote {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.32;
  color: var(--color-secondary);
  position: relative;
  padding-left: 1.4rem;
}
.note blockquote::before {
  content: "\201C";
  position: absolute; left: -0.05rem; top: -0.2em;
  font-size: 2.4em; line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-primary);
}
.note--wide blockquote { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.note blockquote { font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.note__cond {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
}
.note cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
}
.note__body { font-size: 0.98rem; color: var(--color-text-secondary); margin-top: 0.4rem; }
.note__details summary { list-style: none; cursor: pointer; }
.note__details summary::-webkit-details-marker { display: none; }
.note__details summary::marker { content: ""; }
.note__preview {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.32;
  color: var(--color-secondary);
  position: relative;
  padding-left: 1.4rem;
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}
.note__preview::before {
  content: "\201C";
  position: absolute; left: -0.05rem; top: -0.2em;
  font-size: 2.4em; line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-primary);
}
.note__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
}
.note__toggle i { transition: transform 0.2s ease; }
.note__details[open] .note__toggle i { transform: rotate(180deg); }
.note__toggle-close { display: none; }
.note__details[open] .note__toggle-open { display: none; }
.note__details[open] .note__toggle-close { display: inline; }
.note__rest { padding-left: 1.4rem; margin-top: 1rem; }
.note__rest p {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-secondary);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 0 0 0.9rem;
}
.note__rest p:last-child { margin-bottom: 0; }

/* ============================================================
   FAQ — numbered remedy index
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem) clamp(2.5rem, 5vw, 4.5rem); }
.faq { min-width: 0; }
.faq__lot {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  font-feature-settings: "onum" 1;
}
.faq h3 { margin: 0.3rem 0 0.7rem; color: var(--color-text); }
.faq p { color: var(--color-text-secondary); max-width: 52ch; }

/* ============================================================
   Generic intro banner (Tinted Parchment)
   ============================================================ */
.tint-banner { background: var(--color-surface); }
.tint-banner__inner { max-width: 60ch; margin-inline: auto; text-align: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.tint-banner .label { justify-content: center; }
.tint-banner .label::after { display: none; }
.tint-banner .kicker::after {
  content: "";
  width: 17px; height: 20px;
  background-color: var(--color-accent);
  -webkit-mask: url('../images/fern-glyph.svg') center / contain no-repeat;
  mask: url('../images/fern-glyph.svg') center / contain no-repeat;
}

/* ============================================================
   Shop (Square storefront — shop.js owns cart chrome, see shop-contract.md)
   ============================================================ */
#shop-root {
  min-height: 40vh;
  max-width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  padding-inline: var(--gutter);
}

.shop-noscript,
#shop-root .shop-loading {
  text-align: center;
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
  padding: 4rem 1rem;
  display: none;
}
#shop-root[data-shop-state="loading"] .shop-loading { display: block; }

#shop-root[data-shop-state="empty"]::before,
#shop-root[data-shop-state="error"]::before {
  display: block;
  text-align: center;
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
  padding: 4rem 1rem;
  max-width: 40ch;
  margin-inline: auto;
}
#shop-root[data-shop-state="empty"]::before {
  content: "Nothing in stock right now — check back soon, or reach out and Tawny can help.";
}
#shop-root[data-shop-state="error"]::before {
  content: "We couldn't load the shop just now. Please refresh, or contact us to order directly.";
}

/* Brand overrides for shop.js's :where() grid defaults */
.shop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.shop-category {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  padding: 0.5rem 1.1rem;
  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);
}
.shop-category:hover { border-color: var(--color-accent); }
.shop-category.is-active { background: var(--color-accent); color: var(--color-on-dark); border-color: var(--color-accent); }

.shop-grid { gap: clamp(1.4rem, 2.5vw, 2rem); }
.shop-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.shop-card-media { background: var(--color-surface); }
/* Re-assert fill+cover: the site's base `img { height: auto }` reset (needed
   elsewhere) otherwise beats shop.js's zero-specificity :where() default,
   leaving product photos at natural aspect ratio and top-clipped. */
.shop-card-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.shop-card-body { padding: 1rem 0.2rem 1.2rem; gap: 0.4rem; }
.shop-card-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--color-text);
}
.shop-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
/* Quick-view trigger — inserted by js/main.js only when the clamp above is
   actually hiding text; never appears on short descriptions. */
.shop-card-viewmore {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-accent);
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.shop-card-viewmore:hover { border-color: var(--color-accent); }
.shop-card-price { font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem; color: var(--color-text); }
.shop-card-variations {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  padding: 0.5rem 0.6rem;
}
.shop-card-cta {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-on-dark);
  border: none;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  margin-top: auto;
  transition: background var(--motion-duration) var(--motion-ease);
}
.shop-card-cta:hover { background: var(--color-accent-dark); }
.shop-card--unavailable .shop-card-cta { background: var(--color-border); color: var(--color-text-secondary); cursor: not-allowed; }

/* Quick-view modal (js/main.js-owned; entirely separate from .lcrm-cart*) */
.pdp-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--motion-duration) var(--motion-ease), visibility var(--motion-duration);
}
.pdp-modal.is-open { opacity: 1; visibility: visible; }
.pdp-modal__scrim {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-secondary) 55%, transparent);
}
.pdp-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 640px;
  max-height: 86vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
}
.pdp-modal__media { background: var(--color-surface); aspect-ratio: 1; overflow: hidden; padding: clamp(1rem, 2.5vw, 1.5rem); }
.pdp-modal__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pdp-modal__body { padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 0.9rem; min-width: 0; }
.pdp-modal__body h3 { color: var(--color-text); }
.pdp-modal__desc { font-size: 0.96rem; line-height: 1.62; color: var(--color-text-secondary); white-space: pre-line; max-width: none; }
.pdp-modal__price { font-family: var(--font-secondary); font-weight: 600; font-size: 1.05rem; color: var(--color-text); }
.pdp-modal__cta { align-self: flex-start; margin-top: 0.2rem; }
.pdp-modal__cta:disabled { background: var(--color-border); color: var(--color-text-secondary); cursor: not-allowed; }
.pdp-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pdp-modal__close:hover { border-color: var(--color-accent); color: var(--color-accent); }

@media (min-width: 640px) {
  .pdp-modal__panel { grid-template-columns: 0.9fr 1.1fr; }
}

/* ============================================================
   Events — apothecary ticket cards
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.event-card {
  display: flex;
  gap: 1.2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.event-card__date {
  flex: none;
  width: 60px;
  text-align: center;
  border-right: 1.5px solid var(--color-accent);
  padding-right: 1rem;
}
.event-card__date-month {
  display: block;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
}
.event-card__date-day {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--color-text);
  margin-top: 0.2rem;
}
.event-card__body { min-width: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.event-card__body .label { margin-bottom: 0.2rem; }
.event-card__body h3 { color: var(--color-text); }
.event-card__meta {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
}
.event-card__meta i { color: var(--color-accent); margin-right: 0.35rem; }
.event-card__desc { font-size: 0.96rem; color: var(--color-text-secondary); }
.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.event-card__price { font-family: var(--font-secondary); font-weight: 600; color: var(--color-text); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-secondary);
  color: var(--color-on-dark);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}
.site-footer__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.site-footer__brand { display: flex; flex-direction: column; gap: 1rem; max-width: 34ch; }
.site-footer__tagline { font-family: var(--font-primary); font-size: 1.35rem; color: var(--color-on-dark); }
.site-footer p { color: color-mix(in srgb, var(--color-on-dark) 78%, transparent); font-size: 0.95rem; max-width: none; }
.footer-col__title {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-on-dark) 70%, transparent);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: color-mix(in srgb, var(--color-on-dark) 88%, transparent); font-size: 0.96rem; transition: color var(--motion-duration) var(--motion-ease); }
.footer-col a:hover { color: var(--color-accent); }
.footer-col i { color: var(--color-accent); margin-right: 0.4rem; }
.site-footer__base {
  max-width: var(--shell);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: 1.6rem var(--gutter) 0;
  border-top: 1px solid color-mix(in srgb, var(--color-on-dark) 14%, transparent);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--color-on-dark) 64%, transparent);
}
.site-footer__base a { color: color-mix(in srgb, var(--color-on-dark) 78%, transparent); }
.site-footer__base a:hover { color: var(--color-accent); }

/* ============================================================
   Disclaimer / generic prose
   ============================================================ */
.prose { max-width: 70ch; margin-inline: auto; }
.prose p { max-width: none; margin-top: 1.1rem; color: var(--color-text-secondary); }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 64vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-block: 4rem; }
.notfound__inner { max-width: 46ch; }
.notfound .display { color: var(--color-primary); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .connect { grid-template-columns: 1fr; }
  .guide-feature { grid-template-columns: 1fr; }
  .guide-feature__cover { order: -1; }
}

@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; height: 68px; }
  .nav__seal { justify-self: start; }
  .nav__seal img { height: 60px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { min-height: 320px; }
  .faq-grid { grid-template-columns: 1fr; }
  .notes { grid-template-columns: repeat(2, 1fr); }
  .note, .note--wide, .note--tall, .note--narrow { grid-column: span 2; }

  /* Promise collapses but keeps the bleed: drop the void column, image full-width below */
  .promise { grid-template-columns: 1fr; }
  .promise__void { display: none; }
  .promise__media { min-height: 300px; order: 2; }
  .promise__media img { width: 100%; position: absolute; }

  .founder { grid-template-columns: 1fr; }
  .founder__media { order: 2; max-width: 460px; }

  .story-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-split--reverse .story-split__media { order: 0; }

  .connect__aside .addr-label { max-width: 460px; }

  .event-card { flex-direction: column; }
  .event-card__date { flex-direction: row; align-items: baseline; gap: 0.4rem; width: auto; border-right: none; border-bottom: 1.5px solid var(--color-accent); padding: 0 0 0.6rem; }
}

@media (max-width: 768px) {
  .hero__headline { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  /* Rails stay horizontal — tile ~72% so the next peeks */
  .rail__track { grid-auto-columns: 72%; -webkit-overflow-scrolling: touch; }
  .rail--sets .rail__track { grid-auto-columns: 86%; }
  .broadsheet__body { columns: 1; column-rule: none; }
}

@media (max-width: 480px) {
  :root { --gutter: 1.25rem; }
  .rail__track { grid-auto-columns: 78%; }
  .quote-feature blockquote::before { left: -0.35em; font-size: 2.4em; }
  .notes { grid-template-columns: 1fr; }
  .note, .note--wide, .note--tall, .note--narrow { grid-column: span 1; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .site-header { transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .tile:hover .tile__media img, .guide-feature__cover:hover img { transform: none; }
}

/* 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;
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* 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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.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;
}
