:root {
  --cream: #f7eee8;
  --paper: #fffaf5;
  --black: #070707;
  --ink: #121212;
  --muted: #68615c;
  --coral: #d65245;
  --coral-dark: #b93d32;
  --teal: #138b8d;
  --teal-dark: #0b5f61;
  --blue: #6f9bc8;
  --soft-gray: #e8ded7;
  --line: rgba(7, 7, 7, .22);
  --white: #fffaf5;
  --shadow: 10px 10px 0 var(--black);
  --shadow-sm: 6px 6px 0 var(--black);
  --max: 1280px;
  --font-body: "Inter", "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
  --font-heading: "Space Grotesk", "Sora", "Archivo", Arial, sans-serif;
  --font-pixel: "Press Start 2P", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: .2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--black);
  color: var(--paper);
  padding: .7rem 1rem;
  border: 2px solid var(--paper);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section.tight {
  padding: 4rem 0;
}

.section.dark {
  background: var(--black);
  color: var(--paper);
}

.section.paper {
  background: var(--paper);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

.section-kicker::before {
  content: "";
  width: .8rem;
  height: .8rem;
  background: currentColor;
  display: inline-block;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.6rem;
}

.section-head h2,
.article-body h2,
.plain-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p,
.plain-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.dark .section-head p,
.dark .plain-head p,
.dark .muted {
  color: rgba(255, 250, 245, .72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 238, 232, .92);
  border-bottom: 2px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 0 rgba(7, 7, 7, .06);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 34px;
  border: 3px solid var(--black);
  background: var(--teal);
  box-shadow: 4px 4px 0 var(--black);
  position: relative;
  display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 10px;
  height: 10px;
  background: var(--paper);
  border: 3px solid var(--black);
}

.brand-mark::before {
  left: 5px;
}

.brand-mark::after {
  right: 5px;
}

.brand strong {
  color: var(--coral);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--black);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.dropdown-trigger,
.language-switcher a {
  font-weight: 900;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding: .35rem .15rem;
  background: transparent;
  color: var(--black);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.language-switcher a[aria-current="true"] {
  border-bottom-color: var(--black);
}

.dropdown {
  position: relative;
}

.dropdown-trigger {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.dropdown-trigger::after {
  content: "";
  width: .45rem;
  height: .45rem;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + .65rem);
  min-width: 220px;
  padding: .5rem;
  background: var(--paper);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-sm);
  display: none;
}

.dropdown.is-open .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  display: block;
  padding: .7rem .8rem;
  border-bottom: 1px solid var(--line);
  text-transform: none;
  font-weight: 800;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1rem;
  background: var(--paper);
  color: var(--black);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--black);
}

.btn.primary {
  background: var(--coral);
  color: var(--paper);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--coral-dark);
}

.btn.dark {
  background: var(--black);
  color: var(--paper);
}

.btn.teal {
  background: var(--teal);
  color: var(--paper);
}

.btn.ghost {
  background: transparent;
}

.btn.small {
  min-height: 40px;
  padding: .55rem .75rem;
  font-size: .9rem;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.pixel-dot {
  width: .8rem;
  height: .8rem;
  background: var(--coral);
  display: block;
  margin-bottom: 1.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 5.6rem;
  line-height: .95;
  letter-spacing: 0;
  color: var(--black);
}

.pixel-accent {
  display: inline-block;
  color: var(--coral);
  font-family: var(--font-pixel);
  font-size: .54em;
  line-height: 1.35;
  text-transform: lowercase;
  vertical-align: baseline;
}

.hero-sub,
.page-hero .lead {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.hero-visual {
  display: grid;
  gap: 1.2rem;
}

.hero-visual img {
  display: block;
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.hero-note,
.cookie-note {
  background: #2b2725;
  color: var(--paper);
  border: 2px solid var(--paper);
  box-shadow: 8px 8px 0 var(--black);
  padding: 1rem;
  max-width: 420px;
  justify-self: end;
}

.hero-note p,
.cookie-note p {
  margin: 0 0 .8rem;
  font-weight: 800;
}

.note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.note-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: .4rem .65rem;
  background: var(--paper);
  color: var(--black);
  border: 2px solid var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--black);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.nex-card {
  min-height: 320px;
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .22s ease, box-shadow .22s ease;
}

.nex-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0 var(--black);
}

.nex-card.coral {
  background: #d96157;
}

.nex-card.blue {
  background: var(--blue);
}

.nex-card.teal {
  background: #2e9da0;
}

.nex-card.cream {
  background: var(--paper);
}

.nex-card h2,
.nex-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nex-card p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  font-weight: 700;
}

