/* ============================================================
   Cosmo Schlüsseldienst — Designsystem
   Konzept: "Nie Neumond" — die Mondsichel im Logo wird zur
   durchgängigen Bildsprache für 24/7-Erreichbarkeit. Schwarz/Weiß
   (Kundenvorgabe), Mechanik & Schließtechnik als visuelles Vokabular
   statt Stockfoto-SaaS-Optik.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --ink: #0a0a0a;
  --paper: #f5f4f1;
  --paper-true: #ffffff;
  --graphite: #54514c;
  --hairline: #d9d6cf;
  --hairline-dark: #2c2c2a;
  --smoke: #161614;
  --accent-green: #3ecf6e;
  --accent-red: #e0503a;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --max-width: 1180px;
  --edge: 0px; /* mechanical: no border-radius anywhere */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

section {
  padding: 104px 0;
}

h1, h2, h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 16px;
  color: var(--graphite);
}

em {
  font-family: var(--font-display);
  font-style: italic;
}

/* Mono / case-file labels */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  flex-shrink: 0;
}

.section-head {
  max-width: 620px;
  margin: 0 0 60px;
}

.section-head .tag {
  margin-bottom: 18px;
}

/* Buttons — flat, rectilinear, no radius */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--smoke);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper-true);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--paper-true);
}

.btn-on-dark:hover {
  background: var(--paper-true);
  color: var(--ink);
  border-color: var(--paper-true);
}

.btn-light {
  background: var(--paper-true);
  color: var(--ink);
  border-color: var(--paper-true);
}

.btn-light:hover {
  background: var(--paper);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 244, 241, 0.96);
  border-bottom: 1px solid var(--hairline);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(245, 244, 241, 0.72);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

.brand img {
  width: 34px;
  height: 34px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav.main-nav a {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--graphite);
  position: relative;
  padding-bottom: 4px;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.2s ease;
}

nav.main-nav a:hover {
  color: var(--ink);
}

nav.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: none;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-cta {
  display: none;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 0;
  background: var(--ink);
  color: var(--paper-true);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline-dark);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-copy {
  padding: 72px 28px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.hero .tag {
  color: rgba(245, 244, 241, 0.75);
}

.hero h1 {
  color: var(--paper-true);
  font-size: clamp(38px, 5.2vw, 60px);
  margin: 20px 0 22px;
}

.hero p.lead {
  font-size: 17px;
  color: rgba(245, 244, 241, 0.72);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--hairline-dark);
}

.hero-meta div {
  flex: 1;
  padding: 18px 20px 0;
  border-right: 1px solid var(--hairline-dark);
}

.hero-meta div:last-child {
  border-right: none;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-meta span {
  display: block;
  font-size: 12px;
  color: rgba(245, 244, 241, 0.55);
  margin-top: 4px;
}

/* Hero image — shown in full, never cropped */
.hero-media {
  position: relative;
  margin: 0;
  align-self: stretch;
  border-left: 1px solid var(--hairline-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}

/* ============ Moon-phase strip — "Nie Neumond" ============ */
.phase-strip-section {
  background: var(--ink);
  color: var(--paper-true);
  padding: 56px 0;
  border-bottom: 1px solid var(--hairline-dark);
}

.phase-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.moon {
  --d: 30px;
  position: relative;
  width: var(--d);
  height: var(--d);
  border-radius: 50%;
  background: var(--paper-true);
  overflow: hidden;
  flex-shrink: 1;
}

.moon::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--bite) * var(--d) * -1 + var(--d) * 0.0);
  width: var(--d);
  height: var(--d);
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(calc(var(--d) * (1 - var(--bite))));
}

.phase-strip-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline-dark);
  padding-top: 18px;
}

.phase-strip-caption h3 {
  color: var(--paper-true);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}

.phase-strip-caption p {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 244, 241, 0.55);
  max-width: 360px;
}

