*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "DM Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #2a261f;
  background-color: #ebe4d8;
  background-image: radial-gradient(
      ellipse 120% 80% at 50% -20%,
      rgba(255, 255, 255, 0.35),
      transparent 55%
    ),
    linear-gradient(180deg, #f2eadc 0%, #e8dfd0 100%);
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 2.5rem);
  text-align: center;
}

.hero {
  max-width: 28rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6458;
}

.eyebrow a {
  color: inherit;
  text-decoration: none;
}

.eyebrow a:hover {
  text-decoration: underline;
}

.title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1c1914;
}

.subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.125rem, 3vw, 1.35rem);
  font-weight: 400;
  color: #4a4439;
}

.cta {
  margin-top: clamp(3rem, 10vw, 4.5rem);
  max-width: 22rem;
}

.cta-heading {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5c564a;
}

.cta-copy {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #4a4439;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  color: #1c1914;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(44, 38, 30, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: background 0.2s ease, transform 0.15s ease;
}

.phone-link:hover {
  background: rgba(255, 255, 255, 0.75);
}

.phone-link:active {
  transform: scale(0.98);
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hint {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: #7a7265;
}

@media (prefers-reduced-motion: reduce) {
  .phone-link {
    transition: none;
  }
}
