/* ==========================================================
   Millermeter Marketing — brand tokens from Millermeter.ai
   ========================================================== */
:root {
  --teal: #0B4651;
  --teal-deep: #073039;
  --lime: #E6FF2A;
  --cream: #F8F7F1;
  --ink: #0D0D0D;
  --gray: #898A8E;

  --sans: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;

  --gutter: clamp(16px, 4vw, 56px);
  --radius: 28px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
::selection { background: var(--lime); color: var(--ink); }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(96px, 14vw, 180px) 0; }

/* Film grain */
.grain {
  position: fixed; inset: -50%; z-index: 100; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1s steps(4) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(-3%,2%)} 50%{transform:translate(2%,-3%)} 75%{transform:translate(-2%,-1%)} }

/* Logos as masks so they take any brand color */
.logo-mask { display: inline-block; background: currentColor; -webkit-mask: var(--m) center / contain no-repeat; mask: var(--m) center / contain no-repeat; }
.logo-mask--full { --m: url("../assets/brand/logo.svg"); aspect-ratio: 890.5 / 178.28; }
.logo-mask--icon { --m: url("../assets/brand/icon.svg"); aspect-ratio: 270 / 101.5; }

/* Type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin: 0 0 24px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--lime); }
.h2 {
  font-size: clamp(44px, 7vw, 104px); line-height: .95; letter-spacing: -0.045em;
  font-weight: 400; margin: 0;
}
.h2 em { color: var(--teal); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--lime); }

/* Buttons */
.btn {
  --bg: transparent; --fg: currentColor;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px; font: 500 16px/1 var(--sans);
  background: var(--bg); color: var(--fg); border: 1px solid transparent; cursor: pointer;
  overflow: hidden; isolation: isolate;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--ink); transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: var(--cream); }
.btn:active { transform: scale(.97); }
.btn__arrow { transition: transform .4s var(--ease); }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }
.btn--lime { --bg: var(--lime); --fg: var(--ink); }
.btn--ghost { --fg: var(--cream); border-color: rgba(248, 247, 241, .3); }
.btn--ghost::after { background: var(--cream); }
.btn--ghost:hover { color: var(--ink); }
.btn--outline { border-color: var(--ink); }
.btn--sm { padding: 12px 18px; font-size: 14px; }
.btn--block { width: 100%; padding: 20px; font-size: 17px; }

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 90; background: var(--teal);
  display: grid; place-items: center; align-content: center; gap: 28px; color: var(--lime);
}
.loader__mark .logo-mask { width: 120px; }
.loader__bar { width: 160px; height: 2px; background: rgba(230, 255, 42, .2); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 100%; background: var(--lime); transform-origin: left; transform: scaleX(0); animation: load 1.1s var(--ease) forwards; }
@keyframes load { to { transform: scaleX(1); } }
.is-loaded .loader { transform: translateY(-100%); transition: transform .9s var(--ease) .1s; }

