/*
 * styles.css
 * Generated by scaffold-site.py — design tokens applied as custom properties.
 * Build agent: fill in layout, component, and typographic rules.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #6B1A2A;
  --color-primary-dark: #45111C;
  --color-oxblood: #45111C;
  --color-secondary: #1A3A4A;
  --color-accent: #C4A882;
  --color-bg: #F5F0E8;
  --color-surface: #EDE4D5;
  --color-text: #2A1418;
  --color-text-secondary: #5E4A44;
  --color-border: #D9CBB6;
  --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: 560ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  /* Storefront cart accent (shop.js reads this) — brand maroon, not the light sand */
  --lcrm-cart-accent: #6B1A2A;
}

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

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

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

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

a {
  color: var(--color-primary, inherit);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

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


/* ============================================================
   Layout — fill in during build
   ============================================================ */

/* ============================================================
   Components — fill in during build
   ============================================================ */

/* Contact form */
.contact-form {
  /* Styled to match the site — fill in during build */
}

/* ============================================================
   Gallery lightbox — scaffolded shared mechanism (binding default)
   Inert until a data-lightbox group container exists on the page.
   Restyle this chrome freely to match the brand; do not remove
   the mechanism. (frontend-design.md § "Gallery lightbox")
   ============================================================ */
.lightbox-zoomable {
  cursor: zoom-in;
}

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

/* ============================================================
   Shop — product description clamp + quick-view modal
   (progressive enhancement over shop.js; independent of the
   frozen shop-contract classes — safe to restyle, do not remove)
   ============================================================ */
.shop-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.shop-card-viewmore {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-family: var(--font-secondary, inherit);
  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,
.shop-card-viewmore:focus-visible {
  border-color: var(--color-accent);
}

.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);
  box-shadow: 0 20px 60px -12px color-mix(in srgb, var(--color-text) 35%, transparent);
  width: 100%;
  max-width: 640px;
  max-height: 86vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
}
.pdp-modal__media {
  background: color-mix(in srgb, var(--color-bg) 92%, var(--color-text) 8%);
  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;
}
.pdp-modal__price {
  font-family: var(--font-secondary, inherit);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
}
.pdp-modal__cta {
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 0.65rem 1.4rem;
  border: none;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-secondary, inherit);
  font-weight: 600;
  cursor: pointer;
}
.pdp-modal__cta:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.pdp-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  background: var(--color-bg);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--color-text) 20%, transparent);
  color: var(--color-text);
  border: none;
  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 {
  color: var(--color-accent);
}

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

/* ============================================================
   Frank's Stone Crab — printed grade register / conserva label system
   ============================================================ */

/* ---- Reveal-gating floor (content visible without JS) ---- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
body.reveal-ready .reveal { opacity: 1 !important; transform: none !important; }

/* ---- Typography scale ---- */
h1, h2, h3, h4 { font-family: var(--font-primary); font-weight: 600; color: var(--color-text); line-height: 1.1; }
.display, .h1 { font-weight: 900; }
p { max-width: 66ch; }

