/*
 * Silver State Woodworking — styles.css
 * Warm high-desert workshop editorial. Fraunces + Hanken Grotesk.
 * One tan-gold accent gesture (grow-from-left underline) recurs sitewide.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #664536;       /* Deep Walnut */
  --color-primary-dark: #4A3125;  /* Roasted Walnut */
  --color-primary-light: #DCC8AC; /* Sanded Oak */
  --color-secondary: #727866;     /* Sage Olive */
  --color-accent: #B88A5A;        /* Warm Tan Gold */
  --color-bg: #F7F3EB;            /* Cream */
  --color-surface: #E7D7BF;       /* Light Tan */
  --color-text: #252525;          /* Ink */
  --color-text-secondary: #5A5147;/* Warm Taupe */
  --color-on-primary: #F7F3EB;    /* Cream on Walnut */
  --color-border: #DBCBB2;        /* Soft Tan Line */

  --font-primary: 'Fraunces', Georgia, serif;
  --font-secondary: 'Hanken Grotesk', system-ui, sans-serif;
  --font-size-base: 16px;

  --spacing-base: 8px;
  --shell-max: 1320px;
  --nav-height: 76px;

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

/* ============================================================
   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, sans-serif);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
}

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

a { color: var(--color-primary); }

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

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

/* ============================================================
   Typographic Base
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-primary);
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: -0.01em;
}
p { max-width: 65ch; }

.eyebrow,
.label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;      /* 13px floor */
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.shell {
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4.5rem);
  width: 100%;
}

/* ============================================================
   CTA / Buttons — restrained, the design wins not the button
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease);
}
.btn i { font-size: 1.05em; transition: transform var(--motion-duration) var(--motion-ease); }
.btn:hover i { transform: translateX(3px); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.btn--primary:hover { background: var(--color-primary-dark); }

.btn--inverse {
  background: transparent;
  color: var(--color-on-primary);
  border-color: rgba(247, 243, 235, 0.55);
}
.btn--inverse:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text);
}

/* Text link with grow-from-left underline — the site's one accent gesture */
.link-underline {
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  height: 1px; width: 0;
  background: var(--color-accent);
  transition: width var(--motion-duration) var(--motion-ease);
}
.link-underline:hover::after { width: 100%; }

/* ============================================================
   Navigation — centered logo, split menu
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  height: var(--nav-height);
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.nav.is-scrolled { border-bottom-color: var(--color-border); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.6vw, 2rem);
  list-style: none;
}
.nav__links--right { justify-content: flex-end; }

.nav__link {
  position: relative;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;       /* 13px uppercase floor */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  padding-block: 0.35rem;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--color-accent);
  transition: width var(--motion-duration) var(--motion-ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--color-primary-dark); }

.nav__brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__brand img {
  height: 54px;               /* well above 32px floor */
  width: auto;
  max-width: 200px;
  display: block;
  /* melt the logo's white field into the cream nav without editing the file */
  mix-blend-mode: multiply;
}

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

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-top: 1px solid var(--color-accent);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__brand-mark {
  display: inline-block;
  background: var(--color-bg);
  padding: 8px 12px;
  margin-bottom: 1.1rem;
}
.footer__brand-mark img {
  height: 40px;               /* above 28px floor */
  width: auto;
  max-width: 160px;
  display: block;
}
.footer__dateline {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}
.footer .footer__h {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 1.1rem;
}
.footer__list { list-style: none; display: grid; gap: 0.7rem; }
.footer__list a,
.footer__contact a {
  color: var(--color-on-primary);
  text-decoration: none;
  position: relative;
}
.footer__list a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--color-accent);
  transition: width var(--motion-duration) var(--motion-ease);
}
.footer__list a:hover::after { width: 100%; }
.footer__contact { display: grid; gap: 0.8rem; }
.footer__contact li {
  display: flex; align-items: center; gap: 0.65rem;
  list-style: none;
  color: var(--color-bg);
}
.footer__contact i { color: var(--color-accent); font-size: 1.1rem; }
.footer__contact a:hover { color: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid rgba(247, 243, 235, 0.18);
  padding-block: 1.4rem;
  font-size: 0.85rem;
  color: var(--color-primary-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ============================================================
   Reveal animation (behavior)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 300ms; }
.reveal[data-delay="4"] { transition-delay: 400ms; }

/* ============================================================
   Hero — edge-bleed split
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 56fr 44fr;
  min-height: 82vh;
}
.hero--flip { grid-template-columns: 44fr 56fr; }
.hero--short { min-height: 68vh; }

.hero__media {
  position: relative;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero--flip .hero__media { order: 2; }
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.5rem, 4.5vw, 4.5rem);
  background: var(--color-bg);
  transform: translateY(5%);  /* the composition: baseline dropped below image top */
}
.hero--flip .hero__panel { order: 1; }

