:root {
  --accent: #d90429;
  --accent-dark: #a90320;
  --ink: #151515;
  --muted: #616161;
  --line: #e8e8e8;
  --surface: #ffffff;
  --soft: #f6f6f6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body {
  min-height: 100%;
  margin: 0;
}

a {
  color: inherit;
}

.page {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 20px 18px 12px;
}

.brand {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 8px 0 20px;
  text-align: center;
}

.logo {
  border-radius: 8px;
  width: 100%;
  display: block;
}

.logo-reiter {
  object-fit: contain;
}
.logo-slogan {
  object-fit: contain;
}

.save-contact {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

h1 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.save-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.primary-button {
  grid-column: 1 / -1;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(217, 4, 41, 0.24);
}

.download-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
}

.download-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.primary-button:active {
  background: var(--accent-dark);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
}

.contact-row strong,
.contact-row small {
  display: block;
}

.contact-row strong {
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.contact-row small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(217, 4, 41, 0.09);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

.static-row {
  color: var(--ink);
}

.hours-row {
  align-items: start;
}

.hours-content {
  min-width: 0;
}

.hours-table {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hours-table-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.2;
}

.hours-table-row span:first-child {
  font-weight: 700;
  color: var(--ink);
}

.hours-table-row.is-today {
  color: var(--accent);
  font-weight: 700;
}

.hours-table-row.is-today span:first-child {
  color: var(--accent);
}

.footer {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 18px 18px 28px;
  text-align: center;
}

.footer a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration-color: rgba(97, 97, 97, 0.45);
  text-underline-offset: 3px;
}

@media (min-width: 640px) {
  .page {
    padding-top: 28px;
  }
}
