:root {
  --navy: #001F3F;
  --mint: #3EB489;
  --mint-light: #E8F7F1;
  --bg-plain: #FFFFFF;
  --bg-neutral: #F5F7F9;
  --radius: 12px;
  --border-width: 2px;
  --text-color: #001F3F;
  --font-sans: system-ui, -apple-system, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--bg-plain);
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
}

main {
  display: block;
}

.container {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.accent-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: var(--navy);
}

img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  border: var(--border-width) solid var(--navy);
  display: block;
  max-width: 100%;
  height: auto;
}

input,
select,
textarea {
  width: 100%;
  border: var(--border-width) solid var(--navy);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--navy);
  background-color: var(--bg-plain);
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.btn-outline {
  border: var(--border-width) solid var(--navy);
  background-color: var(--bg-plain);
  color: var(--navy);
}

.btn-outline:hover {
  background-color: var(--mint-light);
  border-color: var(--navy);
}

/* Primary navy button */
.btn-navy {
  background-color: var(--navy);
  color: var(--bg-plain) !important;
  border: var(--border-width) solid var(--navy);
}

.btn-navy:hover {
  background-color: #00263a; /* slightly darker navy for hover */
  border-color: #00263a;
}

/* Utility background matching design system */
.bg-neutral {
  background-color: var(--bg-neutral);
  color: var(--text-color);
}

/* Ensure readable links and interactive states on neutral backgrounds */
.bg-neutral a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.bg-neutral a:hover {
  color: var(--mint);
  text-decoration: underline;
}

/* Navy background utility */
.bg-navy {
  background-color: var(--navy);
  color: var(--bg-plain);
}
.bg-navy svg {
  stroke: currentColor;
  fill: none;
}
/* Ensure buttons' SVGs and text use currentColor */
.btn-navy svg, .btn-navy * {
  color: inherit;
  fill: currentColor;
}

/* Price label for product cards */
.price {
  display: block;
  font-size: 1.125rem; /* ~text-lg */
  font-weight: 800;
  color: var(--navy);
  margin: 0.5rem 0;
}

/* Active navigation link (per-page, added in markup as `activ_link`) */
.activ_link {
  color: var(--mint) !important;
  text-decoration: underline;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-plain);
  border-bottom: var(--border-width) solid var(--navy);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .burger-btn {
    display: none !important;
  }
}

.nav-link {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  position: relative;
}

.nav-link:hover {
  color: var(--mint);
}

.burger-btn,
.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.burger-btn svg,
.close-btn svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-cta {
  display: none;
}

@media (min-width: 768px) {
  .shop-cta {
    display: inline-flex;
  }
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-plain);
  border-left: var(--border-width) solid var(--navy);
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.drawer-cta {
  width: 100%;
  text-align: center;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 31, 63, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.site-footer {
  background-color: var(--bg-neutral);
  padding: 4rem 0 2rem;
  border-top: var(--border-width) solid var(--navy);
  text-align: center;
}

.footer-grid {
  margin-bottom: 3rem;
  text-align: left;
}

.tagline {
  margin-top: 1rem;
  font-weight: 700;
  opacity: 0.9;
}

.contact-list,
.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.15rem;
}

/* Smaller icons for contact links */
.contact-link .icon,
.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 0.5rem;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
}

.contact-list a,
.legal-list a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
  line-height: 1.4;
}

.contact-list a:hover,
.legal-list a:hover {
  color: var(--mint);
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: var(--border-width) solid rgba(0, 31, 63, 0.1);
  padding-top: 2rem;
  font-weight: 700;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .site-footer {
    text-align: left;
  }

  .contact-list li {
    align-items: center;
  }

  .contact-list svg {
    margin-top: 0;
  }
}

/* footer extras */
.footer__extras {
  margin-top: 16px;
}

.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.footer-social__icon {
  display: block;
}

.footer__poemWrap {
  max-width: 520px;
}

.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}

/* Card component (used in products/benefits sections) */
.card {
  background-color: var(--bg-neutral);
  border: 1px solid rgba(0,31,63,0.06);
  border-radius: calc(var(--radius) - 4px);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 140px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card h3 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}
.card p {
  margin: 0;
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.4;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(2,18,30,0.06);
}

@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
    min-height: 160px;
  }
}

/* Small info/contact cards used in contact sections */
.info-card {
  background-color: var(--bg-plain);
  border: 1px solid rgba(0,31,63,0.06);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow .15s ease, transform .15s ease;
}
.info-card h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 800;
}
.info-card p {
  margin: 0;
  color: rgb(71 85 105); /* slate-ish */
  font-size: 0.95rem;
  line-height: 1.45;
}
.info-card a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.info-card a:hover {
  color: var(--mint);
  text-decoration: underline;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(2,18,30,0.06);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  flex-grow: 1;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  margin-bottom: 0;
}
.mt-4 {
  margin-top: 1rem;
}