:root {
  color-scheme: dark;
  --bg: #030303;
  --text: #ece8dc;
  --muted: #8f887a;
  --line: rgba(205, 194, 174, 0.14);
  --accent: #d46b1d;
  --accent-soft: rgba(212, 107, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 107, 29, 0.095), transparent 18rem),
    radial-gradient(circle at 50% 43%, rgba(218, 213, 202, 0.035), transparent 34rem),
    linear-gradient(180deg, #080808 0%, #030303 58%, #000 100%);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 44px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  min-height: 0;
  padding: clamp(58px, 10vh, 116px) 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vh, 30px);
  text-align: center;
}

.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;
}

.brand-hero {
  width: min(980px, 94vw);
  display: block;
  position: relative;
  filter:
    drop-shadow(0 30px 80px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 28px rgba(212, 107, 29, 0.08));
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 36px 22px #050505,
    inset 0 0 86px 34px rgba(5, 5, 5, 0.74);
}

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

.mission {
  width: min(690px, 100%);
  margin: -6px 0 0;
  color: #cfc8ba;
  font-family: "Optima", "Avenir Next", sans-serif;
  font-size: clamp(0.98rem, 1.38vw, 1.12rem);
  line-height: 1.62;
  font-weight: 400;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.email-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.015);
  color: #e7ded0;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-link:hover {
  border-color: rgba(212, 107, 29, 0.38);
  background: var(--accent-soft);
}

.email-address {
  color: #918a7d;
  font-size: 0.8rem;
  text-decoration: none;
}

.email-address:hover {
  color: #cfc8ba;
}

.quiet-footer {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .hero {
    padding: 64px 0 36px;
    gap: 20px;
  }

  .brand-hero {
    width: min(330px, 88vw);
  }

  .brand-hero::after {
    box-shadow:
      inset 0 0 24px 14px #050505,
      inset 0 0 58px 23px rgba(5, 5, 5, 0.72);
  }

  .mission {
    max-width: 22rem;
    margin-top: 0;
    font-size: 0.94rem;
    line-height: 1.54;
  }

  .email-link {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 0.75rem;
  }

  .quiet-footer {
    margin-bottom: 26px;
  }
}