.hero__eyebrow {
  align-self: flex-start;
  padding-bottom: 8px;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--color-accent);
}
.hero__headline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--color-text);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  font-optical-sizing: auto;
}
.hero__headline .cadence { display: block; }
.hero__headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary);
}
.hero__sub {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 40ch;
  margin-bottom: clamp(2rem, 4vw, 2.6rem);
}
.hero__cta { align-self: flex-start; }

/* ============================================================
   Section scaffolding
   ============================================================ */
/* Text-side children of column splits — prevent grid min-width:auto overflow */
.hero__panel,
.maker__text,
.range__label,
.process__steps,
.broadsheet__primary,
.broadsheet__secondary,
.feature__label,
.rangelist__rows,
.pstep__body-wrap,
.contact__intro,
.contact__form-wrap,
.closing__inner,
.proof__inner { min-width: 0; }

.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--surface { background: var(--color-surface); }
.section--cream { background: var(--color-bg); }

.section__head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head .eyebrow { display: inline-block; margin-bottom: 1rem; }
.section__title {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  color: var(--color-text);
}
.lead {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 52ch;
}

/* ============================================================
   Maker intro (home) — signed section
   ============================================================ */
.maker {
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.maker__text {
  display: flex;
  flex-direction: column;
  padding-block: clamp(1rem, 2vw, 2rem);
}
.maker__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.14;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.maker__title em { font-style: italic; color: var(--color-primary); }
.maker__body { color: var(--color-text-secondary); margin-bottom: 1.4rem; }
.maker__body + .maker__body { margin-top: -0.4rem; }
.maker__signature {
  margin-top: auto;
  padding-top: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--color-primary);
  line-height: 1.1;
}
.maker__signature span {
  display: block;
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 0.6rem;
}
.maker__figure {
  position: relative;
  min-height: 60vh;
  padding: clamp(0.75rem, 2vw, 1.5rem);
}
.maker__figure::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: calc(100% - clamp(1.5rem, 4vw, 3rem));
  border: 1px solid var(--color-accent);
  pointer-events: none;
}
.maker__figure .frame {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  margin-left: clamp(1.5rem, 4vw, 3rem);
}
.maker__figure img {
  width: 100%; height: 100%;
  min-height: 60vh;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.maker__figure:hover img { transform: scale(1.045); }

/* ============================================================
   Range rail (home) — museum planes + honest text cards
   ============================================================ */
.range__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 42vw);
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  scrollbar-width: thin;
}
.range__item {
  scroll-snap-align: start;
  border-right: 1px solid var(--color-border);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 62vh;
}
.range__item:last-child { border-right: none; }

.piece__media { overflow: hidden; position: relative; }
.piece__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.piece__media:hover img { transform: scale(1.05); }

.range__label {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: var(--color-bg);
}
.range__label .label { display: block; margin-bottom: 0.5rem; }
.range__label h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.range__label p { color: var(--color-text-secondary); font-size: 0.95rem; max-width: 34ch; }

/* text-forward card over faint grain */
.range__item--text {
  position: relative;
  background: var(--color-bg);
}
.range__item--text .grain {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: saturate(0.85);
}
.range__item--text .range__label {
  position: relative;
  background: transparent;
  align-self: end;
}

