:root {
  color-scheme: light;
  --sage: #aab8a4;
  --sage-deep: #71806d;
  --ink: #1d281e;
  --line: rgba(29, 40, 30, 0.18);
  --paper: rgba(252, 253, 249, 0.68);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--sage);
  color: var(--ink);
}

.site {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 28px;
}

.card {
  width: min(100%, 620px);
  padding: clamp(34px, 8vw, 68px);
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  box-shadow: 0 16px 50px rgba(35, 52, 35, 0.08);
}

.logo {
  width: min(100%, 260px);
  height: auto;
  margin: 0 auto clamp(28px, 5vw, 42px);
  display: block;
}

.intro {
  margin-bottom: 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sage-deep);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.lead {
  margin: 18px 0 0;
  font-size: 1.1rem;
}

.information {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
  text-align: left;
}

.offers,
.opening-hours {
  padding: 22px 24px;
  border: 1px solid var(--line);
}

.offers .eyebrow,
.opening-hours .eyebrow {
  margin-bottom: 14px;
}

.offers ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.14rem;
}

.offers li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.offers li::before {
  content: "✦";
  color: var(--sage-deep);
  font-size: 0.7em;
}

.opening-hours {
  background: rgba(113, 128, 109, 0.1);
}

.opening-hours p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.opening-hours a {
  color: inherit;
  text-decoration-color: var(--sage-deep);
  text-underline-offset: 3px;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  opacity: 0.62;
}

.contact-links span {
  color: var(--sage-deep);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 400;
}

footer {
  color: rgba(29, 40, 30, 0.7);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

@media (max-width: 440px) {
  .site {
    padding: 16px;
  }

  .card {
    padding: 36px 24px;
  }
}
