:root {
  --bg: #fbf9f6;
  --bg-warm: #f4efe8;
  --ink: #1a1a1a;
  --ink-muted: #5c564e;
  --accent: #2c1f4a;
  --accent-deep: #1e1535;
  --accent-soft: #4a3a6e;
  --gold: #c4a574;
  --line: rgba(26, 26, 26, 0.1);
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 18px 50px rgba(44, 31, 74, 0.08);
  --radius: 22px;
  --header-h: 76px;
  --marquee-h: 44px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow--light {
  color: #e8dcc8;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 62ch;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
