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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(255, 255, 255, 0.99) 44%, rgba(247, 242, 232, 0.52)),
    url("../img/backgrounds/floral-watermark.svg") top 140px right -180px / min(72vw, 700px) auto no-repeat,
    var(--color-white);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  min-height: 100vh;
  padding-bottom: 88px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 46px 0;
}

.section-title {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 7vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
}

.section-lead {
  margin: 0;
  max-width: 760px;
  color: var(--color-muted);
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--color-gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(201, 169, 97, 0.45);
  outline-offset: 3px;
}