/* Nav */
.nav {
  position: fixed; top: 16px; left: 50%; z-index: 50; transform: translateX(-50%);
  width: calc(100% - 2 * var(--gutter)); max-width: 1320px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 12px 12px 24px; border-radius: 999px;
  color: var(--cream);
  transition: background .4s, color .4s, box-shadow .4s, transform .5s var(--ease);
}
.nav.is-solid {
  background: rgba(248, 247, 241, .78); color: var(--ink);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(13, 13, 13, .06), 0 10px 40px -20px rgba(11, 70, 81, .4);
}
.nav.is-dark.is-solid { background: rgba(7, 48, 57, .7); color: var(--cream); }
.nav.is-hidden { transform: translate(-50%, -140%); }
.nav__logo .logo-mask { width: 150px; }
.nav__links { display: flex; gap: 32px; font-size: 15px; }
.nav__links a { position: relative; opacity: .8; transition: opacity .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--lime); cursor: pointer; position: relative; }
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease); }
.nav__burger span:first-child { top: 18px; }
.nav__burger span:last-child { top: 25px; }
.menu-open .nav__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .nav__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 40; background: var(--teal); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 0 var(--gutter);
  clip-path: circle(0% at calc(100% - 40px) 40px); transition: clip-path .7s var(--ease);
}
.menu a { font-size: clamp(44px, 12vw, 72px); letter-spacing: -0.04em; line-height: 1.1; }
.menu .menu__cta { color: var(--lime); font-family: var(--serif); font-style: italic; }
.menu-open .menu { clip-path: circle(150% at calc(100% - 40px) 40px); }
.menu-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative; min-height: 100svh; background: var(--teal); color: var(--cream);
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 80% at 50% 110%, transparent 30%, rgba(7, 48, 57, .7)); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1320px; margin: 0 auto; padding: 140px var(--gutter) clamp(48px, 7vw, 88px); }
.hero__eyebrow { color: var(--lime); }
.hero__eyebrow::before { display: none; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(230, 255, 42, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(230, 255, 42, 0); } 100% { box-shadow: 0 0 0 0 rgba(230, 255, 42, 0); } }
.hero__title {
  margin: 0 0 clamp(32px, 5vw, 56px);
  font-size: clamp(64px, 13.5vw, 208px); line-height: 1.2; letter-spacing: -0.055em; font-weight: 400;
}
/* Full-height line boxes so descenders never clip; negative margin sets the tight visual spacing */
.hero__title .line { display: block; overflow: hidden; margin-bottom: -.34em; }
.hero__title .line:last-child { margin-bottom: 0; }
.hero__title .word { display: inline-block; transform: translateY(110%); }
.hero__title em { color: var(--lime); padding-right: .04em; }
.hero__bottom { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; }
.hero__lede { max-width: 460px; margin: 0; font-size: clamp(17px, 1.5vw, 20px); color: rgba(248, 247, 241, .8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__scroll { position: absolute; z-index: 2; right: var(--gutter); top: 50%; display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(248, 247, 241, .6); writing-mode: vertical-rl; }
.hero__scroll i { width: 1px; height: 60px; background: linear-gradient(var(--lime), transparent); animation: drip 2s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Marquee */
.marquee { background: var(--lime); color: var(--ink); overflow: hidden; padding: 22px 0; border-block: 1px solid var(--ink); }
.marquee__track { display: flex; width: max-content; gap: 36px; align-items: center; animation: marquee 32s linear infinite; font-size: clamp(22px, 3vw, 40px); letter-spacing: -0.03em; white-space: nowrap; }
.marquee__track b { font-weight: 400; font-size: .6em; color: var(--teal); }
.marquee__track span:nth-of-type(even) { font-family: var(--serif); font-style: italic; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); }
.is-revealed { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }

/* Stats */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(56px, 8vw, 96px); border-top: 1px solid var(--ink); }
.stat { padding: 32px 24px 0 0; border-right: 1px solid rgba(13, 13, 13, .12); }
.stat + .stat { padding-left: 24px; }
.stat:last-child { border-right: 0; }
.stat__num { font-size: clamp(44px, 5.4vw, 80px); letter-spacing: -0.05em; line-height: 1; color: var(--teal); font-variant-numeric: tabular-nums; }
.stat p { margin: 16px 0 0; color: #4a4b4f; font-size: 15px; max-width: 240px; }

/* System — pinned horizontal scroll with 3D cards */
.system { position: relative; background: var(--ink); color: var(--cream); }
.system__pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: clamp(32px, 5vh, 64px); overflow: hidden; perspective: 1400px; }
.system__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 12px 48px; }
.system__head .eyebrow { grid-column: 1 / -1; margin: 0; }
.system__sub { margin: 0; max-width: 320px; color: rgba(248, 247, 241, .65); }
.system__track { display: flex; gap: 28px; padding: 0 var(--gutter); width: max-content; transform-style: preserve-3d; will-change: transform; }
.step {
  position: relative; width: clamp(290px, 30vw, 420px); aspect-ratio: 4 / 4.6; flex: none;
  padding: 36px; border-radius: var(--radius); background: var(--cream); color: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  transform-style: preserve-3d; will-change: transform; backface-visibility: hidden;
}
.step__num { position: absolute; top: 32px; left: 36px; font-size: 14px; letter-spacing: .1em; color: var(--teal); }
.step__num::after { content: ""; display: inline-block; width: 40px; height: 1px; background: currentColor; margin-left: 12px; vertical-align: middle; }
.step h3 { margin: 0 0 16px; font-size: clamp(48px, 5vw, 76px); font-weight: 400; letter-spacing: -0.05em; line-height: 1; }
.step p { margin: 0; color: #45464a; }
.step:nth-child(even) { background: var(--teal); color: var(--cream); }
.step:nth-child(even) p { color: rgba(248, 247, 241, .75); }
.step:nth-child(even) .step__num { color: var(--lime); }
.step--lime { background: var(--lime) !important; color: var(--ink) !important; }
.step--lime p { color: var(--ink) !important; }
.step--lime .step__num { color: var(--ink) !important; }
.system__progress { margin: 0 var(--gutter); height: 2px; background: rgba(248, 247, 241, .12); }
.system__progress span { display: block; height: 100%; background: var(--lime); transform-origin: left; transform: scaleX(0); }

/* Work — 3D fly-through */
.work { position: relative; background: var(--teal-deep); color: var(--cream); height: 600vh; }
.work__pin { position: sticky; top: 0; height: 100vh; overflow: hidden; perspective: 900px; perspective-origin: 50% 50%; }
.work__pin::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(230, 255, 42, .07), transparent 70%); }
.work__label { position: absolute; z-index: 1; left: var(--gutter); top: clamp(96px, 14vh, 140px); }
.work__stage { position: absolute; inset: 0; z-index: 2; transform-style: preserve-3d; }
.shot {
  position: absolute; left: 50%; top: 50%; margin: 0;
  width: min(52vw, 620px); aspect-ratio: 4 / 3;
  transform-style: preserve-3d; will-change: transform, opacity; backface-visibility: hidden;
}
.shot--tall { width: min(30vw, 360px); aspect-ratio: 9 / 16; }
.shot img, .shot video { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); }
.shot figcaption { margin-top: 14px; font-size: 14px; color: rgba(248, 247, 241, .7); }
.shot figcaption b { color: var(--cream); font-weight: 500; margin-right: 8px; }
.panel { width: 100%; height: 100%; border-radius: 20px; padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); }
.panel__big { font-size: clamp(64px, 10vw, 150px); letter-spacing: -0.06em; line-height: .9; }
.panel__small { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.panel--teal { background: var(--teal); color: var(--lime); border: 1px solid rgba(230, 255, 42, .25); }
.panel--lime { background: var(--lime); color: var(--ink); }
.panel--cream { background: var(--cream); color: var(--teal); }
.panel--ink { background: var(--ink); color: var(--cream); border: 1px solid rgba(248, 247, 241, .15); }
.panel--ink em { color: var(--lime); }
.work__meter { position: absolute; z-index: 3; right: var(--gutter); top: 50%; width: 2px; height: 160px; transform: translateY(-50%); background: rgba(248, 247, 241, .15); }
.work__meter-fill { display: block; width: 100%; height: 100%; background: var(--lime); transform-origin: top; transform: scaleY(0); }

/* Services */
.services__head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; margin-bottom: clamp(56px, 8vw, 96px); }
.services__intro { margin: 0; font-size: 19px; color: #3d3e42; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1000px; }
.card {
  position: relative; padding: 32px; border-radius: var(--radius);
  background: #fff; border: 1px solid rgba(13, 13, 13, .08);
  transform-style: preserve-3d; transition: box-shadow .4s, background .4s, color .4s;
  min-height: 380px; display: flex; flex-direction: column;
}
.card:hover { background: var(--teal); color: var(--cream); box-shadow: 0 30px 60px -30px rgba(11, 70, 81, .6); }
.card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--lime); color: var(--ink); transform: translateZ(40px); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin: auto 0 16px; padding-top: 48px; font-size: 34px; font-weight: 400; letter-spacing: -0.04em; transform: translateZ(30px); }
.card ul { margin: 0; padding: 0; list-style: none; transform: translateZ(20px); }
.card li { padding: 10px 0; border-top: 1px solid rgba(13, 13, 13, .1); font-size: 15px; transition: border-color .4s; }
.card:hover li { border-color: rgba(248, 247, 241, .15); }