.eyebrow, .rubric {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-text-secondary);
}
.smallcaps { font-variant-caps: small-caps; letter-spacing: 0.04em; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---- Layout primitives ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.shell { width: min(1180px, 92vw); margin-inline: auto; }
.shell--narrow { width: min(760px, 92vw); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Teal hairline rule under section openers, draws once (motion signature) */
.underrule {
  display: block;
  height: 1px;
  background: var(--color-secondary);
  width: min(340px, 60%);
  margin-top: 1rem;
  transform-origin: left;
}
html.js .underrule { transform: scaleX(0); }
html.js .is-in > .underrule,
html.js .underrule.is-in { transform: scaleX(1); transition: transform var(--motion-duration-slow) var(--motion-ease); }
body.reveal-ready .underrule { transform: scaleX(1) !important; }

.section-opener { margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.section-opener h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-variant-caps: small-caps; letter-spacing: 0.04em; font-weight: 500; }

/* ---- Buttons / CTAs ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-secondary); font-weight: 600;
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.85rem 1.6rem; border-radius: 2px; text-decoration: none;
  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--filled { background: var(--color-primary); color: var(--color-bg); border: 1px solid var(--color-primary); }
.btn--filled:hover, .btn--filled:focus-visible { background: var(--color-oxblood); border-color: var(--color-oxblood); color: var(--color-bg); }
.btn--ghost { background: transparent; color: var(--color-primary); border: 1px solid var(--color-primary); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--color-primary); color: var(--color-bg); }

/* ============================================================
   Nav — centered-split masthead
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-secondary);
  overflow: visible;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.site-header.is-hidden { transform: translateY(-115%); }
.nav {
  width: min(1180px, 92vw); margin-inline: auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 84px; gap: 1.5rem;
}
.nav__logo { justify-self: center; display: inline-flex; align-items: center; }
.nav__logo img { height: 60px; width: auto; max-width: 180px; display: block; }
.nav__links { display: flex; gap: clamp(1rem, 2.5vw, 2rem); list-style: none; margin: 0; padding: 0; }
.nav__links--left { justify-self: start; }
.nav__right { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.nav__link {
  font-family: var(--font-secondary); font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--color-text);
  text-decoration: none; position: relative; white-space: nowrap; padding-block: 0.25rem;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--color-accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--color-text); font-size: 1.6rem; line-height: 1; padding: 0.25rem;
}
.nav__drawer { display: none; }

@media (max-width: 880px) {
  .nav { grid-template-columns: 1fr auto 1fr; height: 72px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__logo img { height: 48px; }
  .nav__drawer {
    display: flex; flex-direction: column; gap: 0.25rem;
    background: var(--color-bg); border-top: 1px solid var(--color-border);
    padding: 0.5rem 4vw 1.25rem;
  }
  .nav__drawer[hidden] { display: none; }
  .nav__drawer-link {
    font-family: var(--font-secondary); font-size: 1rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--color-text); text-decoration: none;
    padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--color-border);
  }
  .nav__drawer-link:hover { color: var(--color-primary); }
}

/* ============================================================
   Ribbon banner — CSS-drawn, quotes the logo ribbon
   ============================================================ */
.ribbon-band {
  position: relative;
  background: var(--color-primary);
  color: var(--color-bg);
  text-align: center;
  padding: clamp(1.1rem, 3vw, 1.9rem) clamp(2rem, 6vw, 4rem);
  width: min(760px, 86vw);
  margin: clamp(2rem, 5vw, 3.5rem) auto clamp(1.5rem, 4vw, 2.5rem);
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 50%, 100% 100%, 0 100%, 22px 50%);
}
.ribbon-band__text {
  font-family: var(--font-primary); font-weight: 600; font-variant-caps: small-caps;
  letter-spacing: 0.06em; font-size: clamp(1.35rem, 3.4vw, 2.3rem); line-height: 1.05;
  margin: 0; color: var(--color-bg); max-width: none;
}
.ribbon-band__sub {
  font-family: var(--font-secondary); font-size: 0.8125rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--color-accent); margin: 0.5rem 0 0; max-width: none;
}
/* ribbon fold shadows */
.ribbon-band::before, .ribbon-band::after {
  content: ''; position: absolute; top: 50%; width: 22px; height: 22px;
  background: var(--color-oxblood); z-index: -1;
}
.ribbon-band::before { left: -10px; transform: translateY(-50%) skewY(30deg); }
.ribbon-band::after { right: -10px; transform: translateY(-50%) skewY(-30deg); }
html.js .ribbon-band { clip-path: inset(0 100% 0 0); }
html.js .ribbon-band.is-in {
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 50%, 100% 100%, 0 100%, 22px 50%);
  transition: clip-path var(--motion-duration-slow) var(--motion-ease);
}
body.reveal-ready .ribbon-band {
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 50%, 100% 100%, 0 100%, 22px 50%) !important;
}

