/*
 * styles.css — HB Design
 * A sunny walk down a colorful Gulfport main street: warm, plainspoken, easy.
 * Palette locked (client brand_colors); imagery generated to match.
 * Design tokens applied by scaffold-site.py; full build by the Site Build Agent.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  /* Brand fields + inks (from color-palette.json — all four client inks verbatim) */
  --color-primary: #4A90D9;        /* Gulf-Sky Blue — dominant field */
  --color-primary-dark: #21507F;   /* Harbor Deep — body on blue */
  --color-primary-light: #DCEAF7;  /* Sky Wash — hairlines, outline numerals */
  --color-secondary: #2C2C2C;      /* Charcoal — dark field + type */
  --color-accent: #3ECF8E;         /* Sea-Glass Teal — rationed live accent */
  --color-bg: #F5F5F0;             /* Warm Paper — ground */
  --color-background: #F5F5F0;     /* alias */
  --color-surface: #FCFCFA;        /* Lifted Paper */
  --color-text: #2C2C2C;
  --color-text-secondary: #5A5A57; /* Warm Gray */
  --color-on-primary: #FFFFFF;     /* Paper White on blue/charcoal */
  --color-border: #DAD9D2;         /* Warm Hairline */

  --font-primary: 'Bricolage Grotesque', 'Hanken Grotesk', sans-serif;   /* display */
  --font-secondary: 'Hanken Grotesk', system-ui, sans-serif;             /* body */
  --font-size-base: 16px;
  --spacing-base: 8px;

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

  --shell: 1240px;      /* max content width */
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --nav-h: 72px;
  --nav-h-condensed: 56px;
}

/* ============================================================
   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, #ffffff);
  color: var(--color-text, #1a1a1a);
  line-height: 1.7;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--color-primary-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--font-primary); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; color: var(--color-text); }

::selection { background: var(--color-accent); color: var(--color-secondary); }

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

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

/* ============================================================
   Shared layout helpers
   ============================================================ */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.eyebrow { font-family: var(--font-secondary); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.6; color: var(--color-text-secondary); max-width: 60ch; }

