* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f7f5ef;
  color: #1d2d24;
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  background: rgba(247, 245, 239, 0.9);
  border-bottom: 1px solid rgba(24, 60, 42, 0.1);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #183c2a;
  font:
    25px "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.06em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px 10px 10px 2px;
  color: #d5ed83;
  background: #183c2a;
  font-family: Georgia;
  font-size: 24px;
  transform: rotate(-7deg);
}
.brand-dot {
  color: #a3c579;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #496052;
  font-size: 12px;
  font-weight: 600;
}
.main-nav > a {
  transition: color 0.18s;
}
.main-nav > a:hover {
  color: #183c2a;
}
.nav-dropdown {
  position: relative;
}
.nav-products {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #496052;
  font-size: 12px;
  font-weight: 600;
}
.nav-products span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.18s;
}
.nav-dropdown.open .nav-products span {
  transform: rotate(180deg);
}
.dropdown-panel {
  position: absolute;
  top: 45px;
  left: -24px;
  display: grid;
  width: 275px;
  padding: 13px;
  border: 1px solid rgba(24, 60, 42, 0.1);
  border-radius: 16px;
  background: #fffdf9;
  box-shadow: 0 22px 45px rgba(33, 54, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.drop-intro {
  padding: 10px 11px 13px;
  border-bottom: 1px solid rgba(24, 60, 42, 0.14);
}
.drop-intro small,
.footer-col small,
.footer-grid > div > small {
  display: block;
  color: #6c876d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.drop-intro strong {
  display: block;
  margin-top: 6px;
  color: #183c2a;
  font:
    17px "DM Serif Display",
    Georgia,
    serif;
}
.dropdown-panel > a {
  display: flex;
  justify-content: space-between;
  padding: 13px 11px;
  border-radius: 9px;
  color: #183c2a;
  font-size: 12px;
  transition:
    background 0.16s,
    padding 0.16s;
}
.dropdown-panel > a:hover {
  padding-left: 15px;
  background: #f2f5ea;
}
.nav-cta {
  display: inline-flex;
  padding: 11px 15px;
  border: 1px solid rgba(24, 60, 42, 0.25);
  border-radius: 99px;
}
.nav-cta:hover {
  color: #f7f5ef !important;
  background: #183c2a;
}
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #183c2a;
  font-size: 22px;
}
.mobile-products-link {
  display: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #607765;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow:before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5ed83;
  box-shadow: 0 0 0 4px rgba(213, 237, 131, 0.18);
  content: "";
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border: 0;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 45, 32, 0.16);
}
.button-dark {
  color: #f7f5ef;
  background: #183c2a;
}
.button-lime {
  color: #102d20;
  background: #d5ed83;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
em {
  color: #8ba878;
  font-style: italic;
}
.back-link {
  display: inline-flex;
  gap: 8px;
  color: #607765;
  font-size: 11px;
  font-weight: 700;
}
.site-footer {
  color: rgba(247, 245, 239, 0.72);
  background: #102d20;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1fr;
  gap: 45px;
  padding: 72px 0 66px;
}
.brand-light {
  color: #f7f5ef;
}
.footer-grid p {
  max-width: 250px;
  margin: 20px 0 0;
  color: rgba(247, 245, 239, 0.55);
  font-size: 12px;
  line-height: 1.7;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 12px;
}
.footer-col small,
.footer-grid > div > small {
  color: rgba(213, 237, 131, 0.72);
}
.footer-col a {
  color: rgba(247, 245, 239, 0.68);
}
.footer-col a:hover {
  color: #d5ed83;
}
.footer-quote {
  max-width: 180px !important;
  margin-top: 13px !important;
  color: rgba(247, 245, 239, 0.55) !important;
  font:
    19px/1.15 "DM Serif Display",
    Georgia,
    serif !important;
}
.footer-year {
  display: block;
  margin-top: 30px;
  color: rgba(247, 245, 239, 0.38);
  font-size: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 21px;
  border-top: 1px solid rgba(247, 245, 239, 0.12);
  color: rgba(247, 245, 239, 0.35);
  font-size: 10px;
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: 320px;
  padding: 15px 17px;
  border-radius: 12px;
  color: #f7f5ef;
  background: #183c2a;
  box-shadow: 0 15px 30px rgba(16, 45, 32, 0.2);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.22s;
}
.toast.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 850px) {
  .wrap {
    width: min(100% - 36px, 640px);
  }
  .site-header {
    height: 68px;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-products-link {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: 16px;
    color: #183c2a;
    font-size: 12px;
    font-weight: 700;
  }
  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px 22px;
    background: #f7f5ef;
    border-bottom: 1px solid rgba(24, 60, 42, 0.12);
    box-shadow: 0 18px 30px rgba(33, 54, 42, 0.1);
    z-index: 19;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a,
  .nav-products {
    padding: 13px 4px;
    text-align: left;
  }
  .nav-products {
    width: 100%;
  }
  .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
  }
  .nav-dropdown.open .dropdown-panel {
    display: grid;
  }
  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: calc(100% - 34px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 18px;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
