:root {
  color-scheme: light dark;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-strong: #eef2f8;
  --text: #16171d;
  --muted: #565d6d;
  --border: #d7deea;
  --brand: #330968;
  --brand-2: #7a00df;
  --accent: #006ba1;
  --button-text: #ffffff;
  --shadow: 0 24px 60px rgba(22, 23, 29, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #11131a;
    --surface: #191c25;
    --surface-strong: #222737;
    --text: #f5f7fb;
    --muted: #bdc6d8;
    --border: #353b4d;
    --brand: #ab1dfe;
    --brand-2: #34e2e4;
    --accent: #34e2e4;
    --button-text: #11131a;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--brand-2) 20%, transparent), transparent 34rem),
    linear-gradient(180deg, var(--surface-strong), var(--bg) 44rem);
  font-family: Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

main {
  min-height: 100vh;
}

.hero {
  display: grid;
  min-height: 62vh;
  padding: 5rem 1.25rem 3rem;
  place-items: center;
}

.hero__inner,
.quick-info {
  width: min(100%, 68rem);
  margin: 0 auto;
}

.hero__inner {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface) 76%, transparent)),
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 14%, transparent), color-mix(in srgb, var(--brand-2) 10%, transparent));
  box-shadow: var(--shadow);
}

.brand {
  margin: 0 0 1.4rem;
  color: var(--brand);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  padding: 0.95rem 1.25rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
}

.button--secondary {
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--text);
}

.quick-info {
  padding: 0 1.25rem 5rem;
}

.section-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.section-head p {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  min-height: 12rem;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.info-card:nth-child(4) {
  grid-column: span 2;
}

.info-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.info-card p {
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-underline-offset: 0.18em;
}

.hours-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  padding-bottom: 0.45rem;
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  text-align: right;
}

.note {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__inner {
    padding: 1.4rem;
  }

  h1 {
    max-width: 9ch;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

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

  .info-card:nth-child(4) {
    grid-column: auto;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .hours-list strong {
    text-align: left;
  }
}