/* ============================================================
   Grade register — ascending stack of flat label plates
   ============================================================ */
.grade-register {
  position: relative;
  display: flex; flex-direction: column;
  padding-left: 20px;
}
.grade-register__rail {
  position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px;
  background: var(--color-secondary);
}
html.js .grade-register__rail { transform: scaleY(0); transform-origin: top; }
html.js .grade-register.is-in .grade-register__rail,
html.js .grade-register__rail.is-in { transform: scaleY(1); transition: transform 800ms var(--motion-ease); }
body.reveal-ready .grade-register__rail { transform: scaleY(1) !important; }

.grade-plate {
  --plate-bg: var(--color-bg);
  --plate-ink: var(--color-text);
  --plate-h: 118px;
  --name-size: 1.5rem;
  --claw: 66px;
  position: relative;
  display: grid; grid-template-columns: var(--claw) 1fr auto; align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  min-height: var(--plate-h);
  background: var(--plate-bg); color: var(--plate-ink);
  padding: clamp(0.9rem, 2vw, 1.4rem) clamp(1.1rem, 3vw, 2.25rem);
  border-radius: 2px;
  margin-bottom: 4px;
}
.grade-plate__rule {
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--color-primary); transform-origin: left;
}
html.js .grade-plate .grade-plate__rule { transform: scaleX(0); }
html.js .grade-plate.is-in .grade-plate__rule { transform: scaleX(1); transition: transform var(--motion-duration-slow) var(--motion-ease); }
body.reveal-ready .grade-plate__rule { transform: scaleX(1) !important; }