.card-icon {
  width: 58px;
  height: 58px;
  border: 6px solid var(--black);
  display: grid;
  place-items: center;
  margin: auto;
  position: relative;
  z-index: 1;
}

.card-icon::before,
.card-icon::after {
  content: "";
  display: block;
  background: var(--black);
}

.icon-wrench::before {
  width: 34px;
  height: 8px;
  transform: rotate(-45deg);
}

.icon-car::before {
  width: 34px;
  height: 18px;
  border: 5px solid var(--black);
  background: transparent;
}

.icon-shield::before {
  width: 26px;
  height: 30px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.icon-book::before {
  width: 34px;
  height: 28px;
  border: 5px solid var(--black);
  border-left-width: 12px;
  background: transparent;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  font-size: .78rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.card-meta span:first-child::before {
  content: "";
  display: inline-block;
  width: .7rem;
  height: .7rem;
  background: var(--black);
  margin-right: .45rem;
}

.ghost-number {
  position: absolute;
  right: -1.6rem;
  bottom: -3rem;
  font-family: var(--font-pixel);
  font-size: 6.8rem;
  color: rgba(7, 7, 7, .09);
  line-height: 1;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.35rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.article-card,
.review-card,
.price-card,
.workshop-card,
.category-pill {
  border: 2px solid var(--black);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  padding: 1.2rem;
}

.info-card h3,
.article-card h3,
.review-card h3,
.price-card h3,
.workshop-card h3 {
  margin: 0 0 .65rem;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.info-card p,
.article-card p,
.review-card p,
.price-card p,
.workshop-card p {
  margin: 0;
  color: var(--muted);
}

.metric-card {
  min-height: 170px;
  border: 3px solid var(--black);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
  background: var(--paper);
}

.metric-card strong {
  display: block;
  color: var(--coral);
  font-family: var(--font-pixel);
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: .9rem;
}

.search-band {
  background: var(--black);
  color: var(--paper);
  padding: 4rem 0;
}

.directory-form {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: .8rem;
  align-items: end;
}

.field {
  display: grid;
  gap: .35rem;
}

.field label,
.check-field,
.form-label {
  font-weight: 900;
  text-transform: uppercase;
  font-size: .83rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: inherit;
  padding: .7rem 0;
  border-radius: 0;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field select {
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: currentColor;
  opacity: .54;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(250px, .46fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 120px;
}

.process-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-pixel);
  font-size: 2.7rem;
  line-height: 1.35;
  color: var(--coral);
}

.process-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 12px;
  background: var(--soft-gray);
  border: 2px solid var(--line);
  position: relative;
  margin-bottom: 1.2rem;
}

.process-progress span {
  background: var(--teal);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .35s ease;
}

.process-progress[data-step="1"] span:nth-child(-n + 1),
.process-progress[data-step="2"] span:nth-child(-n + 2),
.process-progress[data-step="3"] span:nth-child(-n + 3),
.process-progress[data-step="4"] span:nth-child(-n + 4) {
  transform: scaleX(1);
}

.process-list {
  display: grid;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 1.8rem;
  padding: 2.2rem 0;
  border-bottom: 2px solid var(--line);
}

.process-item:first-child {
  border-top: 2px solid var(--line);
}

.process-item .step {
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
}

.process-item h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.workshop-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--black);
  background: var(--soft-gray);
  padding: .25rem .45rem;
  font-size: .82rem;
  font-weight: 900;
}

.price-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.price-label {
  margin-top: auto;
  display: inline-flex;
  align-self: start;
  border: 2px solid var(--black);
  background: var(--blue);
  color: var(--black);
  padding: .45rem .55rem;
  font-weight: 900;
}

.notice {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 8px solid var(--coral);
  background: rgba(214, 82, 69, .08);
  font-weight: 800;
}

.article-body {
  max-width: 980px;
  margin-inline: auto;
}

.article-body h2 {
  margin-bottom: 1.2rem;
}

.article-body h3 {
  margin: 2rem 0 .6rem;
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.article-body p,
.article-body li {
  font-size: 1.06rem;
  color: #24201d;
}

.article-body p {
  margin: 0 0 1.1rem;
}

.article-body a {
  color: var(--teal-dark);
  font-weight: 900;
}

.review-disclaimer,
.download-note,
.small-note {
  color: var(--muted);
  font-size: .93rem;
  font-weight: 800;
}

.review-card {
  min-height: 190px;
}

.review-card blockquote {
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 750;
}

.review-card h3 {
  color: var(--coral);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.location-card {
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  background: var(--paper);
  padding: 1.4rem;
}

.location-card address {
  font-style: normal;
  font-weight: 800;
  margin: 1rem 0;
}

.map-frame {
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  background: var(--black);
  min-height: 420px;
}

.map-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.faq-list {
  border-top: 2px solid var(--line);
}

.faq-item {
  border-bottom: 2px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: transparent;
  border: 0;
  color: var(--black);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.12rem;
}

.faq-question::after {
  content: "+";
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--paper);
  font-family: var(--font-body);
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  background: var(--coral);
  color: var(--paper);
}

.faq-panel {
  padding: 0 0 1.2rem;
  color: var(--muted);
}

.faq-panel[hidden] {
  display: none;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  background: var(--coral);
  color: var(--paper);
  padding: 2rem;
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
}

.cta-panel p {
  margin: .8rem 0 0;
  color: rgba(255, 250, 245, .85);
}

.contact-footer {
  background: var(--black);
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, 1fr);
  gap: 4rem;
  align-items: start;
  padding: 5rem 0;
}

.contact-copy h2 {
  margin: 0 0 1.5rem;
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.15;
}

.contact-big {
  display: block;
  margin: 1.6rem 0;
  color: var(--coral);
  font-family: var(--font-pixel);
  font-size: 2.2rem;
  line-height: 1.35;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .field {
  color: var(--paper);
}

.check-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
  text-transform: none;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: .25rem;
  accent-color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 245, .18);
  padding: 1.6rem 0 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 1.5rem;
}

