/* Thermiq Systems — temperature-field orbs behind editorial columns */
:root {
  --ink: #0f0f0f;
  --ink-2: #171717;
  --ink-3: #282828;
  --teal: #046489;
  --teal-deep: #035d86;
  --teal-mid: #175d75;
  --teal-soft: #286c89;
  --ice: #eafefe;
  --mist: #cce9f1;
  --haze: #acd7e7;
  --paper: #f4fbfc;
  --sheet: #ffffff;
  --muted: #3a5560;
  --line: #c5dde6;
  --on-dark: #f4fbfc;
  --on-dark-muted: #d4e8ee;
  --on-dark-line: rgba(234, 254, 254, 0.18);
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --serif: "Italiana", "Palatino Linotype", Palatino, serif;
  --sans: "Raleway", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .pull, .col-no, .method-no {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 400;
  background: var(--ink); color: var(--on-dark);
  padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 0; }

.kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
}
.kicker .dot { margin: 0 .4em; color: var(--haze); }

/* ===== Temperature field (page-level drifting orbs) ===== */
.temp-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.blob-1 {
  width: 58vw; height: 58vw; min-width: 420px; min-height: 420px;
  left: -16vw; top: -12vw;
  background: radial-gradient(circle at 42% 40%, rgba(4, 100, 137, .32), rgba(4, 100, 137, 0) 68%);
  animation: drift-a 32s ease-in-out infinite;
}
.blob-2 {
  width: 46vw; height: 46vw; min-width: 340px; min-height: 340px;
  right: -12vw; top: 8vh;
  background: radial-gradient(circle at 55% 45%, rgba(172, 215, 231, .7), rgba(172, 215, 231, 0) 70%);
  animation: drift-b 38s ease-in-out infinite;
}
.blob-3 {
  width: 40vw; height: 40vw; min-width: 280px; min-height: 280px;
  left: 28vw; top: 42vh;
  background: radial-gradient(circle at 50% 50%, rgba(15, 15, 15, .10), rgba(15, 15, 15, 0) 72%);
  animation: drift-c 26s ease-in-out infinite;
}
.blob-4 {
  width: 36vw; height: 36vw; min-width: 260px; min-height: 260px;
  right: 8vw; bottom: -8vw;
  background: radial-gradient(circle at 40% 60%, rgba(4, 100, 137, .22), rgba(4, 100, 137, 0) 66%);
  animation: drift-a 40s ease-in-out infinite reverse;
}
.blob-5 {
  width: 28vw; height: 28vw; min-width: 200px; min-height: 200px;
  left: -6vw; bottom: 12vh;
  background: radial-gradient(circle at 50% 50%, rgba(204, 233, 241, .75), rgba(234, 254, 254, 0) 70%);
  animation: drift-b 22s ease-in-out infinite reverse;
}
.blob-6 {
  width: 22vw; height: 22vw; min-width: 160px; min-height: 160px;
  left: 62vw; top: 18vh;
  background: radial-gradient(circle at 50% 50%, rgba(23, 93, 117, .22), transparent 68%);
  animation: drift-c 34s ease-in-out infinite 1.4s;
}
.blob-7 {
  width: 18vw; height: 18vw; min-width: 140px; min-height: 140px;
  left: 12vw; top: 62vh;
  background: radial-gradient(circle at 50% 50%, rgba(4, 100, 137, .18), transparent 70%);
  animation: drift-a 18s ease-in-out infinite 2s;
}

@keyframes drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(7%, -6%, 0) scale(1.08); }
  66% { transform: translate3d(-5%, 8%, 0) scale(.94); }
}
@keyframes drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  40% { transform: translate3d(-8%, 5%, 0) scale(1.12); }
  70% { transform: translate3d(6%, -7%, 0) scale(.96); }
}
@keyframes drift-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.02); }
  50% { transform: translate3d(5%, 9%, 0) scale(1.14); }
}

