:root {
  color-scheme: dark;
  --bg: #171315;
  --panel: #221d20;
  --line: rgba(255, 255, 255, 0.14);
  --text: #fffdfc;
  --muted: #c8bec2;
  --accent: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(135deg, #100d0f 0%, var(--bg) 48%, #201a1d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.eyebrow,
.kicker,
.detail-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero {
  min-height: 610px;
  display: grid;
  align-content: center;
  padding: 80px 0 72px;
}

.kicker {
  margin: 0 0 28px;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  font-weight: 420;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.intro {
  max-width: 650px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #171315;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 72px;
}

.detail-card {
  min-height: 245px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(34, 29, 32, 0.74);
  backdrop-filter: blur(16px);
}

.detail-card h2 {
  margin: 50px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.detail-card p,
.detail-card address {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.65;
}

footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    min-height: 86px;
  }

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

  .brand {
    font-size: 0.96rem;
  }

  .eyebrow {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 88px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

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

  footer {
    padding: 32px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

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