/* Buttons — restrained, intentional. Teal field, charcoal ink (6.8:1). The design wins, not the button. */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-primary); font-weight: 600; font-size: 1rem;
  padding: 0.85em 1.5em; border: 2px solid transparent; border-radius: 3px;
  text-decoration: none; cursor: pointer; line-height: 1;
  transition: transform var(--motion-duration) var(--motion-ease), background-color var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease);
}
.btn--primary { background: var(--color-accent); color: var(--color-secondary); }
.btn--primary:hover { transform: translateY(-2px); background: #34b87d; }
.btn--ghost-dark { background: transparent; color: var(--color-on-primary); border-color: rgba(255,255,255,0.35); }
.btn--ghost-dark:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn .ph { font-size: 1.1em; transition: transform var(--motion-duration) var(--motion-ease); }
.btn:hover .ph { transform: translateX(3px); }

/* ============================================================
   Header / Nav — logo-left, menu-right; condenses like a lowered awning
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: border-color var(--motion-duration) var(--motion-ease), background-color var(--motion-duration) var(--motion-ease);
}
.site-header.is-condensed { border-bottom-color: var(--color-border); background: color-mix(in srgb, var(--color-bg) 97%, transparent); }

.nav {
  max-width: var(--shell); margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  transition: height var(--motion-duration-slow) var(--motion-ease);
}
.site-header.is-condensed .nav { height: var(--nav-h-condensed); }

.nav__brand { display: inline-flex; align-items: center; line-height: 0; flex-shrink: 0; }
.nav__logo {
  height: 40px; width: auto; max-width: 210px; display: block;
  transition: height var(--motion-duration-slow) var(--motion-ease);
}
.site-header.is-condensed .nav__logo { height: 32px; }

.nav__menu { list-style: none; display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.25rem); }
.nav__menu a {
  font-family: var(--font-secondary); font-size: 1rem; font-weight: 500; color: var(--color-text);
  text-decoration: none; letter-spacing: 0.005em; position: relative; padding-block: 0.35rem;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--color-accent); transition: width var(--motion-duration) var(--motion-ease);
}
.nav__menu a:not(.nav__cta):hover { color: var(--color-primary-dark); }
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--color-secondary); color: var(--color-on-primary) !important;
  padding: 0.55em 1.05em; border-radius: 3px;
}
.nav__cta:hover { background: var(--color-primary-dark); }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--color-text); line-height: 0; padding: 0.25rem;
}

/* ============================================================
   Footer — charcoal three-column band; contact facts like a neighbor's card
   ============================================================ */
.site-footer { background: var(--color-secondary); color: #E9E9E4; }
.footer__inner {
  max-width: var(--shell); margin-inline: auto; padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2.5rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
}
.footer__logo { height: 44px; width: auto; max-width: 230px; margin-bottom: 1.1rem; }
.footer__brand p { color: #B9B9B4; max-width: 34ch; font-size: 0.98rem; }
.footer__label { font-family: var(--font-secondary); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { color: #E9E9E4; text-decoration: none; transition: color var(--motion-duration) var(--motion-ease); }
.footer__col a:hover { color: var(--color-accent); }
.footer__contact p { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; color: #D6D6D1; }
.footer__contact .ph { color: var(--color-accent); font-size: 1.1rem; flex-shrink: 0; }
.footer__base {
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: var(--shell); margin-inline: auto; padding: 1.25rem var(--gutter);
  font-size: 0.85rem; color: #ABABA6;
}

/* ============================================================
   HOME — Hero: the whole block (storefront mosaic + vacant tile)
   ============================================================ */
.hero {
  display: grid; grid-template-columns: 72fr 28fr; align-items: stretch;
  min-height: 88vh;
}
.hero__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px; padding: 6px 0 6px 6px;
  min-height: 88vh;
}
.mosaic__tile { position: relative; overflow: hidden; background: var(--color-primary-light); }
.mosaic__tile img { width: 100%; height: 100%; object-fit: cover; }
.mosaic__tile--anchor { grid-column: 1 / 3; grid-row: 1 / 2; }
.mosaic__tile--boutique { grid-column: 1 / 2; grid-row: 2 / 4; }
.mosaic__tile--coffee { grid-column: 2 / 3; grid-row: 2 / 4; }
.mosaic__tile--paddle { grid-column: 3 / 5; grid-row: 2 / 3; }
.mosaic__tile--market { grid-column: 3 / 5; grid-row: 3 / 4; }

/* The vacant tile — an empty shopfront window AND a browser window: your spot */
.mosaic__vacant {
  grid-column: 3 / 5; grid-row: 1 / 2;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  display: flex; flex-direction: column;
  padding: 0; overflow: hidden;
}
.vacant__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-primary-light) 50%, var(--color-surface));
}
.vacant__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-border); }
.vacant__dot:first-child { background: var(--color-accent); }
.vacant__body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0.6rem; padding: clamp(1rem, 2vw, 1.75rem); }
.vacant__mark { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.03em; color: var(--color-secondary); }
.vacant__mark b { color: var(--color-primary); font-weight: 800; }
.vacant__line { font-size: 1rem; color: var(--color-text-secondary); max-width: 24ch; }
.vacant__cta { align-self: flex-start; margin-top: 0.4rem; }

