:root {
  --sage: #9caf94;
  --sage-dark: #5f7359;
  --sage-deep: #44543f;
  --sage-light: #dfe9d7;
  --cream: #fbf7ef;
  --stone: #efe5d7;
  --stone-deep: #dfd0bd;
  --clay: #c8a187;
  --brass: #b99a63;
  --charcoal: #202321;
  --muted: #6f746c;
  --white: #ffffff;
  --star: #f6c65b;
  --border: rgba(32, 35, 33, 0.12);
  --shadow: 0 24px 70px rgba(65, 70, 62, 0.16);
  --shadow-heavy: 0 34px 110px rgba(65, 70, 62, 0.24);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

.section {
  padding: 118px 0;
}

.section-stone {
  background: var(--stone);
}

.max-width {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--brass);
}

.eyebrow.light {
  color: var(--sage-light);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -1.8px;
  color: var(--charcoal);
  margin: 0;
}

h1 {
  color: var(--white);
  font-size: clamp(50px, 5.2vw, 76px);
  line-height: 0.96;
  letter-spacing: -2.6px;
  max-width: 720px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1;
  margin-bottom: 20px;
}

.body-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(95, 115, 89, 0.24);
}

.btn-primary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--border);
  color: var(--charcoal);
}

.btn-secondary:hover {
  border-color: var(--brass);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

.hero-buttons,
.section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  h1 {
    font-size: clamp(50px, 8vw, 72px);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
    letter-spacing: -2px;
  }

  h2 {
    letter-spacing: -1.2px;
  }

  .hero-buttons .btn,
  .section-buttons .btn {
    width: 100%;
  }
}
/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(32, 35, 33, 0.96);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cookie-banner h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
}

.cookie-banner p {
  margin: 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--sage-light);
  font-weight: 800;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-banner .btn {
  white-space: nowrap;
}

.cookie-banner .btn-cookie-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-banner .btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 22px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }
}