/* CSS RESET & BASELINE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  background-color: #F4F6F1;
  color: #21403A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #15415C;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #72962E;
}
strong {
  font-weight: 600;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
blockquote {
  margin: 0 0 12px 0;
  padding: 0 0 0 18px;
  border-left: 4px solid #85B242;
  font-style: italic;
  color: #356525;
}

/* TYPOGRAPHY SCALE & ORGANIC FEEL */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  color: #15415C;
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: #15415C;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.28;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #213024;
  margin-bottom: 8px;
}
.subheadline {
  color: #72962E;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 1.38;
}
p {
  margin-bottom: 12px;
  color: #234013;
}

/* ORGANIC/NATURE COLOR PALETTE */
:root {
  --color-primary: #15415C;
  --color-secondary: #E0E5EA;
  --color-bg: #F4F6F1;
  --color-bg-alt: #fffefa;
  --color-accent: #72962E;
  --color-green: #85B242;
  --color-brown: #857060;
  --color-sand: #EAE7D6;
  --color-card-shadow: rgba(55,70,40,0.11);
  --color-error: #D65A3E;
  --radius-card: 18px;
  --radius-section: 24px 24px 44px 8px;
  --shadow-card: 0 5px 20px 0 var(--color-card-shadow);
}


/* CONTAINER & SECTION LAYOUTS */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-section);
  box-shadow: 0 1px 8px 0 var(--color-card-shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
.text-section {
  background: var(--color-sand);
  border-radius: 24px;
  box-shadow: none;
  padding: 32px 20px;
  margin-bottom: 16px;
}
.legal-section {
  background: #fff;
  border-radius: 20px;
  padding: 32px 22px;
}

/* CARD, GRID & FLEX UTILITIES */
.features-grid, .trend-grid, .outfit-cards, .blog-preview, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 16px;
}
.features-grid > div, .trend-grid > div, .outfit-cards > div, .team-bios > div, .blog-preview > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 100%;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 8px solid var(--color-green);
  position: relative;
}
.features-grid > div:hover, .trend-grid > div:hover, .outfit-cards > div:hover, .team-bios > div:hover, .blog-preview > div:hover {
  box-shadow: 0 8px 36px 0 var(--color-card-shadow);
  transform: translateY(-3px) scale(1.02);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  position: relative;
  transition: box-shadow 0.16s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 22px rgba(84,112,64,0.06);
  border-left: 6px solid var(--color-accent);
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card blockquote {
  color: #21403A;
  font-size: 1.1rem;
  border-left: 3px solid var(--color-green);
}
.testimonial-meta {
  color: #72962E;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 500;
  margin-left: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}

.expert-quote {
  background: #ECF3EA;
  border-radius: 19px;
  padding: 18px 22px 12px 16px;
  margin-top: 16px;
  max-width: 620px;
}
.expert-quote blockquote {
  border-left: 6px solid var(--color-green);
  color: #356525;
  font-size: 1.08rem;
}

/* BUTTONS */
.cta-main, .cta-secondary, .mobile-nav a.cta-main {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 12px 28px;
  margin-top: 14px;
  border-radius: 24px 15px 28px 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 3px 14px rgba(133,178,66,0.11);
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.16s;
  outline: none;
  letter-spacing: 0.02em;
}
.cta-main:hover, .cta-main:focus {
  background: #15415C;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 26px rgba(133,178,66,0.17);
}
.cta-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-green);
  margin-left: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(133,178,66,0.15);
}

/* HEADER & NAV BAR */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px 16px 20px;
  background: var(--color-secondary);
  box-shadow: 0 3px 12px rgba(21,65,92,0.06);
  min-height: 70px;
  z-index: 30;
  position: relative;
}
header a img {
  height: 44px;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  color: #15415C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 16px;
  transition: background 0.19s, color 0.18s, box-shadow 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(133,178,66,0.08);
}