header, main, footer { position: relative; z-index: 1; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary {
  background: var(--teal);
  color: var(--on-dark);
  box-shadow: 0 10px 24px -12px rgba(4, 100, 137, .65);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(244, 251, 252, .78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 251, 252, .94);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand img {
  width: 44px; height: 44px; object-fit: contain;
  background: var(--sheet); border-radius: 10px;
  border: 1px solid var(--line);
}
.brand-name {
  font-size: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s var(--ease);
}
.nav .nav-cta {
  color: var(--on-dark);
  background: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: .1em;
}

.nav-toggle {
  display: none; width: 42px; height: 42px;
  border: 0; background: transparent; padding: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); margin: 5px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero editorial spread ===== */
.hero {
  position: relative;
  padding: 56px 0 72px;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
}
.hero-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 7.2vw, 88px);
  line-height: 1.02;
  max-width: 12ch;
  color: var(--ink);
}
.lede {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 18px;
  color: var(--muted);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-rail {
  position: relative;
  padding: 28px 28px 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
}
.rail-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
}
.rail-note {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}
.rail-facts {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.rail-facts div { display: grid; grid-template-columns: 72px 1fr; gap: 8px; }
.rail-facts dt {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  padding-top: 3px;
}
.rail-facts dd { margin: 0; font-weight: 500; }

.isotherms {
  display: block;
  width: min(100%, 260px);
  margin: 0 auto 8px;
}
.iso {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1;
  transform-origin: 140px 140px;
  opacity: .45;
}
.iso-a { animation: iso-breathe 7s ease-in-out infinite; }
.iso-b { animation: iso-breathe 9s ease-in-out infinite .4s; opacity: .35; }
.iso-c { animation: iso-breathe 11s ease-in-out infinite .8s; opacity: .28; }
.iso-d { animation: iso-spin 28s linear infinite; opacity: .2; stroke-dasharray: 6 10; }
.iso-core { animation: iso-pulse 5.5s ease-in-out infinite; }
.iso-dot { fill: var(--teal); }
.iso-dot.d2 { animation: iso-orbit 16s linear infinite; transform-origin: 140px 140px; }
.iso-dot.d3 { animation: iso-orbit 22s linear infinite reverse; transform-origin: 140px 140px; }

@keyframes iso-breathe {
  0%, 100% { transform: scale(1); opacity: .28; }
  50% { transform: scale(1.06); opacity: .55; }
}
@keyframes iso-pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes iso-spin { to { transform: rotate(360deg); } }
@keyframes iso-orbit { to { transform: rotate(360deg); } }

/* ===== Editorial spreads + local temperature glows ===== */
.spread {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}
.spread-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  will-change: transform;
}
.g-cool {
  width: 420px; height: 420px; left: -80px; top: 10%;
  background: radial-gradient(circle, rgba(4, 100, 137, .28), transparent 68%);
  animation: drift-b 24s ease-in-out infinite;
}
.g-ink {
  width: 360px; height: 360px; right: -60px; bottom: 0;
  background: radial-gradient(circle, rgba(23, 93, 117, .22), transparent 70%);
  animation: drift-a 28s ease-in-out infinite reverse;
}
.g-left {
  width: 280px; height: 280px; left: 4%; top: 28%;
  background: radial-gradient(circle, rgba(172, 215, 231, .7), transparent 68%);
  animation: drift-c 20s ease-in-out infinite;
}
.g-mid {
  width: 320px; height: 320px; left: 38%; top: 8%;
  background: radial-gradient(circle, rgba(4, 100, 137, .2), transparent 70%);
  animation: drift-a 30s ease-in-out infinite;
}
.g-right {
  width: 300px; height: 300px; right: 2%; bottom: 6%;
  background: radial-gradient(circle, rgba(15, 15, 15, .1), transparent 68%);
  animation: drift-b 26s ease-in-out infinite reverse;
}
.g-faq {
  width: 480px; height: 480px; right: -80px; top: -40px;
  background: radial-gradient(circle, rgba(4, 100, 137, .18), transparent 70%);
  animation: drift-c 32s ease-in-out infinite;
}

.spread .wrap,
.spread-head,
.editorial { position: relative; z-index: 1; }

.spread-head { max-width: 22ch; margin-bottom: 40px; }
.spread-head h2 {
  font-size: clamp(32px, 5vw, 52px);
}
.spread-head.invert { color: var(--on-dark); }
.spread-head.invert .kicker { color: var(--haze); }
.spread-head.invert h2 { color: var(--on-dark); }

