@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;1,9..144,400&display=swap";

/* src/styles.css */
:root {
  --paper: #faf7f0;
  --ink: #30372f;
  --muted: #697066;
  --coral: #d26347;
  --sage: #ced9c5;
  --sage-dark: #72866d;
  --sun: #e9c865;
  --line: #dedbd2;
  --display:
    "Fraunces",
    Georgia,
    serif;
  font-family:
    "DM Sans",
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}
button,
input,
select,
textarea {
  font: inherit;
}
a,
button {
  transition: .2s ease;
}
.content-width {
  width: min(1120px, 90vw);
  margin-inline: auto;
}
.page-head {
  padding-top: clamp(4.5rem, 10vw, 8rem);
  padding-bottom: 3.5rem;
}
.page-head h1 {
  margin: .5rem 0 1.3rem;
  font: 500 clamp(3.5rem, 8vw, 6.7rem)/.95 var(--display);
  letter-spacing: -.04em;
}
.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-height: 50px;
  padding: .8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  color: white;
  background: var(--coral);
}
.button.primary:hover {
  background: #b94f37;
  transform: translateY(-1px);
}
.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: #aaa99f;
}
.button.secondary:hover {
  border-color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