/* About */
.about { background: var(--teal); color: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 112px); align-items: center; }
.about__media { position: relative; }
.about__portrait { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; clip-path: inset(100% 0 0 0 round var(--radius)); }
.about__portrait img { width: 100%; height: 120%; object-fit: cover; }
.about__copy p { color: rgba(248, 247, 241, .78); font-size: 18px; max-width: 540px; }
.about__copy .h2 { margin-bottom: 32px; }
.about__sig { display: flex; align-items: center; gap: 16px; margin-top: 40px; color: var(--lime); font-size: 15px; }
.about__sig .logo-mask { width: 64px; }

/* Contact */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 112px); align-items: start; }
.contact__title { font-size: clamp(52px, 7.5vw, 120px); line-height: .92; letter-spacing: -0.05em; font-weight: 400; margin: 0 0 28px; }
.contact__title em { color: var(--teal); }
.contact__copy > p { font-size: 19px; color: #3d3e42; max-width: 440px; }
.contact__direct { margin-top: 48px; display: grid; gap: 0; border-top: 1px solid var(--ink); }
.contact__line { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(13, 13, 13, .15); font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -0.03em; transition: color .3s, padding .4s var(--ease); overflow-wrap: anywhere; }
.contact__line span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.contact__line:hover { color: var(--teal); padding-left: 12px; }

.form { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: clamp(24px, 4vw, 48px); display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field span, .chips legend { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(248, 247, 241, .6); }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(248, 247, 241, .25);
  color: var(--cream); font: 400 18px/1.4 var(--sans); padding: 8px 0 12px; border-radius: 0; resize: vertical;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime); }