/* FOOTER */
footer {
  background: #222e22;
  color: #E0E5EA;
  padding: 38px 0 24px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav nav a {
  color: #E0E5EA;
  opacity: 0.88;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 6px 8px;
  border-radius: 12px;
  transition: color 0.15s, background 0.15s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #fff;
  background: #72962E;
}
.footer-contact {
  text-align: center;
  font-size: 0.98rem;
  color: #D2E1D0;
  opacity: 0.88;
}

/* ADDRESS */
address {
  font-style: normal;
  color: #234013;
  background: #F7FBEF;
  padding: 16px 20px;
  border-radius: 16px;
  margin: 12px 0 18px 0;
  font-size: 1.06rem;
  box-shadow: 0 1px 8px rgba(114,150,46,0.06);
}

/* ORGANIC SHAPE DECORATION - Optional (for branding accent) */
.section, .card, .content-wrapper {
  /* random subtle organic mask shape background for visual interest */
  background-image: url('../assets/organic1.svg');
  background-size: 360px;
  background-repeat: no-repeat;
  background-position: 98% 97%;
  /* fallback - color only if image not found */
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 19px;
  right: 20px;
  z-index: 80;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 11px 16px;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 2px 13px rgba(21,65,92,0.11);
  transition: background 0.18s, box-shadow 0.12s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #72962E;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F7FBEF;
  box-shadow: 0 2px 18px rgba(21,65,92,0.14);
  z-index: 120;
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #15415C;
  position: absolute;
  top: 17px;
  right: 28px;
  cursor: pointer;
  z-index: 122;
  transition: color 0.19s;
}
.mobile-menu-close:focus {
  color: #72962E;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #213024;
  background: transparent;
  padding: 11px 18px 11px 8px;
  border-radius: 18px 9px 18px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.19s, color 0.17s;
  min-width: 90vw;
  margin-right: 12px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #72962E;
  color: #fff;
}
.mobile-nav a.cta-main {
  background: #85B242;
  color: #fff;
  font-weight: 700;
  margin-top: 24px;
  padding: 14px 42px;
  border-radius: 24px 15px 28px 14px;
  font-size: 1.18rem;
}

/* RESPONSIVE: MOBILE FIRST */
@media (max-width: 1100px) {
  .container {
    max-width: 92vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.5rem; }
  .features-grid > div, .trend-grid > div, .outfit-cards > div, .blog-preview > div{
    flex: 1 1 200px;
    min-width: 215px;
    max-width: 100%;
    padding: 20px 12px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 13px 2vw 12px 2vw;
  }
  .main-nav,
  header .cta-main {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 8px;
  }
  .features-grid, .trend-grid, .outfit-cards, .blog-preview, .team-bios {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  .content-wrapper {
    gap: 12px;
    padding: 0 !important;
  }
  .blog-preview > div, .outfit-cards > div, .trend-grid > div{
    min-width: 96vw;
    margin-left: -3vw;
  }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.12rem; }
  .section, .text-section, .legal-section {
    padding: 18px 4vw 20px 6vw;
    border-radius: 18px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0px 2px;
  }
  .footer-contact, .footer-nav nav {
    font-size: 0.91rem;
    gap: 8px;
  }
  .card, .testimonial-card, .feature-item {
    padding: 12px 7px;
    border-radius: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 0;
  z-index: 240;
  background: #fff;
  color: #234013;
  border-radius: 16px 16px 10px 10px;
  padding: 22px 26px 18px 26px;
  box-shadow: 0 3px 26px rgba(21,65,92,0.21);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.02rem;
  -webkit-animation: slide-in-cookie 0.42s cubic-bezier(0.65,0,0.35,1);
          animation: slide-in-cookie 0.42s cubic-bezier(0.65,0,0.35,1);
}
@keyframes slide-in-cookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 2px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  padding: 10px 20px;
  border-radius: 16px 8px 16px 8px;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  transition: background 0.16s, box-shadow 0.13s;
  box-shadow: 0 1px 7px rgba(133,178,66,0.13);
}
.cookie-banner button.accept {
  background: #72962E;
}
.cookie-banner button.reject {
  background: #D65A3E;
}
.cookie-banner button.settings {
  background: var(--color-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  opacity: 0.88;
  box-shadow: 0 2px 11px rgba(133,178,66,0.19);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 300;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,51,32,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-cookie-modal 0.28s;
}
@keyframes fadein-cookie-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffefa;
  border-radius: 19px;
  padding: 32px 20px 27px 28px;
  max-width: 94vw;
  width: 460px;
  box-shadow: 0 5px 32px rgba(21,65,92,0.21);
  position: relative;
  z-index: 312;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 13px;
  border: none;
  background: transparent;
  color: #72962E;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #72962E;
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.05rem;
  color: #15415C;
  margin-left: 4px;
}
.cookie-category .always-on {
  color: #72962E;
  font-size: 0.96rem;
  margin-left: 6px;
  font-weight: 600;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 16px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 16px 8px 16px 8px;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  padding: 10px 22px;
  background: #72962E;
  transition: background 0.16s;
}
.cookie-modal button.reject {
  background: #D65A3E;
}
.cookie-modal button.settings-save {
  background: var(--color-primary);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  opacity: 0.92;
}

/* FORMS, CONTACT-INFO & MISC */
.contact-info {
  background: #F7FBEF;
  border-radius: 14px;
  padding: 15px 18px 11px 18px;
  margin-top: 12px;
  margin-bottom: 14px;
  font-size: 1.03rem;
  color: #234013;
  box-shadow: 0 1px 5px rgba(114,150,46,0.09);
}

/* VISUAL EFFECTS & ANIMATION */
.card, .testimonial-card, .feature-item, .features-grid > div,
.trend-grid > div, .outfit-cards > div, .blog-preview > div,
.team-bios > div {
  transition: box-shadow 0.21s cubic-bezier(.24,.93,.59,1),
              transform 0.16s cubic-bezier(.24,.93,.59,1);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 9px 50px 0 rgba(114,150,46,0.13);
  transform: scale(1.024);
}

/* LISTS FOR STEPS */
ol {
  padding-left: 20px;
  margin-left: 6px;
}
ol li {
  margin-bottom: 7px;
  color: #29433E;
  font-size: 1.04rem;
}

/* HELPERS */
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mr-12 { margin-right: 12px; }
.mb-16 { margin-bottom: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.f-wrap { flex-wrap: wrap; }

/* VISUAL CLARITY FOR ACCESSIBILITY */
:focus {
  outline: 2px dashed #72962E;
  outline-offset: 2px;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Hide scroll on mobile menu when open */
body.mobile-open {
  overflow: hidden !important;
}

/* BRAND CUSTOM SCROLLBAR */
body {
  scrollbar-color: #72962E #eae7d6;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 9px;
  background: #eae7d6;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #85B242;
  border-radius: 7px;
}

/* --------- END --------- */