/* ============ Services — tool wall ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.service-card {
  padding: 32px 28px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.15s ease;
}

.service-card:hover {
  background: var(--paper-true);
}

.service-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--ink);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-code {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--graphite);
  margin-bottom: 6px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  margin-bottom: 0;
}

.services-note {
  margin-top: 0;
  padding: 22px 28px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--graphite);
  display: flex;
  align-items: center;
}

/* ============ Emergency strip ============ */
.emergency {
  background: var(--ink);
  color: var(--paper-true);
  border-bottom: 1px solid var(--hairline-dark);
}

.emergency .container {
  padding-top: 52px;
  padding-bottom: 52px;
}

.emergency-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.emergency h2 {
  color: var(--paper-true);
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 32px);
}

.emergency p {
  color: rgba(245, 244, 241, 0.65);
  margin-bottom: 0;
}

/* Emergency response timeline */
.timeline-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--hairline-dark);
}

.timeline-step {
  position: relative;
  padding: 26px 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--hairline-dark);
}

.timeline-step:last-child {
  border-right: none;
}

.timeline-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -10px;
  top: 38px;
  color: rgba(245, 244, 241, 0.3);
  font-size: 18px;
  font-family: var(--font-display);
  background: var(--ink);
  width: 18px;
  text-align: center;
}

.timeline-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
}

.flow-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: rgba(245, 244, 241, 0.7);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.flow-accent-red {
  stroke: var(--accent-red);
}

.flow-accent-green {
  stroke: var(--accent-green);
}

.flow-rotate {
  transform: rotate(90deg);
}

.caller-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid var(--hairline-dark);
  flex-shrink: 0;
  max-width: 100%;
}

.caller-tag img {
  width: 14px;
  height: 14px;
}

.caller-tag span {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.02em;
  color: rgba(245, 244, 241, 0.75);
  white-space: nowrap;
}

.timeline-caption {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.5);
  text-align: center;
  padding-bottom: 22px;
}

.timeline-footnote {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: rgba(245, 244, 241, 0.45);
  text-align: center;
}

/* ============ Area / radar ============ */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.area-copy {
  padding: 56px 0 56px 0;
  padding-right: 56px;
  border-right: 1px solid var(--hairline);
}

.area-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.area-list li {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 11px 0;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
}

.area-list li:nth-child(-n+2) {
  border-top: none;
}

.area-radar {
  padding: 56px 0;
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.radar-ring {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.radar-ring::before {
  content: "";
  position: absolute;
  width: 66%;
  height: 66%;
  border-radius: 50%;
  border: 1px solid var(--hairline);
}

.radar-ring::after {
  content: "";
  position: absolute;
  width: 33%;
  height: 33%;
  border-radius: 50%;
  border: 1px solid var(--hairline);
}

.radar-center {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.radar-center span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 6px;
}

.area-radar p {
  max-width: 280px;
  font-size: 14px;
}

/* ============ About ============ */
.about-section {
  background: var(--paper-true);
  border-bottom: 1px solid var(--hairline);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
}

.about-media {
  position: relative;
  border-right: 1px solid var(--hairline);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  aspect-ratio: 4 / 5;
}

.about-media figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.82);
  color: var(--paper-true);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 10px 14px;
}

.about-copy {
  padding: 64px 56px;
}

.promise-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.promise-list li {
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}

.promise-list li:first-child {
  border-top: none;
}

.promise-list .pcode {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--graphite);
  letter-spacing: 0.06em;
  padding-top: 2px;
}

.promise-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.promise-list small {
  display: block;
  font-size: 13.5px;
  color: var(--graphite);
  font-weight: 400;
}

/* ============ Process ============ */
.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.process-step {
  padding: 28px 28px 0 0;
  position: relative;
}

.process-step .num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--graphite);
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14.5px;
}

/* ============ Contact ============ */
.contact-section {
  background: var(--ink);
  color: var(--paper-true);
}