/* ============================================================
   Process spine — oversized Sage numerals
   ============================================================ */
.process { position: relative; }
.process__intro { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.process__grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 340px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.process__steps { position: relative; }
.process__connector {
  position: absolute;
  left: calc(var(--spacing-base) * 3);
  top: 1.5rem; bottom: 1.5rem;
  width: 1px;
  background: var(--color-accent);
  opacity: 0.7;
}
.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: start;
  padding-block: clamp(1.6rem, 3.5vw, 2.6rem);
  position: relative;
}
.process__num {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(3.25rem, 7vw, 6rem);
  line-height: 0.82;
  color: var(--color-secondary);
  font-optical-sizing: auto;
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  padding-bottom: 0.15em;
}
.section--surface .process__num { background: var(--color-surface); }
.process__title {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-bottom: 0.6rem;
  padding-top: 0.4rem;
}
.process__body { color: var(--color-text-secondary); max-width: 60ch; }

.process__figure {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  overflow: hidden;
  transform: translateY(2.5rem);
}
.process__figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ============================================================
   Proof — single pull-quote with 40%+ negative space
   ============================================================ */
.proof { padding-block: clamp(5rem, 11vw, 9rem); }
.proof__inner { max-width: 60ch; margin-inline: auto; }
.proof__quote {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
  padding-left: clamp(1.4rem, 3vw, 2.4rem);
}
.proof__quote em { color: var(--color-primary); }
.proof__attr {
  margin-top: 1.6rem;
  padding-left: clamp(1.4rem, 3vw, 2.4rem);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* ============================================================
   Closing CTA — desert-ridge dark band (shared)
   ============================================================ */
.closing {
  position: relative;
  overflow: hidden;
  background: var(--color-primary-dark);
  color: var(--color-on-primary);
  text-align: center;
  padding-block: clamp(5rem, 12vw, 9.5rem);
  isolation: isolate;
}
.closing__bg {
  position: absolute;
  inset: -12% 0 0 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.34;
  z-index: -1;
  will-change: transform;
}
.closing::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,49,37,0.55), rgba(74,49,37,0.78));
  z-index: -1;
}
.closing__inner { max-width: 46ch; margin-inline: auto; }
.closing__eyebrow {
  display: inline-block;
  color: var(--color-primary-light);
  margin-bottom: 1.2rem;
}
.closing__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  color: var(--color-on-primary);
  margin-bottom: 1.2rem;
}
.closing__sub {
  color: rgba(247, 243, 235, 0.86);
  font-size: 1.1rem;
  margin-inline: auto;
  margin-bottom: 2.2rem;
}

/* ============================================================
   Grain divider band
   ============================================================ */
.grain-band {
  height: clamp(90px, 14vw, 170px);
  overflow: hidden;
  position: relative;
  border-block: 1px solid var(--color-border);
}
.grain-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   About — broadsheet 2-col
   ============================================================ */
