:root {
  color-scheme: light;
  --ink: #121417;
  --muted: #5a6068;
  --line: #d9dde3;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --yellow: #f5b51b;
  --blue: #26a9e0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 48%, #f1f3f5 100%);
}

a {
  color: inherit;
}

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

.hero {
  display: grid;
  gap: 28px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 20, 23, 0.08);
}

.hero__content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.call-button,
.secondary-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.call-button {
  padding: 0 28px;
  background: var(--yellow);
  color: #111111;
  border: 2px solid #111111;
  box-shadow: 4px 4px 0 #111111;
}

.call-button:hover,
.call-button:focus-visible {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 #111111;
}

.secondary-link {
  padding: 0 18px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--soft);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.info-block {
  min-height: 150px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-block h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.info-block p,
.info-block a,
.info-block dl {
  margin-bottom: 0;
  font-size: 1.03rem;
  line-height: 1.45;
}

.info-block a {
  font-weight: 700;
  color: var(--blue);
}

dl {
  margin-top: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

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

dt {
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 22px, 520px);
    padding: 18px 0;
  }

  .hero {
    padding: 22px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .logo {
    max-width: 250px;
  }

  .actions,
  .call-button,
  .secondary-link {
    width: 100%;
  }

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