.contact-section .section-head .tag {
  color: rgba(245, 244, 241, 0.6);
}

.contact-section h2 {
  color: var(--paper-true);
}

.contact-section .section-head p {
  color: rgba(245, 244, 241, 0.65);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline-dark);
}

.contact-card {
  padding: 8px 0;
}

.contact-method {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--hairline-dark);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.5);
  padding-top: 3px;
}

.contact-method strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.contact-method span {
  color: rgba(245, 244, 241, 0.55);
  font-size: 13.5px;
}

.hours-headline {
  color: var(--accent-green);
}

.hours-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid var(--hairline-dark);
  display: grid;
  gap: 6px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 244, 241, 0.6);
}

.hours-list li span:last-child {
  color: rgba(245, 244, 241, 0.85);
}

.big-call {
  border-left: 1px solid var(--hairline-dark);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.big-call .tag {
  color: rgba(245, 244, 241, 0.55);
  margin-bottom: 14px;
}

.big-call .phone-number {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  margin: 6px 0 26px;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: rgba(245, 244, 241, 0.6);
  padding: 64px 0 32px;
  border-top: 1px solid var(--hairline-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--paper-true);
  margin-bottom: 14px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-grid h4 {
  color: var(--paper-true);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
  font-size: 14px;
}

.footer-grid ul a:hover {
  color: var(--paper-true);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  font-family: var(--font-mono);
}

.footer-bottom a:hover {
  color: var(--paper-true);
}

/* ============ Legal pages ============ */
.legal-page main {
  padding: 64px 0 96px;
}

.legal-page h1 {
  font-size: 34px;
}

.legal-page h2 {
  font-size: 20px;
  font-family: var(--font-body);
  margin-top: 40px;
}

.legal-page main .container {
  max-width: 760px;
}

/* ============ Responsive ============ */
@media (min-width: 700px) {
  .phone-link {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    border-left: none;
    border-top: 1px solid var(--hairline-dark);
    align-self: auto;
  }

  .about-grid,
  .contact-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }

  .about-media img {
    aspect-ratio: 16 / 10;
  }

  .about-copy {
    padding: 48px 28px;
  }

  .area-copy {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 48px 0;
  }

  .area-radar {
    padding: 48px 0;
  }

  .big-call {
    border-left: none;
    border-top: 1px solid var(--hairline-dark);
  }

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

/* Header nav switches to the off-canvas menu earlier than the rest of the
   mobile layout — five links plus phone number plus button no longer fit
   in one row well before 760px. */
@media (max-width: 1100px) {
  nav.main-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    z-index: 40;
  }

  nav.main-nav.open {
    transform: translateX(0);
  }

  nav.main-nav a {
    font-size: 15px;
  }

  .nav-toggle {
    display: block;
  }

  .phone-link {
    display: none !important;
  }

  .header-cta .btn-primary {
    display: none;
  }

  nav.main-nav .nav-cta {
    display: inline-flex;
    margin-top: 12px;
  }
}

@media (max-width: 760px) {
  section {
    padding: 72px 0;
  }

  .hero-copy {
    padding: 48px 24px 48px;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .area-list li:nth-child(-n+2) {
    border-top: 1px solid var(--hairline);
  }

  .area-list li:first-child {
    border-top: none;
  }

  .hero-meta {
    flex-wrap: wrap;
  }

  .hero-meta div {
    flex: 1 1 50%;
    border-right: none;
    margin-bottom: 16px;
  }

  .promise-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .emergency-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .timeline-step {
    border-right: none;
    border-bottom: 1px solid var(--hairline-dark);
    padding-bottom: 20px;
  }

  .timeline-step:last-child {
    border-bottom: none;
  }

  .timeline-step::after {
    display: none;
  }

  .contact-method {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .moon {
    --d: 18px;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.hero a:focus-visible,
.contact-section a:focus-visible,
.emergency a:focus-visible {
  outline-color: var(--paper-true);
}