.broadsheet__grid {
  display: grid;
  grid-template-columns: 65fr 35fr;
}
.broadsheet__primary {
  padding-right: clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid var(--color-border);
}
.broadsheet__secondary { padding-left: clamp(1.5rem, 3.5vw, 3rem); }
.broadsheet__headline {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.14;
  max-width: 20ch;
  margin-bottom: 1.6rem;
}
.broadsheet__body { color: var(--color-text-secondary); }
.broadsheet__body p + p { margin-top: 1.3rem; }
.broadsheet__pull {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
  padding-left: 1.4rem;
  margin-bottom: 2.5rem;
}
.broadsheet__pull em { color: var(--color-primary); }
.glance { list-style: none; display: grid; gap: 1.1rem; }
.glance li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--color-border);
}
.glance dt, .glance .g-k {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.glance .g-v { font-family: var(--font-primary); font-size: 1.2rem; color: var(--color-text); }

/* ============================================================
   Work — featured planes (alternating edge-bleed)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 78vh;
  border-bottom: 1px solid var(--color-border);
}
.feature--flip { grid-template-columns: 45fr 55fr; }
.feature__media { overflow: hidden; position: relative; background: var(--color-primary-dark); }
.feature--flip .feature__media { order: 2; }
.feature__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.feature__media:hover img { transform: scale(1.05); }
.feature__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--color-bg);
}
.feature--flip .feature__label { order: 1; }
.feature__label .label {
  display: inline-block;
  align-self: flex-start;
  padding-bottom: 6px;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--color-accent);
}
.feature__title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.feature__note { color: var(--color-text-secondary); margin-bottom: 1.6rem; max-width: 44ch; }
.feature__spec {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.feature__spec li { display: flex; gap: 0.7rem; align-items: baseline; }
.feature__spec i { color: var(--color-accent); font-size: 0.9rem; }

/* Full range — honest ruled list */
.rangelist {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.rangelist__rows { border-top: 1px solid var(--color-border); }
.rangelist__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding-block: clamp(1.3rem, 2.6vw, 1.9rem);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: 0;
  transition: padding-left var(--motion-duration) var(--motion-ease);
}
.rangelist__row::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--color-accent);
  transform: translateY(-50%);
  transition: width var(--motion-duration) var(--motion-ease);
}
.rangelist__row:hover { padding-left: 1.5rem; }
.rangelist__row:hover::before { width: 0.9rem; }
.rangelist__row h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.rangelist__row p { color: var(--color-text-secondary); font-size: 0.98rem; }
.rangelist__figure {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  overflow: hidden;
}
.rangelist__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.rangelist__figure figcaption {
  margin-top: 0.8rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* ============================================================
   Process page — numeral hero
   ============================================================ */
.process-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
  min-height: 62vh;
}
.process-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.process-hero__title em { font-style: italic; color: var(--color-primary); }
.process-hero__lead { margin-top: 1.6rem; }
.process-hero__eyebrow {
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--color-accent);
}
.process-hero__numeral {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(9rem, 26vw, 22rem);
  line-height: 0.8;
  color: var(--color-secondary);
  text-align: right;
  font-optical-sizing: auto;
  opacity: 0.9;
}

/* Process page steps — alternating image anchors */
.pstep {
  display: grid;
  grid-template-columns: auto 1fr minmax(0, 380px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--color-border);
}
.pstep--flip .pstep__figure { order: -1; }
.pstep__num {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.82;
  color: var(--color-secondary);
  font-optical-sizing: auto;
}
.pstep__body-wrap { max-width: 52ch; }
.pstep__title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 0.9rem; }
.pstep__body { color: var(--color-text-secondary); }
.pstep__figure { overflow: hidden; }
.pstep__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pstep--noimg { grid-template-columns: auto 1fr; }

/* ============================================================
   Contact — asymmetric split quote form
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 48fr 52fr;
  min-height: calc(100vh - var(--nav-height));
}
.contact__intro {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.5rem, 4.5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg);
}
.contact__grain {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.06;
  z-index: 0;
}
.contact__intro > * { position: relative; z-index: 1; }
.contact__eyebrow { display: inline-block; padding-bottom: 8px; margin-bottom: 1.3rem; border-bottom: 1px solid var(--color-accent); align-self: flex-start; }
.contact__title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 1.3rem;
}
.contact__lead { color: var(--color-text-secondary); margin-bottom: 2.2rem; max-width: 40ch; }
.contact__details { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.contact__details li { display: flex; align-items: center; gap: 0.85rem; color: var(--color-text); }
.contact__details i { color: var(--color-accent); font-size: 1.3rem; }
.contact__details a { color: var(--color-text); text-decoration: none; }
.contact__details a:hover { color: var(--color-primary); }
.contact__dateline {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.contact__form-wrap {
  background: var(--color-surface);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form { display: grid; gap: 1.6rem; width: 100%; }
.field { display: grid; gap: 0.5rem; position: relative; }
.field--row { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.field label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.field .input-wrap { position: relative; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 1rem;             /* 16px — no mobile zoom */
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.85rem 1rem;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
/* focus-grow underline — the site's accent gesture at the moment of contact */
.field .focus-bar {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--color-accent);
  transition: width var(--motion-duration) var(--motion-ease);
  pointer-events: none;
}
.field input:focus ~ .focus-bar,
.field select:focus ~ .focus-bar,
.field textarea:focus ~ .focus-bar { width: 100%; }
.contact-form .btn { justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.85rem; color: var(--color-text-secondary); }

