*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --green: #A8710B;
  --green-dark: #A8710B;
  --green-light: #f1eaffe1;
  --green-mid: #5faa84;
  --amber: #e8a020;
  --amber-light: #fdf3e0;
  --cream: #faf8f3;
  --cream2: #f5f1e8;
  --text: #1c1c1c;
  --muted: #555;
  --light: #888;
  --border: #e0ddd4;
  --white: #fff;
  --red: #d94040;
  --radius: 10px;
  --radius-lg: 18px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}


/* NAV */
nav {
  background: #000;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 5px 5vw
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 20px
}

.nav-logo {
  font-size: 35px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 7px
}

.nav-logo i {
  color: var(--green-mid);
  font-size: 20px
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none
}

.nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: var(--cream2);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--light)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-right a {
  font-size: 18px;
  color: var(--white);
  transition: color .2s
}

.nav-right a:hover {
  color: var(--green)
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--white)
}


/* PAGE HERO (legal pages) */
.page-hero {
  background: var(--green-dark);
  padding: 60px 5vw 52px;
  text-align: center;
}
.page-hero .page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #a8d8c0;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.page-hero .page-hero-sub {
  font-size: 18px;
  color: #a8d8c0;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.page-hero .page-updated {
  margin-top: 20px;
  font-size: 14px;
  color: #6fa882;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* LEGAL CONTENT WRAPPER */
.legal-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 60px 5vw 80px;
}

/* Table of Contents */
.toc-box {
  background: var(--green-light);
  border: 1px solid #c5e0d3;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 48px;
}
.toc-box h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-box ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.toc-box ol li a {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s;
}
.toc-box ol li a:hover {
  color: var(--green-dark);
}

/* Legal sections */
.legal-section {
  margin-bottom: 44px;
  scroll-margin-top: 80px;
}
.legal-section h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2 i {
  color: var(--green);
  font-size: 18px;
}
.legal-section p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-section ul {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}
.legal-section ul li {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}
.legal-section strong {
  color: var(--text);
  font-weight: 800;
}

/* Highlight box */
.legal-highlight {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.legal-highlight strong {
  color: #7a4a00;
}

/* Info card row */
.legal-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.legal-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.legal-info-card i {
  color: var(--green);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.legal-info-card-text h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
}
.legal-info-card-text p {
  font-size: 15px;
  color: var(--light);
  margin: 0;
  line-height: 1.5;
}

/* CONTACT PAGE */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 5vw 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i {
  font-size: 22px;
  color: var(--green);
}
.contact-card-body h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.contact-card-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.contact-card-body a {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-hours-box {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  color: #fff;
  margin-top: 24px;
}
.contact-hours-box h3 {
  font-size: 15px;
  font-weight: 800;
  color: #a8d8c0;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 16px;
}
.contact-hours-row:last-child {
  border-bottom: none;
}
.contact-hours-row span:first-child { color: #a8d8c0; }
.contact-hours-row span:last-child { font-weight: 700; color: #fff; }

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  position: sticky;
  top: 80px;
}
.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
}
.contact-form-wrap p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .3px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  background: #fff;
}
.form-textarea {
  resize: vertical;
  line-height: 1.65;
}
.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--amber);
  color: #fff;
  padding: 16px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.form-submit-btn:hover {
  background: #d08f18;
  transform: translateY(-1px);
}
.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note i { color: var(--green); }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success i {
  font-size: 52px;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 0;
}

/* Affiliate page specific */
.aff-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.aff-partner-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.aff-partner-card i {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 10px;
}
.aff-partner-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.aff-partner-card p {
  font-size: 14px;
  color: var(--light);
  margin: 0;
  line-height: 1.5;
}

/* Page breadcrumb */
.page-breadcrumb {
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  padding: 12px 5vw;
}
.page-breadcrumb-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--light);
}
.page-breadcrumb-inner a {
  color: var(--green);
  font-weight: 700;
  transition: color .18s;
}
.page-breadcrumb-inner a:hover { color: var(--green-dark); }
.page-breadcrumb-inner i { font-size: 10px; color: var(--border); }

/* FOOTER */
footer {
  background: #000000;
  padding: 50px 5vw 28px
}

.foot-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px
}

.foot-logo {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.foot-logo i {
  color: var(--green-mid)
}

.foot-desc {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 14px
}

.foot-disc {
  font-size: 11px;
  color: #ffffff;
  line-height: 1.6
}

.foot-col h5 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.foot-col ul li a {
  font-size: 18px;
  color: #ffffff;
  transition: color .2s
}

.foot-col ul li a:hover {
  color: #fff
}

.foot-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.foot-bottom p {
  font-size: 15px;
  color: #ffffff
}

.foot-socials {
  display: flex;
  gap: 14px
}

.foot-socials a {
  color: #ffffff;
  font-size: 20px;
  transition: color .2s
}

.foot-socials a:hover {
  color: #fff
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links a {
    font-size: 17px;
    font-weight: 600;
    color: var(--green-dark);
    transition: color .2s
  }
  .foot-inner {
    grid-template-columns: 1fr 1fr
  }

  .nav-links {
    display: none
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 5vw;
    gap: 16px;
    z-index: 300
  }

  .nav-burger {
    display: block
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    position: static;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .legal-wrap {
    padding: 40px 5vw 60px;
  }
}
@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 24px 20px;
  }
  .foot-inner {
    grid-template-columns: 1fr
  }
  .page-hero {
    padding: 44px 5vw 40px;
  }
}