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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: clip;
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

img.img-cover {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1.15rem;
  }
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-primary);
  text-align: center;
  margin-bottom: 0.5rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold-soft);
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 100%;
  padding-inline: 0.5rem;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.section-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.section-divider span {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.section-text {
  max-width: min(720px, 100%);
  width: 100%;
  margin-inline: auto;
  text-align: center;
  color: var(--text-dark);
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.section-text--light {
  color: var(--text-muted);
}

.section-text--muted {
  color: var(--text-muted-dark);
}

.section-text + .section-text {
  margin-top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