/* ============================================================
   404
   ============================================================ */
.notfound {
  min-height: calc(100vh - var(--nav-height) - 42px);
  display: grid;
  place-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
}
.notfound__num {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 0.85;
  color: var(--color-secondary);
}
.notfound h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 1rem 0 1rem; }
.notfound p { margin-inline: auto; margin-bottom: 2rem; color: var(--color-text-secondary); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .broadsheet__grid { grid-template-columns: 1fr; }
  .broadsheet__primary {
    padding-right: 0; border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: clamp(2rem, 5vw, 3rem); margin-bottom: clamp(2rem, 5vw, 3rem);
  }
  .broadsheet__secondary { padding-left: 0; }
  .process__grid { grid-template-columns: 1fr; }
  .process__figure { display: none; }
  .rangelist { grid-template-columns: 1fr; }
  .rangelist__figure { display: none; }
  .pstep,
  .pstep--flip { grid-template-columns: auto 1fr; }
  .pstep__figure { grid-column: 1 / -1; order: 0; margin-top: 1.2rem; }
  .pstep--flip .pstep__figure { order: 0; }
  .process-hero { grid-template-columns: 1fr; min-height: auto; }
  .process-hero__numeral { text-align: left; margin-top: 1.5rem; }
}

@media (max-width: 900px) {
  /* Mobile nav: logo left, hamburger right, links stack into a drawer that pushes content */
  .nav {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: var(--nav-height);
    align-content: center;
    row-gap: 0;
  }
  .nav__brand { justify-self: start; grid-column: 1; grid-row: 1; align-self: center; }
  .nav__toggle { display: block; grid-column: 2; grid-row: 1; align-self: center; }
  .nav__links {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    width: 100%;
  }
  .nav__links--left { grid-row: 2; padding-top: 0.6rem; }
  .nav__links--right { grid-row: 3; padding-bottom: 1rem; }
  .nav[data-open="true"] .nav__links { display: flex; }
  .nav[data-open="true"] { padding-bottom: 0.6rem; }
  .nav__link { font-size: 1.05rem; padding-block: 0.7rem; }
  .nav__link::after { bottom: 0.35rem; }
}

@media (max-width: 768px) {
  .hero,
  .hero--flip { grid-template-columns: 1fr; grid-template-rows: 52vh auto; min-height: 0; }
  .hero__media,
  .hero--flip .hero__media { order: 0; position: relative; }
  .hero__media img { position: absolute; }
  .hero__panel,
  .hero--flip .hero__panel { order: 1; transform: none; padding-block: clamp(2.5rem, 8vw, 3.5rem); }

  .maker { grid-template-columns: 1fr; }
  .maker__figure { min-height: 50vh; }
  .maker__figure img { min-height: 50vh; }

  .range__rail { grid-auto-columns: 84vw; }
  .range__item { min-height: 56vh; }

  .feature,
  .feature--flip { grid-template-columns: 1fr; grid-template-rows: 46vh auto; min-height: 0; }
  .feature__media,
  .feature--flip .feature__media { order: 0; position: relative; }
  .feature__label,
  .feature--flip .feature__label { order: 1; }

  .contact { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .closing__bg { transform: none !important; }
  .piece__media:hover img,
  .feature__media:hover img,
  .maker__figure:hover img { transform: none; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdfeQ7ZXk8kD6.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdPeQ7ZXk8kD6.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjeveQ7ZXk8g.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdfeQ7ZXk8kD6.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdPeQ7ZXk8kD6.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjeveQ7ZXk8g.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 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: 700;
  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: 700;
  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: 700;
  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;
}
