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

:root {
  --max-width: 1200px;
  --breakpoint-desktop: 900px;
  --font-base: "Lato", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* neutrals */
  --c-black: #000;
  --c-white: #fefefe;
  --c-bg-dark: #2b2b2b;

  /* brand */
  --c-brand: #cea344;
  --c-brand-muted: #4e412a;
  --c-brand-secondary: #c6a76a;

  /* text */
  --c-text: #2b2b2b;
  --c-text-inverse: #fefefe;

  /* overlays */
  --c-overlay-dark: rgba(0, 0, 0, 0.6);

  /* backgrounds */
  --c-bg-dark: #22211f;
  /* layout */
  --space-page-x: clamp(1.6rem, 5vw, 4rem);
  --space-section-y: clamp(4rem, 10vw, 8rem);

  /* vertical rhythm */
  --space-stack: 1.5rem;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
}

html {
  font-size: 0.85rem;
  scroll-behavior: smooth;
}
@media (min-width: 900px) {
  html {
    font-size: 0.95rem;
  }
}

.bg-color-dark {
  background-color: var(--c-bg-dark);
  color: var(--c-white);
}
.bg-color-bright {
  background-color: var(--c-white);
  color: var(--c-text);
}

.rm-pad-btm {
  padding-bottom: 0;
}
.txt-size-1 {
  line-height: 1.75;
  font-size: 1.3rem;
}
.txt-size-1 p {
  margin: 0 0 1.25rem;
}
.pd-tp-btn-0 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.pd-tp-btn-1 {
  padding-top: var(--space-section-y);
  padding-bottom: var(--space-section-y);
}
@media (min-width: 900px) {
  .pd-sd-dsktp {
    padding-inline: var(--space-page-x);
  }
}

/* Disable scroll when nav is open - override Lenis */
html.lenis.no-scroll,
html.lenis.no-scroll body,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100%;
}
