:root {
  --color-cream: #f8f4ec;
  --color-paper: #fffaf2;
  --color-ink: #28241f;
  --color-muted: #756e62;
  --color-sage: #75806b;
  --color-olive: #4e5a42;
  --color-gold: #b29a68;
  --color-lavender: #b8adc5;
  --shadow-soft: 0 22px 60px rgba(53, 44, 31, 0.16);
  --font-hero: "Italianno", "Cormorant Garamond", Georgia, serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-cream);
  font-family: var(--font-body);
  line-height: 1.65;
}

body.loading-lock {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-family: var(--font-hero);
  font-size: clamp(4.8rem, 8.8vw, 9.6rem);
  font-weight: 400;
  line-height: 0.78;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

p {
  color: var(--color-muted);
}

.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;
}

::selection {
  color: var(--color-paper);
  background: var(--color-olive);
}