.field.is-invalid input { border-color: #ff7a6b; }
.chips { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips legend { margin-bottom: 12px; padding: 0; }
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span { display: inline-block; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(248, 247, 241, .25); font-size: 15px; transition: all .25s; }
.chips input:checked + span { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.chips input:focus-visible + span { outline: 2px solid var(--lime); outline-offset: 2px; }
.hp { display: none; }
.form__status { margin: 0; min-height: 1.4em; font-size: 15px; color: var(--lime); }
.form .btn--lime::after { background: var(--cream); }
.form .btn--lime:hover { color: var(--ink); }

/* Footer */
.footer { background: var(--ink); color: var(--cream); padding: clamp(64px, 10vw, 120px) 0 32px; overflow: hidden; }
.footer__big { color: var(--lime); }
.footer__big .logo-mask { width: 100%; }
.footer__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: clamp(40px, 6vw, 72px); padding-top: 24px; border-top: 1px solid rgba(248, 247, 241, .15); font-size: 14px; color: rgba(248, 247, 241, .6); }
.footer__row a:hover { color: var(--lime); }

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

/* Responsive */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(n+3) { margin-top: 32px; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav { padding: 8px 8px 8px 20px; top: 12px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__logo .logo-mask { width: 124px; }
  .hero__scroll { display: none; }
  .system__head { grid-template-columns: 1fr; }
  .services__head, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .shot { width: 78vw; }
  .shot--tall { width: 48vw; }
  .work__meter { display: none; }
  .card { min-height: 0; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat, .stat + .stat { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(13, 13, 13, .12); margin-top: 0 !important; }
  .hero__actions .btn { flex: 1 1 100%; }
  .step { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .word { transform: none; }
  .about__portrait { clip-path: none; }
}

/* Drawn arrow icons (the ↗ character renders as an emoji on some devices) */
.icon-arrow { width: .9em; height: .9em; flex: none; vertical-align: -0.08em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.btn__arrow { display: inline-flex; }
.menu__cta .icon-arrow { width: .7em; height: .7em; stroke-width: 1.4; vertical-align: 0; }

/* Italic serif swashes (the g in "growth") hang past the left edge of the text box.
   Extra left padding widens the paint area so Safari doesn't clip them; the negative
   margin keeps the text in the same spot. */
.h2, .contact__title, .hero__title .line { padding-left: .12em; margin-left: -.12em; }