.label-window {
  margin: 0; width: var(--claw); height: calc(var(--claw) * 1.15);
  overflow: hidden; position: relative; border: 1px solid var(--color-secondary);
  background: var(--color-surface); border-radius: 2px;
}
.label-window img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  display: block; transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.label-window:hover img { transform: scale(1.05); }
.grade-plate__name {
  font-family: var(--font-primary); font-variant-caps: small-caps; letter-spacing: 0.03em;
  font-weight: 600; font-size: var(--name-size); line-height: 1; margin: 0; color: inherit;
}
.grade-plate__meta {
  font-family: var(--font-secondary); font-size: 0.9375rem; margin: 0.35rem 0 0;
  color: inherit; opacity: 0.82; max-width: 46ch;
}
.grade-plate__price { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.grade-plate__approx { display: block; font-family: var(--font-secondary); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.grade-plate__figure { font-family: var(--font-secondary); font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
.grade-plate__unit { font-family: var(--font-secondary); font-size: 0.9rem; opacity: 0.8; }

/* per-grade ground + scale (maroon→cream discrete plates) */
.grade-plate--floaters { --plate-bg: var(--color-bg);   --plate-ink: var(--color-text); --plate-h: 112px; --name-size: clamp(1.3rem,2.4vw,1.7rem); --claw: 60px; }
.grade-plate--medium   { --plate-bg: var(--color-surface); --plate-ink: var(--color-text); --plate-h: 128px; --name-size: clamp(1.5rem,2.8vw,2rem);   --claw: 70px; }
.grade-plate--large    { --plate-bg: color-mix(in srgb, var(--color-primary) 34%, var(--color-bg)); --plate-ink: var(--color-text); --plate-h: 150px; --name-size: clamp(1.8rem,3.4vw,2.5rem); --claw: 82px; }
.grade-plate--jumbo    { --plate-bg: color-mix(in srgb, var(--color-primary) 82%, var(--color-bg)); --plate-ink: var(--color-bg); --plate-h: 180px; --name-size: clamp(2.1rem,4.4vw,3.2rem); --claw: 98px; }
.grade-plate--jumbo .grade-plate__meta,
.grade-plate--jumbo .grade-plate__desc,
.grade-plate--colossal .grade-plate__meta,
.grade-plate--colossal .grade-plate__desc { opacity: 0.95; }
.grade-plate--colossal { --plate-bg: var(--color-primary); --plate-ink: var(--color-bg); --plate-h: 214px; --name-size: clamp(2.6rem,6vw,4.6rem); --claw: 116px; }
.grade-plate--jumbo .label-window,
.grade-plate--colossal .label-window { border-color: var(--color-accent); }
.grade-plate--jumbo .grade-plate__rule,
.grade-plate--colossal .grade-plate__rule { background: var(--color-accent); }

.grade-plate__desc { display: none; }
.grade-register--full .grade-plate { --plate-h: auto; padding-block: clamp(1.4rem, 3vw, 2.2rem); align-items: start; }
.grade-register--full .grade-plate__desc {
  display: block; font-family: var(--font-secondary); font-size: 0.95rem;
  margin: 0.5rem 0 0; color: inherit; opacity: 0.85; max-width: 52ch;
}

/* ============================================================
   Home — From the Boat dispatch (margin ledger)
   ============================================================ */
.dispatch { display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.dispatch__margin { border-right: 1px solid var(--color-secondary); padding-right: clamp(1rem, 2vw, 1.5rem); }
.dispatch__margin .rubric { display: block; }
.dispatch__dateline {
  font-family: var(--font-secondary); font-variant-numeric: tabular-nums; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-secondary);
  margin-top: 1rem; padding-top: 0.75rem; border-top: 2px solid var(--color-accent); display: inline-block;
}
.dispatch__body > * + * { margin-top: 1.15rem; }
.dispatch__lead { font-family: var(--font-primary); font-size: clamp(1.35rem, 2.6vw, 1.85rem); line-height: 1.35; font-weight: 500; color: var(--color-text); }

/* ============================================================
   The Practice — pull-quote over water
   ============================================================ */
.practice { position: relative; }
.practice__media { position: relative; overflow: hidden; border-radius: 2px; }
.practice__media img { width: 100%; height: clamp(320px, 46vw, 520px); object-fit: cover; object-position: center; display: block; }
.practice__quote {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.75rem, 6vw, 4.5rem);
  background: linear-gradient(90deg, color-mix(in srgb, var(--color-oxblood) 78%, transparent) 0%, color-mix(in srgb, var(--color-oxblood) 30%, transparent) 70%, transparent 100%);
}
.practice__quote blockquote {
  font-family: var(--font-primary); font-weight: 500; color: var(--color-bg);
  font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.2; margin: 0; max-width: 20ch; text-wrap: balance;
}
.practice__caption { font-family: var(--font-secondary); color: var(--color-bg); font-size: 0.9rem; margin-top: 1.25rem; max-width: 44ch; padding-top: 0.6rem; border-top: 1px solid var(--color-accent); display: inline-block; }

/* ============================================================
   Environmental still — the one full-bleed photo
   ============================================================ */
.env-still { position: relative; overflow: hidden; }
.env-still img { width: 100%; height: clamp(360px, 60vw, 640px); object-fit: cover; object-position: center 40%; display: block; }
.env-still::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 55%, color-mix(in srgb, var(--color-oxblood) 60%, transparent) 100%);
}
.env-still__caption {
  position: absolute; left: clamp(1.25rem, 4vw, 3rem); bottom: clamp(1.1rem, 3vw, 2rem);
  font-family: var(--font-primary); color: var(--color-bg); z-index: 1;
  font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 500; letter-spacing: 0.01em; margin: 0;
}

/* ============================================================
   Ledger slate (order teaser + grade table)
   ============================================================ */
