:root {
  color-scheme: dark;
  --background: #101211;
  --surface: #161a18;
  --text: #f2eee6;
  --muted: #bebbb2;
  --accent: #72a7a0;
  --line: #343a36;
}

* { box-sizing: border-box; }

html { background: var(--background); }

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
  border-radius: 2px;
}

.site-header, main, .site-footer {
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
}

.site-header { padding-block: 1.8rem 1.2rem; }

.wordmark {
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero { padding-block: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 8vw, 7rem); }

.hero-copy { max-width: 43rem; }

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.intro { max-width: 39rem; margin-bottom: 0; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }

.brand-image {
  width: min(100%, 58rem);
  margin: clamp(3rem, 7vw, 6.5rem) auto 0;
  border: 1px solid var(--line);
  background: #090a09;
}

.brand-image img { display: block; width: 100%; height: auto; }

.statement { border-block: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem); }
.statement p { max-width: 49rem; margin-bottom: 0; font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.35; }

.information { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; padding-block: clamp(4rem, 8vw, 7rem); }
.content-section { border-top: 1px solid var(--line); padding-top: 1.25rem; }
h2 { margin-bottom: 1.2rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.content-section p { max-width: 31rem; margin-bottom: 1.25rem; color: var(--muted); }
address { color: var(--text); font-style: normal; line-height: 1.7; }
.email, .phone { color: var(--text); font-weight: 650; }

.site-footer { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-block: 1.75rem 2.25rem; color: var(--muted); font-size: 0.875rem; }
.site-footer p { margin: 0; }
.site-footer a { text-decoration: none; }

@media (max-width: 40rem) {
  .site-header, main, .site-footer { width: min(100% - 2rem, 72rem); }
  .hero { padding-top: 3.25rem; }
  .information { grid-template-columns: 1fr; gap: 3.5rem; }
  .site-footer { display: block; }
  .site-footer p + p { margin-top: 0.45rem; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; } }