.editorial {
  display: grid;
  gap: 0;
}
.editorial.two { grid-template-columns: 1fr 1fr; }
.editorial.three { grid-template-columns: 1fr 1fr 1fr; }

.editorial .col {
  padding: 8px 32px 8px 0;
}
.editorial.two .col + .col,
.editorial.three .col + .col {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  padding-right: 8px;
}
.editorial .col p + p { margin-top: 18px; }
.editorial .col p { color: var(--muted); max-width: 42ch; }
.drop { color: var(--ink) !important; font-size: 18.5px; }

.panel {
  position: relative;
  padding: 28px 28px 32px !important;
  background: rgba(255, 255, 255, .38);
  border: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.editorial.three .col + .col {
  border-left: 1px solid var(--line);
}
.editorial.three .panel + .panel {
  border-left-color: var(--line);
}

.col-orb {
  display: block;
  width: 56px; height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #eafefe 0%, #046489 42%, rgba(4, 100, 137, 0) 70%);
  filter: blur(0.4px);
  animation: orb-core 8s ease-in-out infinite;
  box-shadow: 0 0 28px rgba(4, 100, 137, .28);
}
.panel:nth-child(2) .col-orb {
  background: radial-gradient(circle at 38% 36%, #cce9f1 0%, #175d75 46%, rgba(23, 93, 117, 0) 72%);
  animation-delay: .6s;
}
.panel:nth-child(3) .col-orb {
  background: radial-gradient(circle at 38% 36%, #acd7e7 0%, #0f0f0f 50%, rgba(15, 15, 15, 0) 72%);
  animation-delay: 1.2s;
}
@keyframes orb-core {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.12); opacity: 1; }
}

.col-no {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 8px;
}
.panel h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

/* ===== Dark method band ===== */
.band {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  padding: 88px 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -120px; top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 100, 137, .45), transparent 68%);
  filter: blur(20px);
  animation: drift-b 28s ease-in-out infinite;
  pointer-events: none;
}
.band::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  left: -80px; bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 215, 231, .22), transparent 70%);
  filter: blur(16px);
  animation: drift-a 22s ease-in-out infinite reverse;
  pointer-events: none;
}
.band .wrap { position: relative; z-index: 1; }

.method-list { display: grid; gap: 12px; margin-top: 8px; }
.method-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px;
  border: 1px solid var(--on-dark-line);
  background: rgba(255, 255, 255, .03);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.method-no {
  font-size: 28px;
  color: var(--haze);
  line-height: 1;
  padding-top: 4px;
}
.method-row h3 {
  font-size: 28px;
  color: var(--on-dark);
  margin-bottom: 6px;
}
.method-row p { color: var(--on-dark-muted); max-width: 62ch; }

.pull {
  margin: 48px 0 10px;
  font-size: clamp(28px, 4.4vw, 44px);
  max-width: 18ch;
  color: var(--on-dark);
}
.pull-attr {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--haze);
}

/* ===== FAQ ===== */
.faq-spread { max-width: 760px; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
  transition: border-color .25s var(--ease);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  background: transparent; border: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}
.faq-ico {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  position: relative;
}
.faq-ico::before, .faq-ico::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 8px;
  height: 1.5px; background: var(--teal);
}
.faq-ico::after { transform: rotate(90deg); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.faq-item.open .faq-ico::after { transform: rotate(0deg); opacity: 0; }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}
.faq-item.open .faq-a { display: block; }

