:root {
  color-scheme: light dark;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-strong: #eef2f8;
  --text: #182031;
  --muted: #546072;
  --line: #d9e0ea;
  --brand: #003c88;
  --accent: #7a00df;
  --accent-soft: #f1e8ff;
  --button-text: #ffffff;
  --shadow: 0 18px 44px rgba(16, 28, 54, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111622;
    --surface: #171e2c;
    --surface-strong: #202a3b;
    --text: #f4f7fb;
    --muted: #b5c0ce;
    --line: #2e394b;
    --brand: #72a9ff;
    --accent: #c18cff;
    --accent-soft: #241936;
    --button-text: #101421;
    --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 28rem),
    linear-gradient(135deg, var(--surface) 0%, var(--surface-strong) 100%);
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  padding: 72px 0;
  max-width: 820px;
}

.domain,
.section-label {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__copy {
  max-width: 680px;
  margin: 28px 0 34px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: var(--button-text);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.button:focus-visible,
.phone:focus-visible,
footer a:focus-visible,
.venue-card a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.section {
  padding: 82px 0;
}

.grid,
.spotlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.note,
.venue-card,
.cta__inner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.note {
  padding: 28px;
}

.note h2 {
  font-size: 1.35rem;
}

.spotlight {
  background: var(--surface-strong);
  border-block: 1px solid var(--line);
}

.venue-card {
  padding: 10px 26px;
}

dl {
  margin: 0;
}

.venue-card div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.venue-card div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.venue-card a,
.phone,
footer a {
  color: var(--brand);
  font-weight: 800;
}

.cta__inner {
  padding: 44px;
  text-align: center;
}

.cta__inner p {
  max-width: 680px;
  margin: 18px auto 0;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.phone {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer__inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 70vh;
  }

  .hero__inner,
  .section {
    padding: 56px 0;
  }

  .grid,
  .spotlight__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta__inner {
    padding: 30px 20px;
    text-align: left;
  }

  .cta__actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

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