:root {

  --green: #1f3328e8;
  --gold: #c8a464;

  --text: #27221d;
  --muted: #7a7067;
  --white: #ffffff;
  --border: rgba(64, 43, 27, .14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Montserrat, Arial, sans-serif;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 74px 0;
}

.section-head {
  margin-bottom: 36px;
  text-align: center;
}

.section-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-title {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .25s ease;
}

.btn-primary {
  border-color: var(--gold);
}


.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .56);
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 58px 0;
  }
}