/* ===== Contact ===== */
.contact {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}
.contact-orbs { position: absolute; inset: 0; pointer-events: none; }
.g-contact {
  width: 520px; height: 520px; left: -80px; top: -40px;
  background: radial-gradient(circle, rgba(4, 100, 137, .26), transparent 68%);
  filter: blur(70px);
  animation: drift-a 26s ease-in-out infinite;
}
.contact-spread {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.contact-copy h2 {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 14ch;
  margin-bottom: 16px;
}
.contact-copy p { color: var(--muted); max-width: 44ch; }
.contact-card {
  padding: 32px 28px;
  background: var(--ink);
  color: var(--on-dark);
  border: 1px solid var(--ink);
}
.contact-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--haze);
}
.contact-mail {
  display: inline-block;
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(244, 251, 252, .28);
}
.contact-meta {
  color: var(--on-dark-muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.contact-card .btn-primary {
  background: var(--on-dark);
  color: var(--ink);
  box-shadow: none;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--sheet);
  border-top: 1px solid var(--line);
  padding: 28px 0 22px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 18px;
}
.footer-inner .brand span { font-family: var(--serif); font-size: 18px; }
.footer-inner .brand img { width: 36px; height: 36px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-nav a {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 14px;
  color: var(--muted); font-size: 13.5px;
}

/* ===== Reveal (must precede hover transforms) ===== */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .glow, .iso, .iso-a, .iso-b, .iso-c, .iso-d, .iso-core, .iso-dot,
  .col-orb, .band::before, .band::after, .g-contact {
    animation: none !important;
  }
}

/* Hover AFTER .reveal.in { transform: none } */
@media (hover: hover) and (pointer: fine) {
  .btn { transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
  .btn-primary:hover {
    transform: translateY(-3px);
    background: var(--teal-deep);
    box-shadow: 0 16px 32px -12px rgba(4, 100, 137, .7);
  }
  .btn-ghost:hover {
    transform: translateY(-3px);
    background: var(--ink);
    color: var(--on-dark);
  }
  .nav a:hover { color: var(--ink); }
  .nav .nav-cta:hover {
    transform: translateY(-2px);
    background: var(--teal);
  }
  .panel.reveal.in:hover,
  .panel:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .78);
    border-color: var(--teal);
    box-shadow: 0 18px 36px -20px rgba(4, 100, 137, .4);
  }
  .method-row.reveal.in:hover,
  .method-row:hover {
    transform: translateY(-4px);
    border-color: var(--haze);
    background: rgba(4, 100, 137, .22);
  }
  .faq-item:hover { border-color: var(--teal); }
  .faq-q:hover { color: var(--teal-deep); }
  .contact-card.reveal.in:hover,
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px -22px rgba(15, 15, 15, .55);
  }
  .contact-mail:hover { border-bottom-color: var(--haze); color: var(--ice); }
  .footer-nav a:hover { color: var(--teal); }
  .brand:hover { opacity: .86; }
}

@media (hover: none) {
  .btn:active { transform: none; }
}

/* ===== Mobile ~390px ===== */
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: var(--header-h); right: 16px; left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--sheet);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -24px rgba(15, 15, 15, .4);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; color: var(--ink); }
  .nav .nav-cta { text-align: center; margin-top: 6px; }
  .nav-toggle { display: block; }

  .hero { padding: 36px 0 48px; min-height: 0; }
  .hero-spread,
  .editorial.two,
  .editorial.three,
  .contact-spread {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .editorial .col,
  .editorial.two .col + .col,
  .editorial.three .col + .col,
  .editorial.three .panel + .panel {
    border-left: 0;
    padding: 8px 0 20px;
  }
  .panel,
  .editorial.three .col {
    padding: 22px 20px 24px !important;
  }
  .spread { padding: 64px 0; }
  .band { padding: 64px 0; }
  .contact { padding: 64px 0 72px; }
  .hero h1 { max-width: none; }
  .spread-head { max-width: none; }
  .method-row { grid-template-columns: 40px 1fr; padding: 18px 16px; }
  .footer-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .blob-6, .blob-7 { display: none; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .hero { padding: 28px 0 40px; }
  .hero h1 { font-size: 40px; }
  .lede { font-size: 16.5px; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .header-inner { height: 64px; }
  .brand-name { font-size: 17px; }
  .brand img { width: 36px; height: 36px; }
  .spread { padding: 52px 0; }
  .band { padding: 52px 0; }
  .contact { padding: 52px 0 60px; }
  .panel h3 { font-size: 26px; }
  .method-row h3 { font-size: 24px; }
  .contact-mail { font-size: 22px; word-break: break-word; }
  .hero-rail { padding: 20px 18px 24px; }
}