.slate { background: var(--color-surface); border-radius: 2px; padding: clamp(1.75rem, 4vw, 3rem); }
.ledger { width: 100%; border-collapse: collapse; }
.ledger caption { text-align: left; }
.ledger th, .ledger td { text-align: left; padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--color-secondary); }
.ledger th { font-family: var(--font-secondary); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-secondary); }
.ledger td { font-family: var(--font-secondary); font-variant-numeric: tabular-nums; }
.ledger .ledger__grade { font-family: var(--font-primary); font-variant-caps: small-caps; font-size: 1.15rem; letter-spacing: 0.03em; }
.ledger tr:hover td, .ledger tbody tr:hover td { border-bottom-color: var(--color-primary); }
.ledger__price { text-align: right; font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.slate__note {
  font-family: var(--font-secondary); font-size: 0.85rem; color: var(--color-text);
  background: var(--color-accent); border-radius: 2px; padding: 0.6rem 1rem; margin-top: 1.5rem; display: inline-block; max-width: none;
}
.slate__actions { margin-top: 1.75rem; }

/* ============================================================
   Numbered index opener (grades page)
   ============================================================ */
.index-opener h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.01em; }
.index-numbers {
  font-family: var(--font-secondary); font-variant-numeric: tabular-nums; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-secondary); margin-top: 1rem;
}
.index-numbers b { color: var(--color-primary); }
.index-lead { font-family: var(--font-primary); font-size: clamp(1.3rem, 2.6vw, 1.75rem); font-weight: 500; margin-top: 1.5rem; color: var(--color-text); }

/* ============================================================
   Floater callout — sand ground band
   ============================================================ */
.floater-band {
  background: var(--color-accent);
  border-top: 1px solid var(--color-secondary); border-bottom: 1px solid var(--color-secondary);
}
.floater-band h2 { color: var(--color-text); font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.floater-band p { color: var(--color-text); }
.floater-band__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 180px); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.floater-band__inset { overflow: hidden; border: 1px solid var(--color-secondary); border-radius: 2px; aspect-ratio: 4/5; }
.floater-band__inset img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }

/* ============================================================
   Season / pricing note strip
   ============================================================ */
.season-note {
  display: flex; align-items: flex-start; gap: 1rem; padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--color-secondary); border-radius: 2px; background: var(--color-surface);
}
.season-note i { color: var(--color-secondary); font-size: 1.5rem; margin-top: 0.1rem; }
.season-note p { font-family: var(--font-secondary); font-variant-numeric: tabular-nums; margin: 0; }

/* ============================================================
   The Practice — full teal field (about)
   ============================================================ */
