:root {
  --color-emerald-950: #102b24;
  --color-emerald-900: #15382f;
  --color-emerald-800: #1d493d;
  --color-emerald-700: #2a5c4d;

  --color-olive: #7d8a68;
  --color-gold: #c9aa74;
  --color-gold-light: #e4cfaa;

  --color-ivory: #f7f3eb;
  --color-beige: #e9dfcf;
  --color-white: #ffffff;
  --color-charcoal: #252a27;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;

  --container-width: 1240px;
  --container-padding: 32px;

  --transition-fast: 180ms ease;
  --transition-base: 320ms ease;
  --transition-slow: 650ms cubic-bezier(0.22, 1, 0.36, 1);

  --header-height: 104px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;

  color: var(--color-charcoal);
  background: var(--color-ivory);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  padding: 0;
  border: 0;
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(
    calc(100% - (var(--container-padding) * 2)),
    var(--container-width)
  );

  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 46px;
  height: 1px;
  content: "";
  background: currentColor;
}

::selection {
  color: var(--color-emerald-950);
  background: var(--color-gold-light);
}
