:root {
  --color-bg: #dfdedd;
  --color-bg-soft: #dbd2c8;
  --color-text: #2c2926;
  --color-muted: #7d7269;
  --color-brown: #59371d;
  --color-caramel: #d28f59;
  --color-nude: #d5cec8;
  --color-ice: #faf8f5;
  --color-black: #151312;
  --color-white: #ffffff;

  --font-title: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;

  --container: 1180px;
  
  --radius-lg: 36px;

  --shadow-soft: 0 24px 80px rgba(44, 41, 38, 0.1);
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-caramel);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.final-cta-section h2,
.about-preview-content h2 {
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.section-heading p,
.final-cta-section p {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-brown);
  color: var(--color-ice);
}

.btn-primary:hover {
  background: var(--color-black);
}

.btn-secondary {
  border: 1px solid rgba(91, 58, 32, 0.3);
  color: var(--color-brown);
}

.btn-secondary:hover {
  border-color: var(--color-brown);
  background: rgba(91, 58, 32, 0.06);
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--color-brown);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: scaleX(0.55);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .btn {
    width: 100%;
  }
}