.teal-field { background: var(--color-secondary); color: var(--color-bg); }
.teal-field h2, .teal-field .h2 { color: var(--color-bg); font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.teal-field p { color: var(--color-bg); opacity: 0.92; }
.teal-field__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.teal-field__inset { overflow: hidden; border: 1px solid var(--color-accent); border-radius: 2px; }
.teal-field__inset img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.teal-field .underrule { background: var(--color-accent); }

/* ============================================================
   Margin ledger (about — Kyle's story)
   ============================================================ */
.story { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.story__margin { border-right: 1px solid var(--color-secondary); padding-right: clamp(1rem, 2vw, 1.5rem); align-self: start; position: sticky; top: 110px; }
.story__fact { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
.story__fact:last-child { border-bottom: none; }
.story__fact-k { font-family: var(--font-secondary); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--color-text-secondary); display: block; }
.story__fact-v { font-family: var(--font-primary); font-size: 1.05rem; color: var(--color-text); font-variant-numeric: tabular-nums; }
.story__body > * + * { margin-top: 1.15rem; }
.story__lead { font-family: var(--font-primary); font-size: clamp(1.35rem, 2.6vw, 1.85rem); line-height: 1.35; font-weight: 500; color: var(--color-text); }

/* ============================================================
   Waterfront ambient strip
   ============================================================ */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; border-block: 1px solid var(--color-secondary); }
.strip__tile { overflow: hidden; position: relative; aspect-ratio: 3/4; }
.strip__tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.strip__tile:hover img { transform: scale(1.05); }
.strip__caption { font-family: var(--font-primary); font-size: 0.9rem; color: var(--color-text-secondary); padding: 1rem 0 0; }

/* ============================================================
   Contact / forms
   ============================================================ */
.two-col { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.factlist { list-style: none; margin: 0; padding: 0; }
.factlist li { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.factlist li:last-child { border-bottom: none; }
.fact__label { font-family: var(--font-primary); font-variant-caps: small-caps; letter-spacing: 0.04em; font-size: 1.15rem; color: var(--color-primary); display: block; }
.fact__value { font-family: var(--font-secondary); font-variant-numeric: tabular-nums; font-size: 1.05rem; margin-top: 0.2rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.fact__value a { color: var(--color-text); text-decoration: none; }
.fact__value a:hover { color: var(--color-primary); }
.fact__value i { color: var(--color-secondary); }

.contact-form {
  background: var(--color-surface); border-radius: 2px;
  padding: clamp(1.5rem, 4vw, 2.5rem); display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-form h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-family: var(--font-secondary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-secondary); }
.form-row input, .form-row textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text);
  background: var(--color-bg); border: none; border-bottom: 1px solid var(--color-secondary);
  padding: 0.7rem 0.5rem; border-radius: 2px 2px 0 0; width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-bottom-color: var(--color-primary);
  box-shadow: 0 1px 0 0 var(--color-primary);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   Shop — order header + product plate cards
   ============================================================ */
.shop-intro { text-align: center; }
.shop-intro p { margin-inline: auto; }

.shop-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
@media (min-width: 900px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
.shop-card {
  background: var(--color-surface); border: 1px solid var(--color-secondary);
  border-top: 4px solid var(--color-primary); border-radius: 2px; box-shadow: none;
  transition: border-color var(--motion-duration) var(--motion-ease);
  overflow: hidden;
}
.shop-card:hover { border-color: var(--color-secondary); border-top-color: var(--color-primary); }
.shop-card:hover .shop-card-image { transform: scale(1.04); }
.shop-card-media { aspect-ratio: 4/5; overflow: hidden; border-bottom: 1px solid var(--color-secondary); }
.shop-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.shop-card-body { padding: 1rem 1.1rem 1.25rem; gap: 0.5rem; }
.shop-card-title { font-family: var(--font-primary); font-variant-caps: small-caps; letter-spacing: 0.03em; font-weight: 600; font-size: 1.3rem; color: var(--color-text); }
.shop-card-price { font-family: var(--font-secondary); font-weight: 600; font-variant-numeric: tabular-nums; color: var(--color-primary); font-size: 1.05rem; }
.shop-card-cta {
  margin-top: 0.75rem; align-self: flex-start;
  background: var(--color-primary); color: var(--color-bg); border: none; border-radius: 2px;
  font-family: var(--font-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.8125rem; padding: 0.7rem 1.3rem; cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease);
}
.shop-card-cta:hover:not(:disabled) { background: var(--color-oxblood); }
.shop-card--unavailable .shop-card-media { filter: grayscale(1); opacity: 0.55; }
.shop-card--unavailable .shop-card-cta { background: var(--color-text-secondary); cursor: not-allowed; }

.shop-categories { display: flex; gap: 1.5rem; overflow-x: auto; scrollbar-width: none; margin-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.shop-categories::-webkit-scrollbar { display: none; }
.shop-category {
  background: none; border: none; cursor: pointer; white-space: nowrap;
  font-family: var(--font-secondary); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-text); padding: 0.75rem 0.25rem; border-bottom: 2px solid transparent;
}
.shop-category.is-active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

/* shop state machine */
#shop-root { display: block; min-height: 240px; }
#shop-root[data-shop-state="loading"] .shop-loading { display: block; }
.shop-loading {
  font-family: var(--font-secondary); color: var(--color-text-secondary); text-align: center;
  padding: 3rem 1rem;
}
#shop-root[data-shop-state="ready"] .shop-loading { display: none; }
#shop-root[data-shop-state="empty"] .shop-loading,
#shop-root[data-shop-state="error"] .shop-loading { display: none; }
#shop-root[data-shop-state="empty"] .shop-empty-default {
  display: block; font-family: var(--font-primary); font-size: 1.2rem; color: var(--color-text);
  text-align: center; padding: 3rem 1rem;
}
#shop-root[data-shop-state="error"]::after {
  content: "The catch board’s offline for a moment — call +1 (813) 400-0788.";
  display: block; font-family: var(--font-secondary); color: var(--color-primary);
  text-align: center; padding: 3rem 1rem; border-left: 3px solid var(--color-primary);
  background: var(--color-surface);
}
.shop-noscript { font-family: var(--font-secondary); text-align: center; padding: 2rem 1rem; color: var(--color-primary); }

/* ============================================================
   Footer — deep oxblood, ribbon watermark
   ============================================================ */
.site-footer { position: relative; background: var(--color-oxblood); color: var(--color-bg); overflow: hidden; }
.site-footer::before {
  content: ''; position: absolute; top: -40px; right: -30px; width: 320px; height: 120px;
  background: color-mix(in srgb, var(--color-bg) 6%, transparent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 50%, 100% 100%, 0 100%, 30px 50%);
  pointer-events: none;
}
.footer__inner {
  width: min(1180px, 92vw); margin-inline: auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 4rem); align-items: start;
}
.footer__logo { height: 52px; width: auto; max-width: 160px; }
.footer__heading { font-family: var(--font-primary); font-variant-caps: small-caps; letter-spacing: 0.05em; font-weight: 600; font-size: 1.05rem; color: var(--color-accent); margin-bottom: 0.9rem; }
.footer__col a, .footer__col p { color: var(--color-bg); font-family: var(--font-secondary); font-size: 0.95rem; text-decoration: none; display: block; margin: 0.45rem 0; }
.footer__col a { transition: color var(--motion-duration) var(--motion-ease); }
.footer__col a:hover { color: var(--color-accent); }
.footer__col .tabular { font-variant-numeric: tabular-nums; }
.footer__col i { color: var(--color-accent); margin-right: 0.4rem; }
.footer__social-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.footer__social-row a { display: inline-flex; margin: 0; font-size: 1.5rem; color: var(--color-bg); }
.footer__social-row a:hover { color: var(--color-accent); }
.footer__season { font-variant-numeric: tabular-nums; font-size: 0.85rem !important; color: var(--color-accent) !important; }
.footer__base {
  position: relative; z-index: 1; border-top: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
  width: min(1180px, 92vw); margin-inline: auto; padding-block: 1.25rem;
}
.footer__base p { font-family: var(--font-secondary); font-size: 0.8rem; color: color-mix(in srgb, var(--color-bg) 80%, transparent); margin: 0; max-width: none; }

/* ============================================================
   Lightbox brand chrome overrides (restyle scaffolded mechanism)
   ============================================================ */
.lightbox__scrim { background: color-mix(in srgb, var(--color-oxblood) 88%, transparent); }
.lightbox__close, .lightbox__prev, .lightbox__next { background: var(--color-bg); color: var(--color-primary); border-radius: 2px; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover,
.lightbox__close:focus-visible, .lightbox__prev:focus-visible, .lightbox__next:focus-visible { background: var(--color-primary); color: var(--color-bg); }
.lightbox__caption, .lightbox__counter { color: var(--color-bg); font-family: var(--font-secondary); }
.lightbox__img { border: 3px solid var(--color-bg); }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .ribbon-band { clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 50%, 100% 100%, 0 100%, 22px 50%); }
  html.js .grade-plate .grade-plate__rule,
  html.js .grade-register__rail,
  html.js .underrule { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  .dispatch, .story, .teal-field__grid, .floater-band__grid, .two-col { grid-template-columns: 1fr; }
  .dispatch__margin, .story__margin { border-right: none; border-bottom: 1px solid var(--color-secondary); padding-right: 0; padding-bottom: 1.25rem; position: static; }
  .strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .grade-plate { grid-template-columns: var(--claw) 1fr; grid-template-areas: "window name" "window price"; row-gap: 0.4rem; }
  .grade-plate .label-window { grid-area: window; }
  .grade-plate__body { grid-area: name; }
  .grade-plate__price { grid-area: price; text-align: left; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 400px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   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;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  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: 900;
  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: 900;
  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;
}
