:root {
  /*brand colors*/
  --color-primary: #013b24;
  --color-accent: #a8dd35;
  --color-accent-dark: #8bc34a;
  --font-display: "DM Sans", sans-serif; /* headings, brand */
  --font-body: "Inter", sans-serif; /* body copy */
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
body {
  overflow-x: hidden;
}
.layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .layout {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@layer utilities {
  .no-scrollbar::-webkit-scrollbar {
    width: 0.4rem;
    height: 0.4rem;
    display: none;
  }

  .no-scrollbar::-webkit-scrollbar-thumb {
    scroll-behavior: smooth;
  }

  .custom-scrollbar::-webkit-scrollbar-track {
    width: 0.1rem;
    background-color: white;
  }

  .custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    @apply bg-transparent;
  }

  .custom-scrollbar::-webkit-scrollbar-thumb {
    scroll-behavior: smooth;
    border-radius: 20px;
    background-color: #a8dd35;
  }
}

@font-face {
  font-family: "Degular";
  src: url("/assets/degular-font-family/DegularDemo-Medium.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("/assets/degular-font-family/DegularDemo-Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("/assets/degular-font-family/DegularDemo-Semibold.otf")
    format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("/assets/degular-font-family/DegularDemo-Light.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.footer-bottom {
  padding: 0 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

h4.footer-title {
  font-family: "Degular", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-page-content {
  color: #000000;
}

.legal-page-content > * + * {
  margin-top: 1.5rem;
}

.legal-page-content h1,
.legal-page-content h2,
.legal-page-content h3,
.legal-page-content h4,
.legal-page-content h5,
.legal-page-content h6 {
  font-family: "Degular", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-page-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-page-content h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
}

.legal-page-content p,
.legal-page-content li,
.legal-page-content blockquote,
.legal-page-content td,
.legal-page-content th {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.7;
  color: #111111;
}

.legal-page-content ul,
.legal-page-content ol {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-page-content ul {
  list-style: disc;
}

.legal-page-content ol {
  list-style: decimal;
}

.legal-page-content li + li {
  margin-top: 0.45rem;
}

.legal-page-content a {
  color: #013b24;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-page-content a:hover {
  color: #64ba4f;
}

.legal-page-content blockquote {
  border-left: 4px solid #64ba4f;
  padding-left: 1rem;
  margin: 1rem 0;
}

.legal-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
}

.legal-page-content th,
.legal-page-content td {
  border: 1px solid #e5e7eb;
  padding: 0.65rem;
  text-align: left;
}

.legal-page-content .wp-block-separator {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}
  /* ── image wrapper aspect ratio ──────────────────────────── */
  .hero-img-wrap {
    aspect-ratio: 3 / 4;
    border-radius: 4px;
  }
 
  /* ── initial fade + float-in animation ───────────────────── */
  @keyframes heroCardIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .parallax-card {
  opacity: 1;
  will-change: transform;
}

.hero-img-wrap {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
}

.hero-copy {
  opacity: 1;
}