.hero__type {
  background: var(--color-bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem) clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 3.5vw, 3.5rem);
  min-width: 0;
}
.hero__title { font-size: clamp(2.4rem, 4.2vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
.hero__title em { font-style: normal; color: var(--color-primary); }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; color: var(--color-text-secondary); max-width: 42ch; }
.hero__meta { margin-top: 1.8rem; display: flex; align-items: center; gap: 0.55rem; font-size: 0.95rem; color: var(--color-text-secondary); }
.hero__meta .ph { color: var(--color-accent); }

/* The street wakes up once — tiles illuminate left-to-right on first paint, then hold. */
.mosaic__cell { opacity: 1; }
html.js .hero__mosaic > * { opacity: 0; transform: scale(1.02); animation: tile-wake var(--motion-duration-slow) var(--motion-ease) forwards; }
html.js .hero__mosaic > *:nth-child(1) { animation-delay: 60ms; }
html.js .hero__mosaic > *:nth-child(2) { animation-delay: 150ms; }
html.js .hero__mosaic > *:nth-child(3) { animation-delay: 240ms; }
html.js .hero__mosaic > *:nth-child(4) { animation-delay: 330ms; }
html.js .hero__mosaic > *:nth-child(5) { animation-delay: 420ms; }
html.js .hero__mosaic > *:nth-child(6) { animation-delay: 510ms; }
@keyframes tile-wake { to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  html.js .hero__mosaic > * { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   HOME — The Promise: one sentence, 40% silence
   ============================================================ */
.promise { background: var(--color-bg); }
.promise__inner { max-width: 62%; }
.promise__text { font-family: var(--font-primary); font-weight: 600; font-size: clamp(1.9rem, 4vw, 3.4rem); line-height: 1.12; letter-spacing: -0.02em; }
.promise__text b { color: var(--color-primary); font-weight: 600; }
.promise__rule { height: 2px; width: min(320px, 60%); background: var(--color-primary-light); margin-top: 2.5rem; }

/* ============================================================
   HOME — How It Works: 01/02/03 numerals as the seam (blue field)
   ============================================================ */
.process {
  position: relative; background: var(--color-primary); color: var(--color-on-primary);
  overflow: visible; padding-block: clamp(5.5rem, 9vw, 9rem) clamp(4rem, 7vw, 7rem);
}
.process__grid { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1.55fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.process__head { grid-column: 1 / -1; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.process__head h2 { color: var(--color-on-primary); font-size: clamp(1.9rem, 3.4vw, 3rem); }
.process__head p { display: inline-block; background: var(--color-primary-dark); color: #EAF1FA; padding: 0.55rem 0.95rem; border-radius: 4px; margin-top: 1rem; max-width: 48ch; }
.process__steps { display: flex; flex-direction: column; gap: clamp(1.5rem, 3vw, 2.75rem); }
.step { display: flex; align-items: flex-start; gap: clamp(1rem, 2.5vw, 2rem); }
.step__num {
  font-family: var(--font-primary); font-weight: 800;
  font-size: clamp(4.5rem, 9vw, 8.5rem); line-height: 0.8; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 3px var(--color-primary-dark); flex-shrink: 0;
  margin-top: -0.35em; /* overhang / seam feel */
}
.step__body { padding-top: 0.4rem; }
.step__body h3 { color: var(--color-on-primary); font-size: 1.35rem; display: flex; align-items: center; gap: 0.5rem; }
.step__body h3 .ph { color: var(--color-accent); font-size: 1.1rem; }
.step__panel { background: var(--color-primary-dark); border-radius: 4px; padding: 0.9rem 1.1rem; margin-top: 0.7rem; max-width: 42ch; }
.step__panel p { color: #EAF1FA; font-size: 1rem; line-height: 1.6; }
.process__photo { position: relative; align-self: stretch; min-height: 260px; border-radius: 4px; overflow: hidden; box-shadow: 0 18px 50px -20px rgba(0,0,0,0.5); }
.process__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

/* ============================================================
   HOME — Gulfport, Online: gallery wall with an inline-headline tile
   ============================================================ */
.gallery { background: var(--color-bg); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 20vw, 240px);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.gallery__headcell {
  grid-column: 1 / 2; grid-row: 1 / 2; display: flex; flex-direction: column; justify-content: center; padding-right: 1rem;
}
.gallery__headcell .eyebrow { margin-bottom: 0.6rem; }
.gallery__headcell h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.gallery__tile { position: relative; overflow: hidden; border-radius: 3px; }
.gallery__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.gallery__tile:hover img { transform: scale(1.05); }
.gallery__tile--tall { grid-row: span 2; }
.gallery__tile--wide { grid-column: span 2; }

/* ============================================================
   HOME — The Outcome: teal-blue Gulf water, full-bleed texture ground
   ============================================================ */
.outcome { position: relative; min-height: 62vh; display: grid; align-items: center; overflow: hidden; color: var(--color-on-primary); }
.outcome__bg { position: absolute; inset: 0; z-index: 0; }
.outcome__bg img { width: 100%; height: 100%; object-fit: cover; }
.outcome__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(33,80,127,0.72) 0%, rgba(33,80,127,0.35) 60%, rgba(33,80,127,0.15) 100%); }
.outcome__inner { position: relative; z-index: 1; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.outcome__text { max-width: 20ch; font-size: clamp(2rem, 4vw, 3.4rem); color: var(--color-on-primary); text-shadow: 0 2px 20px rgba(20,40,60,0.4); }
.outcome__sub { margin-top: 1.2rem; max-width: 46ch; color: #EAF1FA; font-size: 1.15rem; line-height: 1.6; }

/* ============================================================
   Closers (charcoal) + lead form
   ============================================================ */
.closer { background: var(--color-secondary); color: var(--color-on-primary); }
.closer--home .closer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.closer__invite h2 { color: var(--color-on-primary); font-size: clamp(2rem, 3.6vw, 3.2rem); }
.closer__invite p { color: #C7C7C2; margin-top: 1rem; max-width: 40ch; }

/* Contact form (partner.js wires .contact-form) */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form.on-dark { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: 5px; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: var(--font-secondary); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; }
.contact-form.on-dark .field label { color: #E4E4DF; }
.field input, .field textarea, .field select {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text);
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 3px;
  padding: 0.75rem 0.9rem; width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(74,144,217,0.25);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 0.3rem; }

/* ============================================================
   Interior hero — edge-bleed split (Services & About)
   ============================================================ */
.hero-split { display: grid; grid-template-columns: 58fr 42fr; min-height: 80vh; }
.hero-split--reverse { grid-template-columns: 42fr 58fr; }
.hero-split__media { position: relative; overflow: hidden; min-height: 44vh; }
.hero-split--reverse .hero-split__media { order: 2; }
.hero-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-split__type {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.75rem, 4vw, 4rem);
  background: var(--color-bg); min-width: 0;
}
.hero-split__type h1 { font-size: clamp(2.3rem, 4vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
.hero-split__type .lede { margin-top: 1.3rem; }
.hero-split__type .btn { align-self: flex-start; margin-top: 2rem; }

/* ============================================================
   Broadsheet two-column (Services "What We Do", About "The Studio")
   ============================================================ */
.broadsheet { background: var(--color-bg); border-top: 1px solid var(--color-border); }
.broadsheet__grid { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 63fr 37fr; gap: 0; }
.broadsheet__primary { padding-right: clamp(1.5rem, 4vw, 4rem); border-right: 1px solid var(--color-border); min-width: 0; }
.broadsheet__secondary { padding-left: clamp(1.5rem, 3vw, 3rem); min-width: 0; }
.broadsheet__label { font-family: var(--font-secondary); font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.25rem; font-weight: 600; }
.broadsheet__headline { font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.1; max-width: 20ch; margin-bottom: 1.5rem; }
.broadsheet__body { font-size: 1.075rem; line-height: 1.75; color: var(--color-text-secondary); max-width: 62ch; }
.broadsheet__body p + p { margin-top: 1.2rem; }
.broadsheet__pull { font-family: var(--font-primary); font-weight: 500; font-size: 1.3rem; line-height: 1.4; color: var(--color-text); border-left: 3px solid var(--color-accent); padding-left: 1.1rem; margin-top: 2rem; }

/* "you hand over / we handle" ledger */
.ledger { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.ledger li { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; }
.ledger .ph { color: var(--color-accent); font-size: 1.15rem; margin-top: 0.15rem; }
.ledger b { display: block; font-family: var(--font-primary); font-size: 1.02rem; }
.ledger span { color: var(--color-text-secondary); font-size: 0.97rem; }

/* ============================================================
   Services — How It Works (the one full teal field)
   ============================================================ */
.teal-field { background: var(--color-accent); color: var(--color-secondary); overflow: hidden; }
.teal-field__grid { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.teal-field__head { grid-column: 1 / -1; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.teal-field__head h2 { color: var(--color-secondary); font-size: clamp(1.9rem, 3.4vw, 3rem); }
.teal-field__head p { color: var(--color-secondary); margin-top: 0.75rem; max-width: 48ch; }
.tsteps { display: flex; flex-direction: column; gap: 1.6rem; }
.tstep { display: flex; gap: 1.1rem; align-items: baseline; border-top: 1px solid rgba(44,44,44,0.22); padding-top: 1.4rem; }
.tstep__n { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 0.9; color: var(--color-secondary); flex-shrink: 0; }
.tstep__b h3 { color: var(--color-secondary); font-size: 1.25rem; }
.tstep__b p { color: var(--color-secondary); margin-top: 0.35rem; max-width: 44ch; }
.teal-field__photo { border-radius: 4px; overflow: hidden; box-shadow: 0 18px 50px -22px rgba(20,60,45,0.55); align-self: stretch; min-height: 300px; }
.teal-field__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }

/* ============================================================
   Media-beside-text blocks (In the Studio / What You Get / About studio photo / contact form photo)
   ============================================================ */
.split { background: var(--color-bg); }
.split__grid { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__grid { grid-template-columns: 0.9fr 1.1fr; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 55px -28px rgba(44,44,44,0.5); }
.split__media img { width: 100%; height: auto; display: block; }
.split__body { min-width: 0; }
.split__body h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: 1.1rem; }
.split__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 1.1rem; }
.split__body p { color: var(--color-text-secondary); font-size: 1.05rem; line-height: 1.7; max-width: 54ch; }
.split__body p + p { margin-top: 1rem; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: 0.65rem; align-items: baseline; }
.checklist .ph { color: var(--color-accent); font-size: 1.1rem; }

/* ============================================================
   Services closer — the unwritten "04 · launch" outline numeral straddling the seam
   ============================================================ */
.launch { position: relative; background: var(--color-secondary); color: var(--color-on-primary); overflow: visible; padding-block: clamp(5rem, 8vw, 8rem); }
.launch__inner { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.launch__numwrap { position: relative; }
.launch__num {
  font-family: var(--font-primary); font-weight: 800;
  font-size: clamp(7rem, 16vw, 13rem); line-height: 0.72; letter-spacing: -0.03em;
  color: transparent; -webkit-text-stroke: 3px var(--color-primary-light);
  margin-top: -0.28em; display: block;
  transition: color var(--motion-duration-slow) var(--motion-ease), -webkit-text-stroke-color var(--motion-duration-slow) var(--motion-ease);
}
.launch:hover .launch__num, .launch:focus-within .launch__num { color: var(--color-accent); -webkit-text-stroke-color: var(--color-accent); }
.launch__nested { position: absolute; left: 50%; top: 58%; transform: translate(-50%,-50%); }
.launch__copy h2 { color: var(--color-on-primary); font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
.launch__copy p { color: #C7C7C2; margin-top: 0.9rem; max-width: 40ch; }
.launch__copy .btn { margin-top: 1.6rem; }
@media (prefers-reduced-motion: reduce) { .launch__num { transition: none; } }

/* ============================================================
   About — Who We Help (blue field with people)
   ============================================================ */
.audience { background: var(--color-primary); color: var(--color-on-primary); overflow: hidden; }
.audience__grid { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.audience__body h2 { color: var(--color-on-primary); font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 1.2rem; }
.audience__panel { background: var(--color-primary-dark); border-radius: 5px; padding: clamp(1.25rem, 2.5vw, 2rem); }
.audience__panel p { color: #EAF1FA; font-size: 1.08rem; line-height: 1.7; }
.audience__panel p + p { margin-top: 1rem; }
.audience__panel u { text-decoration-color: var(--color-accent); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.audience__media { border-radius: 5px; overflow: hidden; box-shadow: 0 24px 60px -28px rgba(15,45,80,0.7); }
.audience__media img { width: 100%; height: auto; }

/* ============================================================
   Texture band (About "How We Work" — dock wood)
   ============================================================ */
.texband { position: relative; min-height: 56vh; display: grid; align-items: center; overflow: hidden; color: var(--color-on-primary); }
.texband__bg { position: absolute; inset: 0; z-index: 0; }
.texband__bg img { width: 100%; height: 100%; object-fit: cover; }
.texband__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,24,16,0.72) 0%, rgba(30,24,16,0.35) 55%, rgba(30,24,16,0.12) 100%); }
.texband__inner { position: relative; z-index: 1; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.texband__text { max-width: 22ch; font-size: clamp(1.9rem, 3.6vw, 3.1rem); color: var(--color-on-primary); text-shadow: 0 2px 18px rgba(20,15,8,0.5); }
.texband__sub { margin-top: 1.1rem; max-width: 48ch; color: #F1EBE0; font-size: 1.12rem; line-height: 1.6; }

/* ============================================================
   About closer — a signed note from Henry
   ============================================================ */
.signoff { background: var(--color-secondary); color: var(--color-on-primary); }
.signoff__inner { max-width: 760px; }
.signoff__note { font-size: clamp(1.2rem, 2.2vw, 1.7rem); line-height: 1.55; color: #EDEDE8; font-family: var(--font-secondary); }
.signoff__note b { color: var(--color-on-primary); font-weight: 600; }
.signoff__sign { font-family: var(--font-primary); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4rem); color: var(--color-on-primary); margin-top: 2rem; letter-spacing: -0.02em; }
.signoff__rule { height: 3px; background: var(--color-accent); border-radius: 3px; margin-top: 0.6rem; width: min(280px, 70%); transform-origin: left center; }
html.js .signoff__rule { transform: scaleX(0); transition: transform var(--motion-duration-slow) var(--motion-ease); }
html.js .signoff__rule.is-drawn { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { html.js .signoff__rule { transform: scaleX(1); transition: none; } }
.signoff__cta { margin-top: 2rem; }

/* ============================================================
   Contact — hero band (short) + details (blue field)
   ============================================================ */
.ct-hero { position: relative; min-height: 55vh; display: grid; align-items: center; overflow: hidden; color: var(--color-on-primary); }
.ct-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ct-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.ct-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(33,80,127,0.7) 0%, rgba(33,80,127,0.3) 65%, rgba(33,80,127,0.1) 100%); }
.ct-hero__inner { position: relative; z-index: 1; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.ct-hero__chip { display: inline-block; background: var(--color-bg); color: var(--color-primary-dark); font-family: var(--font-secondary); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 3px; margin-bottom: 1rem; }
.ct-hero__title { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--color-on-primary); text-shadow: 0 2px 20px rgba(20,40,60,0.4); }
.ct-hero__sub { margin-top: 1rem; max-width: 42ch; color: #EAF1FA; font-size: 1.15rem; }

.ct-form-sec { background: var(--color-bg); }
.ct-form-sec__grid { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1.35fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.ct-form-sec__intro h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); margin-bottom: 0.9rem; }
.ct-form-sec__intro p { color: var(--color-text-secondary); max-width: 50ch; margin-bottom: 2rem; }
.ct-form-sec__media { border-radius: 5px; overflow: hidden; box-shadow: 0 22px 55px -28px rgba(44,44,44,0.5); position: sticky; top: calc(var(--nav-h) + 1rem); }
.ct-form-sec__media img { width: 100%; height: auto; }

.reach { background: var(--color-primary); color: var(--color-on-primary); }
.reach__grid { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.reach__head { grid-column: 1 / -1; margin-bottom: 1rem; }
.reach__head h2 { color: var(--color-on-primary); font-size: clamp(1.7rem, 3vw, 2.6rem); }
.reach__card { background: var(--color-primary-dark); border-radius: 5px; padding: clamp(1.5rem, 3vw, 2.25rem); }
.reach__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.8rem; }
.reach__phone { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--color-on-primary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; letter-spacing: -0.01em; }
.reach__phone:hover { color: var(--color-accent); }
.reach__phone .ph { color: var(--color-accent); font-size: 0.85em; }
.reach__place { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--color-on-primary); display: flex; align-items: center; gap: 0.6rem; }
.reach__place .ph { color: var(--color-accent); }
.reach__note { color: #D6E4F3; margin-top: 0.8rem; font-size: 1rem; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 68vh; display: grid; place-items: center; text-align: center; background: var(--color-bg); padding: 4rem var(--gutter); }
.notfound h1 { font-size: clamp(4rem, 14vw, 9rem); color: var(--color-primary); -webkit-text-stroke: 2px var(--color-primary); }
.notfound p { color: var(--color-text-secondary); font-size: 1.2rem; margin: 1rem 0 2rem; max-width: 44ch; }

/* ============================================================
   Gallery lightbox — scaffolded shared mechanism (chrome restyled to brand)
   ============================================================ */
.lightbox-zoomable { cursor: zoom-in;
  object-position: 42% 48%;
}
.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-secondary) 88%, transparent); }
.lightbox__frame { position: relative; z-index: 1; margin: 0; max-width: min(1200px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.lightbox__img { max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain; border: 4px solid var(--color-bg); box-shadow: 0 24px 80px -16px rgba(0,0,0,0.6); }
.lightbox__caption { font-family: var(--font-secondary); font-size: 0.9rem; line-height: 1.5; color: var(--color-bg); text-align: center; max-width: 60ch; }
.lightbox__counter { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 1; font-family: var(--font-secondary); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--color-bg); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; z-index: 2; width: 2.6rem; height: 2.6rem; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; background: var(--color-bg); color: var(--color-secondary); box-shadow: 0 2px 10px rgba(0,0,0,0.3); font-size: 1.15rem; line-height: 1; border-radius: 3px; }
.lightbox__close:hover, .lightbox__close:focus-visible, .lightbox__prev:hover, .lightbox__prev:focus-visible, .lightbox__next:hover, .lightbox__next:focus-visible { color: var(--color-accent); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__caption[hidden], .lightbox__counter[hidden], .lightbox__prev[hidden], .lightbox__next[hidden] { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__mosaic { min-height: 0; }
  .hero__type { order: -1; padding-block: clamp(2rem, 6vw, 3rem); }
  .process__grid { grid-template-columns: 1fr; }
  .process__photo { min-height: 220px; order: 2; }
  .teal-field__grid { grid-template-columns: 1fr; }
  .ct-form-sec__grid { grid-template-columns: 1fr; }
  .ct-form-sec__media { position: static; order: -1; max-height: 340px; }
}

@media (max-width: 860px) {
  .broadsheet__grid { grid-template-columns: 1fr; }
  .broadsheet__primary { padding-right: 0; border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: 2.5rem; margin-bottom: 2.5rem; }
  .broadsheet__secondary { padding-left: 0; }
  .split__grid, .split--reverse .split__grid, .audience__grid, .reach__grid, .closer--home .closer__inner { grid-template-columns: 1fr; }
  .split--reverse .split__media, .hero-split--reverse .hero-split__media { order: -1; }
  .audience__media { order: -1; }
  .launch__inner { grid-template-columns: 1fr; }
  .launch__nested { position: static; transform: none; margin-top: 1.25rem; }
  .launch__numwrap { text-align: left; }
}

@media (max-width: 768px) {
  /* Nav → hamburger */
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-bg); border-bottom: 1px solid var(--color-border);
    padding: 0.5rem var(--gutter) 1.25rem; max-height: 0; overflow: hidden;
    box-shadow: 0 12px 24px -18px rgba(0,0,0,0.4);
  }
  .nav__menu.is-open { max-height: 60vh; }
  .nav__menu li { width: 100%; }
  .nav__menu a { display: block; padding: 0.9rem 0; font-size: 1.1rem; }
  .nav__cta { text-align: center; margin-top: 0.6rem; }

  /* Interior heroes flip to image-on-top, not generic stack */
  .hero-split, .hero-split--reverse { grid-template-columns: 1fr; grid-template-rows: 48vh auto; }
  .hero-split--reverse .hero-split__media { order: -1; }
  .hero-split__media { min-height: 48vh; }

  /* Hero mosaic → 2-col, vacant tile leads */
  .hero__mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: minmax(140px, 26vw); }
  .mosaic__tile--anchor { grid-column: 1 / -1; grid-row: auto; }
  .mosaic__vacant { grid-column: 1 / -1; grid-row: auto; order: -1; min-height: 220px; }
  .mosaic__tile--boutique, .mosaic__tile--coffee, .mosaic__tile--paddle, .mosaic__tile--market { grid-column: auto; grid-row: auto; }
  .mosaic__tile--paddle, .mosaic__tile--market { grid-column: span 1; }

  .promise__inner { max-width: 100%; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 40vw, 220px); }
  .gallery__headcell { grid-column: 1 / -1; grid-row: auto; padding-right: 0; }
  .gallery__tile--wide { grid-column: span 2; }
  .gallery__tile--tall { grid-row: span 1; }
  .field--row { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .step { gap: 0.75rem; }
  .step__num { font-size: clamp(3.5rem, 20vw, 5rem); -webkit-text-stroke-width: 2px; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGHInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGGInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGIInHWVyNJ.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGHInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGGInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGIInHWVyNJ.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGHInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGGInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGIInHWVyNJ.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGHInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGGInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGIInHWVyNJ.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGHInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGGInHWVyNJtvI.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: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/3y9K6as8bTXq_nANBjzKo3IeZx8z6up5BeSl9D4dj_x9PpZBMlGIInHWVyNJ.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;
}