.footer-grid h3 {
  margin: 0 0 .8rem;
  color: rgba(255, 250, 245, .58);
  font-size: .82rem;
  text-transform: uppercase;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .4rem;
}

.footer-grid a {
  color: var(--paper);
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.page-hero {
  padding: 5rem 0 4rem;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.3rem;
  padding: 1.3rem 0;
  border-bottom: 2px solid var(--line);
}

.timeline-item strong {
  font-family: var(--font-pixel);
  color: var(--coral);
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .7fr);
  gap: 1.5rem;
  align-items: stretch;
}

.featured-article img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.featured-copy {
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  background: var(--paper);
  padding: 1.6rem;
}

.featured-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
}

.blog-grid .article-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.category-pill {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  background: var(--paper);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: end;
  margin-top: 1.5rem;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: grid;
  justify-items: end;
  gap: .65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.floating-contact.is-active,
.floating-contact.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.float-toggle {
  min-width: 56px;
  height: 56px;
  border: 2px solid var(--black);
  background: var(--coral);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
}

.float-panel {
  display: none;
  width: min(320px, calc(100vw - 2rem));
  border: 2px solid var(--black);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  padding: .7rem;
}

.floating-contact.is-open .float-panel {
  display: grid;
  gap: .5rem;
}

.float-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .65rem;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--paper);
  text-decoration: none;
  font-weight: 900;
}

.float-panel a:nth-child(2) {
  background: var(--teal);
}

.float-panel a:nth-child(3) {
  background: var(--blue);
  color: var(--black);
}

.float-panel a:nth-child(4) {
  background: var(--coral);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero h1,
  .page-hero h1 {
    font-size: 4.4rem;
  }

  .service-strip,
  .grid-4,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-form,
  .newsletter-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    max-height: calc(100vh - 86px);
    overflow: auto;
    display: none;
    background: var(--paper);
    border-bottom: 3px solid var(--black);
    padding: 1rem;
    box-shadow: 0 10px 0 var(--black);
  }

  .main-nav.is-open {
    display: grid;
    gap: 1rem;
  }

  .nav-links,
  .nav-actions {
    align-items: stretch;
    display: grid;
    gap: .7rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: .4rem;
  }

  .hero-grid,
  .page-hero .hero-grid,
  .process-layout,
  .location-layout,
  .contact-grid,
  .featured-article,
  .section-head {
    grid-template-columns: 1fr;
  }

  .process-sticky {
    position: static;
  }

  .hero-note {
    justify-self: start;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .section {
    padding: 4rem 0;
  }

  .nav-shell {
    min-height: 76px;
  }

  .main-nav {
    top: 76px;
    max-height: calc(100vh - 76px);
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.9rem;
    line-height: 1;
  }

  .pixel-accent {
    font-size: .45em;
  }

  .section-head h2,
  .article-body h2,
  .plain-head h2,
  .cta-panel h2 {
    font-size: 2.2rem;
  }

  .process-title {
    font-size: 1.7rem;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .process-item h3 {
    font-size: 2.1rem;
  }

  .service-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .stat-grid,
  .directory-form,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .nex-card {
    min-height: 270px;
  }

  .ghost-number {
    font-size: 5rem;
  }

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

  .contact-big {
    font-size: 1.35rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: .65rem;
    bottom: .65rem;
  }
}
