/* Prolina Static Build (from "PROLINA WEBSITE UPDATED FONTS.pdf") */

/* ===== ANIMATE.CSS CUSTOMIZATION ===== */
.wow {
  visibility: hidden;
}
.animate__animated {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.animate__fadeInUp,
.animate__fadeInLeft,
.animate__fadeInRight,
.animate__fadeIn {
  animation-timing-function: ease-out;
}

:root {
  --green-900: #0f2f12;
  --green-800: #143a17;
  --green-700: #1b4a20;
  --green-600: #395e3c;
  --sage-200: #d6dfbf;
  --sage-250: #cdd9b2;
  --sage-250-trans: #cdd9b23b;
  --sage-300: #c4d2a6;
  --cream-50: #f4f6ec;
  --cream-100: #eef2e6;
  --cream-100-trans: #eef2e675;
  --cream-white: #fefffa;
  --muted: #3a4b3c;

  --container: 1240px;
  --header-h: 126px; /* approximate including nav row */
  --radius: 18px;
}

@font-face {
  font-family: "Canela";
  src:
    url("../fonts/Canela-Light.woff2") format("woff2"),
    url("../fonts/Canela-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Aquebella is embedded in PDF as CFF; browsers can't directly use .cff.
   We approximate with a refined serif for now. */
:root {
  --serif: ui-serif, "Georgia", "Times New Roman", serif;
  --sans:
    "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  --display:
    "Bebas Neue", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  height: 100%;
  max-width: 100vw;
}
body {
  height: 100%;
  margin: 0;
  color: var(--green-800);
  background: var(--sage-250-trans);
  font-family: var(--sans);
  letter-spacing: 0.02em;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  max-width: 100%;
}
body.is-loading {
  position: fixed;
  width: 100%;
}

body.is-loaded:not(.page-transitioning) .page-wrapper {
  /*animation: pageReveal 0.6s ease-out forwards;*/
}

/* Site Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, var(--sage-250) 0%, var(--sage-200) 100%);
  background:
    url("../img/site/loader-background.png") center/cover no-repeat,
    linear-gradient(135deg, var(--sage-250) 0%, var(--sage-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform-origin: center center;
  transition: opacity 0.8s ease 0.3s;
}
.site-loader.is-hidden {
  pointer-events: none;
}
@media (min-width: 1450px) {
  .site-loader {
    transition:
      transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
      border-radius 0.8s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.8s ease 0.3s;
  }
  .site-loader.is-hidden {
    transform: scale(0.89, 0.935);
    border-radius: 10px;
  }
}
.site-loader.is-fading {
  animation: loaderFadeOut 1s ease forwards;
}
.site-loader-content {
  text-align: center;
  transition:
    opacity 0.6s ease,
    transform 1.5s ease;
  transition-delay: 0.5s;
}
.site-loader-content.is-fading {
  opacity: 0;
  transform: translateY(-350px);
}
.loader-brand {
  margin-bottom: 32px;
}
.loader-logo {
  font-family: "Bebas Neue", var(--display);
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--green-600);
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.loader-tagline {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.28em;
  color: var(--green-600);
  text-transform: uppercase;
  opacity: 0.85;
}
.loader-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.loader-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-600);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.loader-dots .dot:nth-child(1) {
  animation-delay: 0s;
}
.loader-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}
.loader-text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
  opacity: 0.75;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@keyframes loaderFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes loaderFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}
@keyframes pageReveal {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .site-loader {
    animation: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .site-loader.is-hidden {
    width: 100%;
    height: 100vh;
  }
  .loader-dots .dot {
    animation: none;
    opacity: 1;
  }
  body.is-loaded .page-wrapper {
    animation: none;
    opacity: 1;
  }
}

/* Background Layer */
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/site/img-017.png") center/cover no-repeat fixed;
  filter: blur(10px) brightness(0.85) opacity(0.6);
  z-index: -1;
}
/* ===== GLOBAL STYLES ===== */
button,
.btn,
a:not(nav a):not(.text-link) {
  border-radius: 10px !important;
}
/* main content wrapper */
main {
  border-radius: 15px;
  /*background:rgba(255,255,255,0.95);*/
  /*box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);*/
}
.hero-split#top,
.hero-grid {
  border-radius: 15px;
}
/* Page Wrapper - Bootstrap Container */
.page-wrapper {
  display: none;
  max-width: 1350px;
  margin: 0 auto;
  padding-bottom: 25px !important;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
@media (max-width: 1300px) {
  .page-wrapper {
    padding-bottom: 0px !important;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  background: var(--green-600);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 12px 16px;
  letter-spacing: 0.08em;
}
.header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  z-index: 1000;
  background: var(--sage-250-trans);
  backdrop-filter: blur(35px);
  border-bottom: 1px solid rgba(15, 47, 18, 0.1);
  border-radius: 0px;
}
@media (min-width: 992px) {
  .header {
    left: 225px;
    right: 225px;
    top: 25px;
    border-radius: 15px;
  }
}
.header-inner {
  padding: 18px 0 12px;
}
.brand {
  text-align: center;
}
.brand .logo,
.footer-logo {
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--green-900);
  position: relative;
  display: inline-block;
}
.reg-mark {
  top: 80%;
  font-size: 0.35em;
  font-weight: 400;
  position: absolute;
  bottom: -100px;
  right: -1.2em;
}
.brand .tagline {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--green-900);
  text-transform: uppercase;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 0 14px;
  font-size: 14px;
  letter-spacing: 0.12em;
}
.nav-row a {
  padding: 8px 6px;
  border-bottom: 2px solid transparent;
}
.nav-row a.active {
  border-bottom-color: var(--green-600);
  font-weight: 600;
}
.nav-row a:hover {
  border-bottom-color: rgba(15, 47, 18, 0.35);
}

/* Mobile nav */
.hamburger {
  display: none;
  position: fixed;
  left: 18px;
  top: 34px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 47, 18, 0.25);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.hamburger span,
.hamburger span:before,
.hamburger span:after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green-600);
  content: "";
  position: relative;
}
.hamburger span:before {
  position: absolute;
  top: -6px;
  left: 0;
}
.hamburger span:after {
  position: absolute;
  top: 6px;
  left: 0;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}
.mobile-drawer .panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--sage-250);
  border-right: 1px solid rgba(15, 47, 18, 0.18);
  padding: 18px 16px;
  transform: translateX(-102%);
  transition: transform 0.22s ease;
}
.mobile-drawer .panel .close {
  border: 1px solid rgba(15, 47, 18, 0.25);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer .panel .close:before {
  content: "×";
  font-size: 28px;
  line-height: 1;
  color: var(--green-600);
}
.mobile-links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 6px;
}
.mobile-links a {
  padding: 12px 10px;
  border-radius: 12px;
  letter-spacing: 0.12em;
}
.mobile-links a.active {
  background: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

body.nav-open {
  overflow: hidden;
}
body.nav-open .mobile-drawer {
  opacity: 1;
  pointer-events: auto;
}
body.nav-open .mobile-drawer .panel {
  transform: translateX(0);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f5e6b8;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.scroll-indicator:hover {
  opacity: 0.7;
}
.scroll-text {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5e6b8;
}
.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 1.5px solid #f5e6b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow svg {
  display: block;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 100px;
  }
  .scroll-text {
    font-size: 11px;
  }
  .scroll-arrow {
    width: 36px;
    height: 36px;
  }
  .scroll-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== HERO VIDEO ===== */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh);
  overflow: hidden;
  background: #000;
}
@media (min-width: 992px) {
  .hero-video-wrapper {
    height: calc(100vh - 50px);
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: -5px 8px 30px rgba(0, 0, 0, 0.2);
  }
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.hero-video-overlay.hidden {
  opacity: 0;
}
.hero-video-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 1000px;
}
.hero-video-title {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  width: fit-content;
  font-family: "Canela", ui-serif, "Georgia", "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(28px, 8.5vw, 66px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #f3f1e4;
  color: #e6e2c6;
  margin: 0 auto 30px auto;
  padding: 5px 30px;
  border-radius: 100px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero-video-btn {
  display: inline-block;
  padding: 10px 28px;
  font-family: "Canela", ui-serif, "Georgia", "Times New Roman", serif;
  background: var(--sage-250-trans);
  backdrop-filter: blur(10px);
  color: #e6e2c6;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.hero-video-btn:hover {
  background: rgba(136, 162, 125, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.video-overlay-toggle {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.video-overlay-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
.video-overlay-toggle svg {
  width: 20px;
  height: 20px;
}
.video-overlay-toggle.active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive video hero */
@media (max-width: 980px) {
  .hero-video-wrapper {
    /*height:calc(100vh - 68px);*/
  }
  .video-overlay-toggle {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 560px) {
  .hero-video-wrapper {
    /*height:calc(100vh - 60px);*/
  }
  .video-overlay-toggle {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .video-overlay-toggle svg {
    width: 18px;
    height: 18px;
  }
}

/* Sections */
.hero-split {
  /*background:var(--sage-250);*/
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1.05fr;
  gap: 0;
  align-items: stretch;
}
.hero-left {
  position: relative;
  min-height: 420px;
  background: url("../img/site/img-026.png") center/cover no-repeat;
  overflow: hidden;
  border-top-left-radius: 15px;
}
.hero-left:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 65% 45%,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.18)
  );
  opacity: 0.45;
}
.hero-right {
  position: relative;
  min-height: 520px;
  background: url("../img/site/img-004.png") center/cover no-repeat;
  overflow: hidden;
  border-top-right-radius: 15px;
}
.hero-right:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.2)
  );
  opacity: 0.35;
}
.hero-shop-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(15, 47, 18, 0.35);
  background: var(--green-600);
  color: #fff;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  z-index: 2;
}
.hero-shop-btn:hover {
  background: var(--green-800);
}
.hero-cta {
  position: absolute;
  right: 28px;
  bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(15, 47, 18, 0.35);
  background: var(--green-600);
  color: #fff;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover {
  background: var(--green-700);
  color: #fff;
}
.btn.light {
  background: transparent;
  color: var(--green-600);
  border-color: rgba(15, 47, 18, 0.35);
}
.btn.light:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Marquee */
.marquee {
  height: 44px;
  background: var(--green-600);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 11px 0;
  animation: marquee 18s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0.95;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 0.75;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Banner section */
.banner {
  position: relative;
  min-height: 560px;
  background: #2d5a35 url("../img/site/img-018.png") center/cover no-repeat;
  color: #fff;
}
.banner .content {
  position: absolute;
  left: 54px;
  top: 46%;
  transform: translateY(-50%);
  width: min(980px, calc(100% - 108px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  letter-spacing: 0.02em;
}
.banner .small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 14px;
}
.banner .copy {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.55;
  opacity: 0.9;
}
.banner .mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
}
.banner .mark:before {
  content: "✳";
  font-size: 96px;
  line-height: 1;
}

/* Product image section */
.full-bleed-img {
  height: 560px;
  background: #2d4f30 url("../img/site/img-017.png") center/cover no-repeat;
}

/* Reviews */
.section-pad {
  padding: 70px 0 86px;
}
.section-title {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 22px;
}
.review-wrap {
  position: relative;
  padding: 44px 0 10px;
}
.review-bg {
  position: absolute;
  inset: -40px -40px -60px -40px;
  background: url("../img/site/img-001.png") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.review-card {
  position: relative;
  background: var(--cream-50);
  border: 1px solid rgba(15, 47, 18, 0.12);
  width: min(1020px, 100%);
  margin-inline: auto;
  padding: 42px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 38px;
  align-items: center;
}
.prod-thumb {
  width: 160px;
  height: 160px;
  background: url("../img/site/img-005.png") center/cover no-repeat;
  border-radius: 16px;
  border: 1px solid rgba(15, 47, 18, 0.12);
}
.badge {
  font-family: var(--display);
  letter-spacing: 0.22em;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--green-600);
}
.review-text {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.review-actions {
  margin-top: 18px;
}

/* Our Story page */
.page {
  background: #f6f7f0;
}
.story-hero {
  padding: 28px 0 0;
}
.story-hero .hero-box {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  height: 540px;
  background: #88a27d url("../img/placeholders/placeholder.svg") center/cover
    no-repeat;
  position: relative;
}
.story-hero .hero-box:before {
  content: "ABOUT";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  letter-spacing: 0.28em;
  font-size: 14px;
  color: #fff;
  opacity: 0.85;
}
.story-hero .hero-box h1 {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 54px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  text-align: center;
  width: 90%;
}
.story-hero .hero-box .mark {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.9;
}
.story-hero .hero-box .mark:before {
  content: "✳";
  font-size: 18px;
}
.story-hero .hero-box .sub {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(720px, 90%);
  color: #fff;
  opacity: 0.9;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

/* Story mid section */
.story-mid {
  padding: 72px 0 30px;
}
.story-grid {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 40px;
  align-items: center;
}
.story-left h2 {
  margin: 0;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
}
.story-left .soul {
  font-family: var(--serif);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 38px;
}
.story-img-main {
  height: 340px;
  background: url("../img/site/img-000.png") center/cover no-repeat;
  border-radius: 2px;
}
.story-img-sub {
  position: relative;
  width: 220px;
  margin-top: -70px;
  margin-left: -40px;
  height: 170px;
  background: url("../img/site/img-000.png") center/cover no-repeat;
  border: 1px solid rgba(15, 47, 18, 0.12);
}
.story-right h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  font-size: 18px;
}
.story-right p {
  margin: 12px 0 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.75;
}

/* What is spirulina collage section */
.spirulina-collage {
  margin-top: 34px;
  height: 520px;
  background: #274f2f url("../img/placeholders/placeholder.svg") center/cover
    no-repeat;
  position: relative;
  overflow: hidden;
}
.spirulina-collage .tiles {
  position: absolute;
  left: 110px;
  top: 140px;
  display: grid;
  grid-template-columns: 180px 180px;
  grid-template-rows: 140px 140px;
  gap: 16px;
}
.tile {
  background: url("../img/site/img-000.png") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.tile.big {
  grid-column: 1 / span 1;
  grid-row: 1 / span 2;
  width: 220px;
  height: 296px;
}
.spirulina-collage .title {
  position: absolute;
  right: 110px;
  top: 160px;
  color: #fff;
  text-align: left;
  width: min(520px, calc(100% - 220px));
}
.spirulina-collage .title .kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  opacity: 0.85;
}
.spirulina-collage .title h2 {
  margin: 6px 0 14px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 66px;
  letter-spacing: 0.01em;
}
.spirulina-collage .title .meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
  line-height: 1.6;
}
.spirulina-collage .title .meta-row {
  margin-top: 14px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.75;
}
.spirulina-collage .bottom-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Footer minimal */
.footer {
  padding: 44px 0;
  background: var(--sage-250);
  border-top: 1px solid rgba(15, 47, 18, 0.1);
  margin-bottom: 25px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
.footer-inner {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(19, 42, 21, 0.75);
}

/* Generic page placeholder */
.placeholder-page {
  padding: 90px 0 120px;
  text-align: center;
}
.placeholder-page h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.placeholder-page p {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-row {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 980px) {
  .nav-row {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-left,
  .hero-right {
    min-height: 360px;
    height: fit-content;
  }
  .banner .content {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .banner h2 {
    font-size: 38px;
  }
  .review-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .story-img-sub {
    margin-left: 0;
  }
  .spirulina-collage .tiles {
    left: 24px;
    top: 220px;
    transform: scale(0.9);
    transform-origin: left top;
  }
  .spirulina-collage .title {
    left: 24px;
    right: 24px;
    top: 38px;
    width: auto;
  }
  .spirulina-collage .title h2 {
    font-size: 48px;
  }
}

/* ===== Home page content sections (from Home Page Copy.docx) ===== */

.hero-copy {
  z-index: 1;
  position: absolute;
  left: 54px;
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, calc(100% - 108px));
  background: rgba(244, 246, 236, 0.64);
  border: 1px solid rgba(15, 47, 18, 0.14);
  padding: 34px 34px 30px;
  backdrop-filter: saturate(140%) blur(6px);
}
.hero-copy .kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 47, 18, 0.82);
  margin-bottom: 10px;
}
.hero-copy h1 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--green-600);
}
.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.85;
  text-transform: uppercase;
}
.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
section {
}
.section {
  padding: 84px 0;
}
.section-cream {
  background: var(--cream-100);
}
.section-sage {
  background: var(--sage-200);
}
.section-dark {
  background: var(--green-600);
  background: var(--green-600);
  color: #fff;
}

/* About Page Section Backgrounds */
.about-mission,
.about-journey,
.about-awards {
  background: var(--cream-white);
}

/* About Page Text Color Adjustments */
.about-hero .section-h,
.about-hero .section-sub,
.about-mission .section-h,
.about-mission .section-sub,
.about-commitment .section-h,
.about-commitment .section-sub,
.about-journey .section-h,
.about-journey .section-sub,
.about-technology .section-h,
.about-technology .section-sub,
.about-awards .section-h,
.about-awards .section-sub {
  color: var(--green-600);
}
.about-hero {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */

/* Product Card Styles */
.products-hero {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.product-card {
  background: var(--cream-white);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 22px rgba(61, 82, 54, 0.05);
  height: 100%;
  max-height: 300px;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(61, 82, 54, 0.12);
  transform: translateY(-4px);
}

.product-card-large {
  /*min-height: 500px;*/
  max-height: 300px;
  flex-direction: row;
}

.product-card-large .product-card-content {
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.product-card-large .product-card-image {
  flex: 1;
  min-width: 0;
}

.product-card-large .product-card-image img {
  height: 100%;
  object-fit: cover;
}

.product-card-image {
  width: 100%;
  overflow: hidden;
}

.product-card-image img {
  border-radius: 0 !important;
  height: 100% !important;
  object-position: center;
  width: 100%;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card:not(.product-card-large) .product-card-content {
  padding: 15px;
}
.product-card:not(.product-card-large) .product-tag {
  font-size: 10px;
  margin-top: 5px;
}
.product-card:not(.product-card-large) .product-card-title {
  font-size: 14px;
  margin-top: 5px;
}
.product-card:not(.product-card-large) .product-card-description {
  font-size: 12px;
  margin-bottom: 8px;
}
.product-card:not(.product-card-large) .cta-btn {
  font-size: 12px;
  padding: 0 5px;
  border: 0;
  margin: 0;
}
.product-card:not(.product-card-large) .cta-btn-secondary {
  background: transparent;
}

.product-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sage-200);
  color: var(--green-800);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  width: fit-content;
}

.product-card-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-800);
  margin: 0 0 0x 0;
}

.product-card-large .product-card-title {
  font-size: 25px;
}

.product-card-description {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-600);
  margin: 0 0 24px 0;
  /*flex-grow: 1;*/
  height: fit-content;
}

.product-card-content .cta-btn,
.product-card-content .text-link {
}

/* Products Page Sections */
.products-hero,
.products-featured,
.products-highlight,
.products-process,
.products-pricing {
  /* Inherits from .section */
}

.section.products-featured,
.section.products-process {
  background: linear-gradient(
    135deg,
    var(--sage-250) 0%,
    var(--cream-white) 100%
  ) !important;
}

.products-featured .section-h,
.products-process .section-h,
.products-pricing .section-h {
  margin-bottom: 0;
}

/* Ensure equal height product cards in rows */
.products-featured > .container > .row {
  align-items: stretch;
}

.products-featured .row > .col-lg-6 {
  display: flex;
}

.products-featured .col-lg-6 > .product-card {
  flex: 1;
}

.products-featured .col-lg-6 > .row {
  display: flex;
  flex: 1;
}

.product-detail-section {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: visible;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .product-card {
    max-height: unset;
  }
  .product-card-large {
    min-height: auto;
    max-height: none;
    flex-direction: column;
  }

  .product-card-large .product-card-content {
    width: unset;
  }
  .product-card-large .product-card-image img {
    height: auto;
    width: 100%;
  }

  .product-card-title {
    font-size: 20px;
  }

  .product-card-large .product-card-title {
    font-size: 24px;
  }
}

/* ========================================
   PRODUCT DETAIL PAGE STYLES
   ======================================== */

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
}

.product-main-image {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream-50);
}

.product-main-image img {
  transition: transform 0.3s ease;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumbnail-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: var(--cream-50);
  opacity: 0.5;
}

.thumbnail-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.thumbnail-item:hover {
  border-color: var(--sage-250);
  opacity: 0.75;
}

.thumbnail-item.active {
  border-color: var(--green-700);
  box-shadow: 0 4px 12px rgba(61, 82, 54, 0.15);
  opacity: 1;
}

/* Product Info */
.product-info {
  padding: 0;
}

.product-breadcrumb {
  font-size: 14px;
  color: var(--green-600);
  margin-bottom: 16px;
  font-family: var(--sans);
}

.product-breadcrumb a {
  color: var(--green-600);
  text-decoration: none;
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: var(--green-800);
}

.product-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--green-800);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #ffb800;
}

.rating-count {
  font-size: 14px;
  color: var(--green-600);
  font-family: var(--sans);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.current-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--green-800);
  font-family: var(--sans);
}

.original-price {
  font-size: 24px;
  color: var(--green-600);
  text-decoration: line-through;
  font-family: var(--sans);
}

.discount-badge {
  background: #ff6b6b;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
}

.product-description {
  margin-bottom: 32px;
}

.product-description p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--green-600);
  font-family: var(--sans);
}

/* Product Options */
.product-options {
  margin-bottom: 32px;
}

.option-group {
  margin-bottom: 24px;
}

.option-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 12px;
  font-family: var(--sans);
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 8px 18px;
  border: 1px solid var(--sage-250);
  background: white;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-700);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--sans);
  min-width: 65px;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.02em;
}

.size-btn:hover {
  border-color: var(--green-700);
  background: var(--cream-50);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(61, 82, 54, 0.12);
}

.size-btn.active {
  background: linear-gradient(
    135deg,
    var(--green-700) 0%,
    var(--green-600) 100%
  );
  color: white;
  border-color: var(--green-700);
  box-shadow: 0 3px 10px rgba(61, 82, 54, 0.25);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--sage-250);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background: white;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--green-700);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--cream-50);
  color: var(--green-800);
}

.qty-btn:active {
  background: var(--sage-200);
}

.quantity-selector input {
  width: 50px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--sage-250);
  border-right: 1px solid var(--sage-250);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-800);
  background: transparent;
  font-family: var(--sans);
}

.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-add-cart,
.product-actions .btn-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--green-700) 0%,
    var(--green-600) 100%
  ) !important;
  border: none !important;
  border-radius: 8px !important;
  color: white !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 14px rgba(61, 82, 54, 0.25);
  letter-spacing: 0.02em;
  font-family: var(--sans);
  text-transform: none !important;
}

.btn-add-cart:hover,
.product-actions .btn-add-cart:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(61, 82, 54, 0.35);
  background: linear-gradient(
    135deg,
    var(--green-800) 0%,
    var(--green-700) 100%
  ) !important;
}

.btn-add-cart:active,
.product-actions .btn-add-cart:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(61, 82, 54, 0.2);
}

.btn-wishlist {
  width: 48px;
  height: 48px;
  border: 1px solid var(--sage-250);
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--green-700);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.btn-wishlist::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(255, 107, 107, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-wishlist:hover {
  border-color: #ff6b6b;
  background: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
  color: #ff6b6b;
}

.btn-wishlist:hover::before {
  opacity: 1;
}

.btn-wishlist:active {
  transform: translateY(0) scale(1);
}

.btn-wishlist svg {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.btn-wishlist:hover svg {
  fill: #ff6b6b;
  stroke: #ff6b6b;
}

/* Product Features */
.product-features {
  border-top: 1px solid var(--sage-250);
  padding-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--green-600);
  font-size: 15px;
  font-family: var(--sans);
}

.feature-item svg {
  color: var(--green-700);
  flex-shrink: 0;
}

/* Pricing Overview Table */
.pricing-overview-section {
  background: var(--cream-white);
}

.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--sage-250) transparent;
}

.pricing-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.pricing-table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.pricing-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--sage-250);
  border-radius: 4px;
}

.pricing-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--sage-300);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(61, 82, 54, 0.05);
}

.pricing-table thead {
  background: var(--green-700);
  color: white;
}

.pricing-table th {
  padding: 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
}

.pricing-table td {
  padding: 20px;
  border-bottom: 1px solid var(--sage-250);
  font-size: 15px;
  color: var(--green-600);
  font-family: var(--sans);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--cream-50);
}

.popular-row {
  background: var(--sage-200) !important;
}

.best-value-row {
  background: var(--cream-50) !important;
}

.package-name {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.popular-badge,
.best-value-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--green-700);
  color: white;
}

.best-value-badge {
  background: #ffb800;
  color: var(--green-600);
}

.price-cell {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-800);
}

.savings {
  color: #2d9a4b;
  font-weight: 600;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--sage-250);
  margin-bottom: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.product-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.tab-btn {
  padding: 14px 28px;
  border: none;
  background: transparent;
  color: var(--green-600);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  font-family: var(--sans);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn:hover {
  color: var(--green-800);
}

.tab-btn.active {
  color: var(--green-800);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-700);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    /*transform: translateY(10px);*/
  }
  to {
    opacity: 1;
    /*transform: translateY(0);*/
  }
}

/* Nutritional Table */
.nutritional-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(61, 82, 54, 0.05);
}

.nutri-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--sage-250);
}

.nutri-row:last-child {
  border-bottom: none;
}

.nutri-row:nth-child(even) {
  background: var(--cream-50);
}

.nutri-label {
  font-size: 15px;
  color: var(--green-700);
  font-weight: 500;
  font-family: var(--sans);
}

.nutri-value {
  font-size: 15px;
  color: var(--green-800);
  font-weight: 600;
  font-family: var(--sans);
}

/* Review Items */
.review-item {
  padding: 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 22px rgba(61, 82, 54, 0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.review-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-800);
  font-family: var(--sans);
}

.review-date {
  font-size: 14px;
  color: var(--green-600);
  font-family: var(--sans);
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--green-600);
  margin: 0;
  font-family: var(--sans);
}

/* Responsive Design */
@media (max-width: 991px) {
  .product-gallery {
    position: static;
    margin-bottom: 32px;
  }

  .product-title {
    font-size: 32px;
  }

  .current-price {
    font-size: 28px;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-wishlist {
    width: 100%;
  }

  .pricing-table {
    font-size: 13px;
    min-width: 700px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
  }

  .pricing-table th {
    font-size: 13px;
  }

  .price-cell {
    font-size: 18px;
  }

  .package-name {
    gap: 8px;
  }

  .popular-badge,
  .best-value-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Size Options Tablet */
  .size-options {
    gap: 6px;
  }

  .size-btn {
    padding: 7px 16px;
    font-size: 12px;
    min-width: 60px;
  }

  .quantity-selector {
    height: 34px;
  }

  .qty-btn {
    width: 32px;
    height: 34px;
    font-size: 16px;
  }

  .quantity-selector input {
    width: 45px;
    height: 34px;
    font-size: 13px;
  }

  .btn-add-cart {
    padding: 10px 24px;
    font-size: 13px;
  }

  .btn-wishlist {
    width: 44px;
    height: 44px;
  }

  .product-tabs {
    gap: 4px;
    margin-bottom: 24px;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .thumbnail-item img {
    height: 80px;
  }

  .product-title {
    font-size: 28px;
  }

  .product-tabs {
    gap: 2px;
    margin-bottom: 20px;
    padding-bottom: 2px;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 14px;
    min-width: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .tab-btn:active {
    background: var(--cream-50);
  }

  .tab-content {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Pricing Table Mobile Optimizations */
  .pricing-overview-section .section-h {
    font-size: 32px;
  }

  .pricing-table-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .pricing-table {
    font-size: 12px;
    min-width: 650px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
  }

  .pricing-table th {
    font-size: 12px;
    padding: 14px 8px;
  }

  .price-cell {
    font-size: 16px;
    white-space: nowrap;
  }

  .package-name {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .package-name strong {
    font-size: 13px;
  }

  .popular-badge,
  .best-value-badge {
    font-size: 9px;
    padding: 2px 6px;
  }

  .savings {
    font-size: 11px;
    white-space: nowrap;
  }

  .pricing-note {
    margin-top: 16px;
  }

  .pricing-note p {
    font-size: 12px !important;
    padding: 0 10px;
  }

  /* Size Options Mobile */
  .option-group {
    margin-bottom: 20px;
  }

  .option-label {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .size-btn {
    padding: 9px 10px;
    font-size: 12px;
    min-width: unset;
    width: 100%;
    border-width: 1px;
  }

  .size-btn:active {
    transform: scale(0.96);
  }

  .quantity-selector {
    width: fit-content;
    height: 34px;
  }

  .qty-btn {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .quantity-selector input {
    width: 45px;
    height: 34px;
    font-size: 13px;
  }

  .product-actions {
    flex-direction: row;
    gap: 10px;
  }

  .btn-add-cart,
  .product-actions .btn-add-cart {
    padding: 10px 20px !important;
    font-size: 13px !important;
    flex: 1;
  }

  .btn-wishlist {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .btn-wishlist svg {
    width: 18px;
    height: 18px;
  }
}

.section-head {
  margin-bottom: 34px;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 47, 18, 0.82);
  margin-bottom: 10px;
}
.section-dark .kicker {
  color: rgba(255, 255, 255, 0.78);
}
.section-h {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  letter-spacing: 0.01em;
  color: var(--green-600);
}
.section-dark .section-h {
  color: #fff;
}
.section-sub {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.85;
  color: rgba(19, 42, 21, 0.78);
}
.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  background: var(--cream-50);
  border: 1px solid rgba(15, 47, 18, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.feature-media {
  height: 170px;
  background: #234b2b center/cover no-repeat;
}
.feature-body {
  padding: 22px 22px 24px;
}
.feature-body h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  font-size: 18px;
  line-height: 1.2;
}
.feature-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.8;
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
  border-bottom: 1px solid rgba(15, 47, 18, 0.35);
  padding-bottom: 6px;
}
.text-link:hover {
  opacity: 0.85;
}

.media-one {
  background-image: url("../img/site/img-019.png");
}
.media-two {
  background-image: url("../img/site/img-010.png");
}
.media-three {
  background-image: url("../img/site/img-012.png");
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}
.story-copy p {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(19, 42, 21, 0.78);
}
.section-dark .story-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.bullets {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.bullets li {
  padding: 12px 14px;
  border: 1px solid rgba(15, 47, 18, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.section-dark .bullets li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.bullets strong {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tagline-big {
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--green-600);
}
.section-dark .tagline-big {
  color: #fff;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}
.photo-stack .photo {
  border-radius: 24px;
  border: 1px solid rgba(15, 47, 18, 0.12);
  background: #2a4f2f center/cover no-repeat;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.photo-stack .photo.main {
  position: absolute;
  inset: 0;
  background-image: url("../img/site/img-007.png");
}
.photo-stack .photo.sub {
  position: absolute;
  width: 52%;
  height: 42%;
  right: -10px;
  bottom: -12px;
  background-image: url("../img/site/img-018.png");
}

.engine {
  position: relative;
  overflow: hidden;
}
.engine:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/site/img-002.png") center/cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
.engine-inner {
  position: relative;
}
.callout-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.callout {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}
.callout h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;
}
.callout p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.engine-hero {
  margin-top: 30px;
  height: 320px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: url("../img/site/img-015.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.engine-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 40% 30%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.45)
  );
}

.engine-result {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.engine-result h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  letter-spacing: 0.01em;
}

.eco {
  position: relative;
  overflow: hidden;
}
.eco:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/site/img-016.png") center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.eco-inner {
  position: relative;
}
.mini-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mini {
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.mini .t {
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}
.mini .d {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.placeholder {
  padding: 12px 0;
}

/* ===== HEALTH BENEFITS SECTION ===== */
/* ========================================
   HEALTH BENEFITS SECTION
======================================== */

.health-benefits-section {
  background: var(--cream-50);
  padding: 100px 0 110px;
}

.benefits-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 0;
}

.benefits-headline {
  /*position: sticky;*/
  top: 100px;
}

.benefits-headline h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-600);
  letter-spacing: 0.05em;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefits-intro {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.85;
  color: rgba(19, 42, 21, 0.78);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefits-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--cream-50);
  padding: 22px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 47, 18, 0.12);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 47, 18, 0.1);
  border-color: rgba(15, 47, 18, 0.18);
}

.benefit-icon {
  width: 32px;
  height: 32px;
  margin: 0 0 16px;
  color: var(--green-600);
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.benefits-divider {
  width: 100%;
  height: 1px;
  background: rgba(15, 47, 18, 0.12);
  margin: 80px 0;
}

.benefits-image-placeholder {
  width: 100%;
  height: 650px;
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(15, 47, 18, 0.18);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 47, 18, 0.08);
}

.benefits-image-placeholder:hover {
  background: var(--sage-250);
  border-color: rgba(15, 47, 18, 0.12);
}

.benefits-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  transition: 0.3s ease;
}

.benefits-image-placeholder:hover img {
  transform: scale(1.1);
  opacity: 0.95;
}

/* Responsive for health benefits section */
@media (max-width: 980px) {
  .health-benefits-section {
    padding: 80px 0;
  }

  .benefits-top-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-headline {
    position: static;
  }

  .benefits-headline h2 {
    font-size: 38px;
  }

  .benefits-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-divider {
    margin: 60px 0;
  }

  .benefits-image-placeholder {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .health-benefits-section {
    padding: 60px 0;
  }

  .benefits-headline h2 {
    font-size: 32px;
  }

  .benefits-intro {
    font-size: 11px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-card h3 {
    font-size: 12px;
  }

  .benefit-card p {
    font-size: 10px;
  }

  .benefits-divider {
    margin: 48px 0;
  }

  .benefits-image-placeholder {
    height: 280px;
  }
}

/* ===== WELLNESS JOURNEY SECTION ===== */
/* ========================================
   WELLNESS JOURNEY SECTION
======================================== */

.wellness-journey-section {
  /* Uses .section-dark and .eco for background */
  margin-bottom: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.wellness-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.wellness-headline {
  margin: 0 0 64px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.01em;
}

.wellness-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wellness-card {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: var(--cream-white);
  box-shadow: 0 4px 22px rgba(61, 82, 54, 0.05132);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.wellness-card:hover {
  background: white;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 32px rgba(61, 82, 54, 0.132);
}

.wellness-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: var(--green-700);
}

.wellness-title {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--green-800);
  letter-spacing: 0;
}

.wellness-description {
  margin: 0 0 auto 0;
  padding-bottom: 14px;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.85;
  letter-spacing: 0.1em;
  color: var(--green-600);
}

.wellness-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.wellness-cta:hover {
  border-bottom-color: #fff;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 980px) {
  .wellness-headline {
    font-size: 38px;
    margin-bottom: 48px;
  }

  .wellness-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .wellness-container {
    padding: 0 24px;
  }

  .wellness-headline {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .wellness-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wellness-card {
    padding: 18px 16px;
  }

  .wellness-title {
    font-size: 14px;
  }

  .wellness-description {
    font-size: 10px;
  }
}

/* ========================================
   CUSTOMER TESTIMONIALS SECTION
======================================== */
.testimonials-section {
  background: var(--cream-100);
  padding: 100px 0 110px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.testimonials-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-header {
  margin-bottom: 64px;
}

.testimonials-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--green-600);
  letter-spacing: 0.01em;
}

.testimonials-intro {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  color: rgba(19, 42, 21, 0.78);
  letter-spacing: 0.04em;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-card {
  width: calc((100% - 18px) / 2);
  min-width: 0;
  max-width: calc((100% - 18px) / 2);
  flex-shrink: 0;
  background: var(--cream-50);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(15, 47, 18, 0.12);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: inset 0 4px 12px rgba(15, 47, 18, 0.1);
  border-color: rgba(15, 47, 18, 0.18);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--green-600);
}

.testimonial-quote {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 auto;
  padding-bottom: 28px;
  color: var(--green-600);
  letter-spacing: 0.01em;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 47, 18, 0.12);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(15, 47, 18, 0.08);
}

.author-avatar svg {
  stroke: var(--green-600);
  opacity: 0.4;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.02em;
}

.author-role {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(19, 42, 21, 0.65);
  letter-spacing: 0.02em;
}

.testimonial-divider {
  width: 1px;
  height: 40px;
  background: rgba(15, 47, 18, 0.12);
  flex-shrink: 0;
}

.testimonial-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.testimonial-brand svg {
  fill: var(--green-600);
  opacity: 0.7;
}

.brand-text {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.02em;
}

.testimonials-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 47, 18, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot-btn.active {
  background: var(--green-600);
}

.testimonials-arrows {
  display: flex;
  gap: 12px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green-600);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--green-600);
}

.arrow-btn:hover {
  background: rgba(15, 47, 18, 0.08);
  border-color: var(--green-600);
  transform: scale(1.05);
}

.arrow-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.arrow-btn:disabled:hover {
  background: transparent;
  border-color: var(--green-600);
  transform: scale(1);
}

/* Responsive Testimonials */
@media (max-width: 980px) {
  .testimonials-section {
    padding: 80px 0 90px;
  }

  .testimonials-heading {
    font-size: 38px;
  }

  .testimonial-footer {
    flex-wrap: wrap;
    gap: 16px;
  }

  .testimonial-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 60px 0 70px;
  }

  .testimonials-container {
    padding: 0 24px;
  }

  .testimonials-header {
    margin-bottom: 48px;
  }

  .testimonials-heading {
    font-size: 32px;
  }

  .testimonials-intro {
    font-size: 12px;
  }

  .testimonials-carousel {
    margin-bottom: 40px;
  }

  .testimonials-track {
    gap: 24px;
  }

  .testimonial-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 13px;
  }

  .author-name {
    font-size: 12px;
  }

  .author-role {
    font-size: 10px;
  }

  .brand-text {
    font-size: 11px;
  }
}

.testimonial-quote {
  font-size: 16px;
  padding-bottom: 24px;
}

.testimonial-footer {
  padding-top: 20px;
}

/* Improve responsive layout for new sections */
@media (max-width: 1350px) {
  .split {
    grid-template-columns: 1fr;
  }
  .photo-stack {
    min-height: 440px;
  }
  .hero-copy {
    left: 24px;
    width: min(680px, calc(100% - 48px));
    padding: 26px;
    position: unset;
    transform: translateY(0px);
    border-radius: 0;
  }
  section,
  .hero-split#top,
  .hero-grid,
  .hero-left,
  .hero-right {
    border-radius: 0;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .callout-grid {
    grid-template-columns: 1fr;
  }
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-video-wrapper {
    height: calc(100vh);
    margin: 0;
    border-radius: 0;
  }
  .hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 70px 0;
  }
  .section-h {
    font-size: 40px;
  }
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 34px;
  }
  .hero-copy {
    width: 100%;
  }
  .photo-stack .photo.sub {
    width: 70%;
    right: -6px;
  }
}

/* ========================================
   SAGE GRADIENT WRAPPER
======================================== */
.sage-gradient-wrapper {
  background: linear-gradient(
    180deg,
    var(--cream-100) 0%,
    var(--sage-200) 40%,
    var(--sage-250) 100%
  );
}

/* ========================================
   SECTION A: IMPACT + STATS
======================================== */
.impact-section {
  background: transparent;
  padding: 100px 0;
}

.impact-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.impact-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-600);
  margin: 0;
  letter-spacing: 0.01em;
}

.impact-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.impact-intro {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(19, 42, 21, 0.78);
  margin: 0;
  letter-spacing: 0.04em;
  background: var(--cream-50);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(15, 47, 18, 0.12);
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream-50);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(15, 47, 18, 0.12);
  transition: all 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 47, 18, 0.1);
  border-color: rgba(15, 47, 18, 0.18);
}

.stat-number {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--green-600);
}

.stat-caption {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  letter-spacing: 0.02em;
}

/* ========================================
   SECTION B: CTA
======================================== */
.cta-section {
  background: transparent;
  padding: 100px 0;
}

.cta-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.cta-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-600);
  margin: 0;
  letter-spacing: 0.01em;
}

.cta-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--cream-50);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(15, 47, 18, 0.12);
}

.cta-intro {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(19, 42, 21, 0.78);
  margin: 0;
  letter-spacing: 0.04em;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-btn-primary {
  background: var(--green-600);
  color: #fff;
  border: 1.5px solid var(--green-600);
}

.cta-btn-primary:hover {
  background: rgba(15, 47, 18, 0.9);
  border-color: rgba(15, 47, 18, 0.9);
  transform: scale(1.02);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--green-600);
  border: 1.5px solid var(--green-600);
}

.cta-btn-secondary:hover {
  background: rgba(15, 47, 18, 0.08);
  transform: scale(1.02);
}

/* ========================================
   SECTION C: NEWSLETTER
======================================== */
.newsletter-section {
  background: transparent;
  padding: 100px 0;
}

.newsletter-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.newsletter-heading {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-600);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.newsletter-subtext {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  margin: 0;
  letter-spacing: 0.02em;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--cream-50);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(15, 47, 18, 0.12);
}

.newsletter-input-row {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  padding: 14px 20px;
  border: 1.5px solid rgba(15, 47, 18, 0.2);
  border-radius: 12px;
  background: #fff;
  color: var(--green-600);
  outline: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.newsletter-input:focus {
  border-color: var(--green-600);
  background: var(--cream-50);
}

.newsletter-input::placeholder {
  color: rgba(19, 42, 21, 0.4);
}

.newsletter-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--green-600);
  color: #fff;
  border: 1.5px solid var(--green-600);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter-btn:hover {
  background: rgba(15, 47, 18, 0.9);
  border-color: rgba(15, 47, 18, 0.9);
  transform: scale(1.02);
}

.newsletter-disclaimer {
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.5);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Responsive: All Three Sections */
@media (max-width: 980px) {
  .impact-grid,
  .cta-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .impact-heading,
  .cta-heading {
    font-size: 38px;
  }

  .newsletter-heading {
    font-size: 36px;
  }

  .stat-number {
    font-size: 44px;
  }

  .impact-stats {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .impact-section,
  .cta-section,
  .newsletter-section {
    padding: 80px 0;
  }

  .impact-heading,
  .cta-heading {
    font-size: 32px;
  }

  .newsletter-heading {
    font-size: 28px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-number {
    font-size: 44px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: fit-content;
    text-align: left;
  }

  .newsletter-input-row {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }
}

/* ========================================
   OUR TEAM SECTION
======================================== */

.team {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--cream-100-trans) 30%,
    var(--cream-100) 100%
  );
  box-shadow: inset 0 60px 80px 20px var(--sage-250);
  pointer-events: none;
}

.team-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Header */
.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(19, 42, 21, 0.65);
  margin: 0 0 16px;
}

.team-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-600);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.team-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(19, 42, 21, 0.78);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.04em;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}

/* Team Card */
.team-card {
  background: var(--cream-50);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  text-align: center;
  transition: all 0.3s ease;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 47, 18, 0.12);
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 47, 18, 0.1);
  border-color: rgba(15, 47, 18, 0.18);
}

.team-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(211, 211, 211, 0.568);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 47, 18, 0.08);
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-card:hover .team-image {
  background: var(--sage-250);
  border-color: rgba(15, 47, 18, 0.12);
}

.team-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-600);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.team-role {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(19, 42, 21, 0.65);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.team-description {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.team-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--green-600);
  transition: all 0.3s ease;
  border-radius: 50%;
  background: transparent;
}

.team-social a:hover {
  color: var(--green-600);
  transform: translateY(-2px);
  background: rgba(15, 47, 18, 0.08);
}

/* Bottom CTA */
.team-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream-50);
  border-radius: 20px;
  border: 1px solid rgba(15, 47, 18, 0.12);
  max-width: 800px;
  margin: 0 auto;
}

.team-cta-heading {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-600);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.team-cta-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  margin: 0 0 28px;
  letter-spacing: 0.04em;
}

.team-cta-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  padding: 14px 32px;
  background: var(--green-600);
  color: #fff;
  border: 1.5px solid var(--green-600);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-cta-btn:hover {
  background: rgba(15, 47, 18, 0.9);
  border-color: rgba(15, 47, 18, 0.9);
  transform: scale(1.02);
  color: #fff;
}

/* Responsive: Tablet */
@media (max-width: 980px) {
  .team {
    padding: 80px 0;
  }

  .team-header {
    margin-bottom: 48px;
  }

  .team-heading {
    font-size: 38px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 56px;
  }

  .team-cta {
    padding: 40px 28px;
  }

  .team-cta-heading {
    font-size: 32px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .team {
    padding: 60px 0;
  }

  .team-header {
    margin-bottom: 40px;
  }

  .team-eyebrow {
    font-size: 11px;
  }

  .team-heading {
    font-size: 32px;
  }

  .team-subtitle {
    font-size: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .team-card {
    padding: 20px;
  }

  .team-cta {
    padding: 32px 24px;
  }

  .team-cta-heading {
    font-size: 28px;
  }

  .team-cta-subtitle {
    font-size: 14px;
  }

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

/* ========================================
   LOGO CLOUD / TRUST STRIP
======================================== */

.logo-cloud {
  background: url("../img/site/leaders-2.png") top/cover no-repeat fixed;
  padding: 100px 0;
  border-top: 1px solid rgba(15, 47, 18, 0.08);
  overflow: hidden;
  position: relative;
}

.logo-cloud::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(241, 234, 223, 0.48) 50%,
    rgba(255, 255, 255, 0.22) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.logo-cloud-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.logo-cloud-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 56px;
  color: var(--green-600);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.logo-cloud-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.logo-cloud-track {
  display: flex;
  gap: 48px;
  animation: scroll-logos 35s linear infinite;
  width: fit-content;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-cloud-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 18px 28px;
  background: var(--cream-50);
  border: 1px solid rgba(15, 47, 18, 0.12);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(15, 47, 18, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 47, 18, 0.1);
  border-color: rgba(15, 47, 18, 0.18);
}

.logo-item svg {
  color: var(--green-600);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.logo-item:hover svg {
  opacity: 1;
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(19, 42, 21, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .logo-cloud {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .logo-cloud-heading {
    font-size: 32px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .logo-cloud-track {
    gap: 32px;
    animation-duration: 25s;
  }

  .logo-item {
    padding: 14px 20px;
    gap: 10px;
    border-radius: 18px;
  }

  .logo-text {
    font-size: 11px;
  }
}

/* ========================================
   SITE FOOTER
======================================== */

.site-footer {
  background: var(--sage-250);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(15, 47, 18, 0.12);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .site-footer {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* Footer Brand Column */
.footer-brand {
  max-width: 380px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--green-600);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  position: relative;
  width: fit-content;
}

.footer-description {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-row {
  display: flex;
  gap: 8px;
}

.footer-input {
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  padding: 12px 16px;
  background: var(--cream-50);
  color: var(--green-600);
  border: 1px solid rgba(15, 47, 18, 0.12);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-input:focus {
  border-color: rgba(15, 47, 18, 0.25);
}

.footer-input::placeholder {
  color: rgba(19, 42, 21, 0.5);
}

.footer-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  background: var(--green-600);
  color: var(--cream-50);
  border: 1px solid var(--green-600);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(15, 47, 18, 0.2);
}

.footer-disclaimer {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
  color: rgba(19, 42, 21, 0.6);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-600);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(19, 42, 21, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-links a:hover {
  color: var(--green-600);
}

/* Footer Social */
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(19, 42, 21, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-social a:hover {
  color: var(--green-600);
}

/* Footer Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(15, 47, 18, 0.12);
  margin-bottom: 24px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(19, 42, 21, 0.6);
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(19, 42, 21, 0.6);
  text-decoration: underline;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-legal a:hover {
  color: var(--green-600);
}

/* Responsive: Tablet */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .site-footer {
    padding: 60px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .footer-btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

/* ========================================
   FAQ PAGE STYLES
======================================== */

/* FAQ Hero Section */
.faq-hero {
  background: url("../img/site/img-005-hori.png") center/cover no-repeat fixed;
  padding: 160px 0 120px;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 25px;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(194, 207, 188, 0.85) 0%,
    rgba(241, 234, 223, 0.75) 50%,
    rgba(194, 207, 188, 0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.faq-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.faq-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}

.faq-hero-title {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.faq-hero-description {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.faq-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.faq-hero-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.faq-hero-btn-primary {
  background: var(--green-600);
  color: var(--cream-50);
  border: 1px solid var(--green-600);
}

.faq-hero-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(15, 47, 18, 0.2);
}

.faq-hero-btn-secondary {
  background: transparent;
  color: var(--green-600);
  border: 1px solid var(--green-600);
}

.faq-hero-btn-secondary:hover {
  background: var(--green-600);
  color: var(--cream-50);
  transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fff 100%);
  padding: 100px 0;
}

.faq-section-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-section-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-section-intro {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  letter-spacing: 0.02em;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 47, 18, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(15, 47, 18, 0.18);
  box-shadow: 0 4px 12px rgba(15, 47, 18, 0.06);
}

.faq-item.active {
  border-color: rgba(15, 47, 18, 0.18);
  box-shadow: 0 4px 12px rgba(15, 47, 18, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--cream-50);
}

.faq-question-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.02em;
  padding-right: 20px;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--green-600);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-content {
  min-height: 0;
  overflow: hidden;
  padding: 0px 28px 0px 28px;
  transition: padding 0.4s ease;
}

.faq-item.active .faq-answer-content {
  padding: 16px 28px 24px 28px;
}

.faq-answer-content p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(19, 42, 21, 0.78);
  letter-spacing: 0.02em;
  margin: 0;
}

/* FAQ Bottom CTA */
.faq-cta {
  background: var(--cream-100-trans);
  padding: 80px 0;
}

.faq-cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-cta-content {
  text-align: center;
  background: var(--cream-100);
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: 0 4px 12px rgba(15, 47, 18, 0.06);
}

.faq-cta-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.faq-cta-description {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(19, 42, 21, 0.78);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.faq-cta-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 40px;
  background: var(--green-600);
  color: var(--cream-50);
  border: 1px solid var(--green-600);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.faq-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(15, 47, 18, 0.2);
}

/* Responsive: Tablet */
@media (max-width: 980px) {
  .faq-hero {
    padding: 140px 0 100px;
  }

  .faq-hero-title {
    font-size: 48px;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-section-title {
    font-size: 40px;
  }

  .faq-cta {
    padding: 60px 0;
  }

  .faq-cta-title {
    font-size: 32px;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .faq-hero {
    padding: 120px 0 80px;
  }

  .faq-hero-title {
    font-size: 36px;
  }

  .faq-hero-description {
    font-size: 14px;
  }

  .faq-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .faq-hero-btn {
    width: 100%;
    text-align: center;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-header {
    margin-bottom: 48px;
  }

  .faq-section-title {
    font-size: 32px;
  }

  .faq-section-intro {
    font-size: 14px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0px 24px 0px 24px;
  }

  .faq-item.active .faq-answer-content {
    padding: 12px 24px 20px 24px;
  }

  .faq-answer-content p {
    font-size: 13px;
  }

  .faq-cta {
    padding: 60px 0;
  }

  .faq-cta-content {
    padding: 40px 24px;
  }

  .faq-cta-title {
    font-size: 28px;
  }

  .faq-cta-description {
    font-size: 14px;
  }

  .faq-cta-btn {
    width: 100%;
  }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

/* Contact Hero Section */
.contact-hero {
  background: url("../img/site/img-005-hori.png") center/cover no-repeat fixed;
  position: relative;
  padding: 160px 0 120px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(250, 248, 243, 0.75) 50%,
    rgba(218, 227, 216, 0.65) 100%
  );
  z-index: 1;
}

.contact-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  display: block;
  margin-bottom: 16px;
}

.contact-hero-title {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--green-600);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.contact-hero-description {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0 50px;
  background: var(--sage-200);
}

.contact-form-card {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(15, 47, 18, 0.08);
  height: 100%;
}

.contact-form-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.contact-form-subtitle {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-600);
  opacity: 0.7;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.contact-form .form-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--green-600);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.contact-form .form-control {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--green-600);
  background: white;
  border: 1px solid rgba(194, 207, 188, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .form-control:focus {
  background: white;
  border-color: var(--sage-250);
  box-shadow: 0 0 0 4px rgba(194, 207, 188, 0.12);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  background: var(--green-600);
  border: none;
  border-radius: 12px;
  padding: 16px 48px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.contact-submit-btn:hover {
  background: #0a2e0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 47, 18, 0.2);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Contact Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.contact-info-card {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 24px rgba(15, 47, 18, 0.08);
}

.contact-info-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage-200), var(--sage-250));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
}

.contact-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  opacity: 0.45;
}

.contact-info-value {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--green-600);
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.contact-info-value:hover {
  color: var(--sage-250);
  opacity: 1;
}

.contact-info-value p {
  margin: 0;
  line-height: 1.6;
}

/* Business Hours */
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(194, 207, 188, 0.2);
}

.contact-hours-row:last-child {
  border-bottom: none;
}

.contact-hours-day {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.contact-hours-time {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.55;
}

/* Map & Info Section */
.contact-map-info {
  padding: 50px 0 100px;
  background: var(--sage-200);
}

.contact-map-wrapper {
  height: 100%;
}

.contact-map-header {
  margin-bottom: 28px;
}

.contact-map-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.contact-map-subtitle {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.contact-map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 47, 18, 0.12);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Contact CTA */
.contact-cta {
  padding: 100px 0;
  background: var(--sage-200);
}

.contact-cta-card {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 64px 48px;
  box-shadow: 0 4px 24px rgba(15, 47, 18, 0.08);
}

.contact-cta-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.contact-cta-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.7;
  margin: 0;
}

.contact-cta-btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  background: var(--green-600);
  border-radius: 12px;
  padding: 16px 48px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-cta-btn:hover {
  background: #0a2e0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 47, 18, 0.2);
  color: white;
}

.contact-cta-btn:active {
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-hero {
    padding: 120px 0 80px;
    min-height: 50vh;
  }

  .contact-hero-title {
    font-size: 48px;
  }

  .contact-hero-description {
    font-size: 16px;
  }

  .contact-form-section {
    padding: 80px 0 40px;
  }

  .contact-form-card {
    padding: 36px;
  }

  .contact-map-info {
    padding: 40px 0 80px;
  }

  .contact-map-title {
    font-size: 28px;
  }

  .contact-cta {
    padding: 80px 0;
  }

  .contact-cta-card {
    padding: 48px 36px;
    text-align: center;
  }

  .contact-cta-title {
    font-size: 32px;
  }

  .contact-cta-btn {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-hero-description {
    font-size: 15px;
  }

  .contact-form-section {
    padding: 60px 0 30px;
  }

  .contact-form-card {
    padding: 28px;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .contact-map-info {
    padding: 30px 0 20px;
  }

  .contact-map-wrapper {
    margin-bottom: 24px;
  }

  .contact-info-card {
    padding: 28px;
  }

  .contact-info-title {
    font-size: 22px;
  }

  .contact-map-title {
    font-size: 24px;
  }

  .contact-map-frame iframe {
    height: 350px;
  }

  .contact-cta {
    padding: 30px 0;
  }

  .contact-cta-card {
    padding: 36px 24px;
  }

  .contact-cta-title {
    font-size: 26px;
  }

  .contact-submit-btn {
    padding: 14px 36px;
  }
}

/* ========================================
   BLOG PAGE STYLES
======================================== */

/* Blog Hero Section */
.blog-hero {
  background: url("../img/site/leaders-1.png") center/cover no-repeat fixed;
  position: relative;
  padding: 160px 0 120px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(250, 248, 243, 0.75) 50%,
    rgba(218, 227, 216, 0.65) 100%
  );
  z-index: 1;
}

.blog-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.blog-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  display: block;
  margin-bottom: 16px;
}

.blog-hero-title {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--green-600);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.blog-hero-description {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Content Section */
.blog-content {
  padding: 100px 0;
  background: linear-gradient(140deg, var(--cream-100) 30%,var(--cream-50) 60%, var(--cream-100-trans) 100%);
}

/* Featured Post */
.blog-post-featured {
  background: var(--cream-50);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 47, 18, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.blog-post-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 47, 18, 0.12);
}

.blog-post-featured .blog-post-image {
  height: 400px;
}

.blog-post-featured .blog-post-image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-featured:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-featured .blog-post-content {
  padding: 40px;
}

.blog-post-featured .blog-post-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.blog-post-featured .blog-post-excerpt {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 400px;
}

.blog-post-card {
  background: var(--cream-50);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 47, 18, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 47, 18, 0.12);
}

.blog-post-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--green-600);
  padding: 6px 16px;
  border-radius: 20px;
}

.blog-post-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-post-date,
.blog-post-read {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.6;
}

.blog-post-divider {
  color: var(--green-600);
  opacity: 0.3;
}

.blog-post-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.blog-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: var(--sage-250);
}

.blog-post-excerpt {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.75;
  margin-bottom: 12px;
  flex: 1;
}

.blog-post-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-post-link:hover {
  color: var(--sage-250);
  transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pagination-btn {
  font-family: var(--sans);
  background: var(--cream-50);
  border: 1px solid rgba(194, 207, 188, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-btn:hover:not(:disabled) {
  background: var(--green-600);
  color: white;
  border-color: var(--green-600);
  transform: scale(1.1);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--green-600);
  font-weight: 500;
  padding: 0 8px;
}

.pagination-current {
  font-weight: 600;
}

.pagination-divider {
  opacity: 0.4;
}

.pagination-total {
  opacity: 0.6;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-widget {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(15, 47, 18, 0.08);
}

.blog-widget-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.blog-widget-text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.7;
  margin-bottom: 16px;
}

/* Search Widget */
.blog-search-form {
  position: relative;
  display: flex;
}

.blog-search-input {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--green-600);
  background: white;
  border: 1px solid rgba(194, 207, 188, 0.3);
  border-radius: 12px;
  padding: 10px 40px 10px 14px;
  width: 100%;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-search-input:focus {
  border-color: var(--sage-250);
  box-shadow: 0 0 0 4px rgba(194, 207, 188, 0.12);
  outline: none;
}

.blog-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--green-600);
  padding: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.blog-search-btn:hover {
  color: var(--sage-250);
}

/* Categories Widget */
.blog-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-categories-list li a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--green-600);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(194, 207, 188, 0.2);
  transition: color 0.3s ease;
}

.blog-categories-list li:last-child a {
  border-bottom: none;
}

.blog-categories-list li a:hover {
  color: var(--sage-250);
}

.blog-categories-list li a span {
  font-size: 12px;
  opacity: 0.6;
}

/* Recent Posts Widget */
.blog-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-recent-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(194, 207, 188, 0.2);
}

.blog-recent-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-recent-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-recent-title {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--green-600);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.blog-recent-link:hover .blog-recent-title {
  color: var(--sage-250);
}

.blog-recent-date {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--green-600);
  letter-spacing: 0.02em;
  opacity: 0.5;
}

/* Newsletter Widget */
.blog-widget-newsletter {
  background: linear-gradient(135deg, var(--cream-100), var(--cream-100-trans));
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-newsletter-input {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--green-600);
  background: white;
  border: 1px solid rgba(194, 207, 188, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-newsletter-input:focus {
  border-color: var(--sage-250);
  box-shadow: 0 0 0 4px rgba(194, 207, 188, 0.12);
  outline: none;
}

.blog-newsletter-btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  background: var(--green-600);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-newsletter-btn:hover {
  background: #0a2e0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 47, 18, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .blog-hero {
    padding: 120px 0 80px;
    min-height: 50vh;
  }

  .blog-hero-title {
    font-size: 48px;
  }

  .blog-hero-description {
    font-size: 16px;
  }

  .blog-content {
    padding: 80px 0;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
  }

  .blog-post-featured .blog-post-image {
    height: 320px;
  }

  .blog-post-featured .blog-post-content {
    padding: 32px;
  }

  .blog-post-featured .blog-post-title {
    font-size: 32px;
  }

  .blog-sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    padding: 100px 0 60px;
  }

  .blog-hero-title {
    font-size: 36px;
  }

  .blog-hero-description {
    font-size: 15px;
  }

  .blog-content {
    padding: 60px 0;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .blog-post-featured .blog-post-image {
    height: 240px;
  }

  .blog-post-featured .blog-post-content {
    padding: 24px;
  }

  .blog-post-featured .blog-post-title {
    font-size: 28px;
  }

  .blog-post-featured .blog-post-excerpt {
    font-size: 15px;
  }

  .blog-post-image {
    height: 180px;
  }

  .blog-post-content {
    padding: 20px;
  }

  .blog-post-title {
    font-size: 18px;
  }

  .blog-widget {
    padding: 24px;
  }

  .blog-widget-title {
    font-size: 22px;
  }

  .pagination-list {
    gap: 6px;
  }

  .pagination-link {
    padding: 8px 12px;
    min-width: 38px;
    font-size: 14px;
  }
}

/* ========================================
   BLOG POST PAGE STYLES
======================================== */

/* Blog Post Header */
.blog-post-header {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--cream-50) 0%, white 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.blog-post-breadcrumb {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--green-600);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-breadcrumb a {
  color: var(--green-600);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-post-breadcrumb a:hover {
  color: var(--green-800);
}

.blog-post-breadcrumb .separator {
  color: var(--sage-250);
}

.blog-post-breadcrumb .current {
  color: var(--green-800);
  font-weight: 500;
}

.blog-post-header-content {
  text-align: center;
}

.blog-post-category-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-700);
  color: white;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 24px;
}

.blog-post-main-title {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--green-800);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}

.blog-post-subtitle {
  font-family: var(--sans);
  font-size: 20px;
  color: var(--green-600);
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-meta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--sage-250);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-800);
}

.author-title {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--green-600);
  opacity: 0.7;
}

.blog-post-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--green-600);
}

.meta-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-divider {
  opacity: 0.4;
}

/* Featured Image */
.blog-post-featured-section {
  padding: 60px 0;
  background: linear-gradient(
    180deg,
    var(--cream-white) 0%,
    var(--cream-100) 50%,
    var(--cream-white) 100%
  );
}

.blog-post-featured-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(61, 82, 54, 0.12);
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Post Content */
.blog-post-content-section {
  padding: 40px 0 100px;
  background: linear-gradient(
    180deg,
    var(--cream-white) 0%,
    var(--cream-100) 30%,
    var(--cream-100) 70%,
    var(--cream-white) 100%
  );
}

.blog-post-article {
  font-family: var(--sans);
}

.post-lead {
  margin-bottom: 40px;
}

.post-lead p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--green-700);
  font-weight: 400;
}

.post-content {
  color: var(--green-600);
  font-size: 17px;
  line-height: 1.8;
}

.post-content h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--green-800);
  margin: 48px 0 24px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.post-content h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--green-800);
  margin: 40px 0 20px 0;
  line-height: 1.4;
}

.post-content h4 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-800);
  margin: 32px 0 16px 0;
}

.post-content p {
  margin-bottom: 24px;
}

.post-content ul,
.post-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.post-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.post-content strong {
  font-weight: 600;
  color: var(--green-800);
}

.post-content a {
  color: var(--green-700);
  text-decoration: underline;
  transition: color 0.2s;
}

.post-content a:hover {
  color: var(--green-600);
}

/* Quote */
.post-quote {
  background: var(--cream-50);
  border-left: 4px solid var(--green-700);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
  position: relative;
}

.post-quote svg {
  color: var(--green-700);
  margin-bottom: 16px;
}

.post-quote p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  color: var(--green-800);
  font-style: italic;
  margin: 0;
}

.post-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  color: var(--green-600);
  opacity: 0.8;
}

/* Inline Image */
.post-image-inline {
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
}

.post-image-inline img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  font-size: 14px;
  color: var(--green-600);
  opacity: 0.7;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Tips Box */
.post-tips {
  background: linear-gradient(135deg, var(--sage-200) 0%, var(--cream-50) 100%);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
}

.post-tips h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-800);
  margin: 0 0 20px 0;
}

.post-tips h4 svg {
  color: var(--green-700);
}

.post-tips ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.post-tips li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
}

.post-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
  font-size: 18px;
}

/* CTA Box */
.post-cta-box {
  background: linear-gradient(
    135deg,
    var(--green-700) 0%,
    var(--green-600) 100%
  );
  border-radius: 20px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
  box-shadow: 0 12px 40px rgba(61, 82, 54, 0.25);
}

.cta-box-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cta-box-icon svg {
  color: white;
}

.post-cta-box h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: white;
  margin: 0 0 16px 0;
}

.post-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.post-cta-box .cta-btn {
  background: white;
  color: var(--green-800);
  border-color: white;
}

.post-cta-box .cta-btn:hover {
  background: var(--cream-50);
  border-color: var(--cream-50);
  transform: translateY(-2px);
}

/* Tags */
.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 32px 0;
  border-top: 1px solid var(--sage-250);
  margin-top: 48px;
}

.tags-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-800);
}

.tag-link {
  padding: 6px 16px;
  background: var(--cream-50);
  color: var(--green-700);
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.tag-link:hover {
  background: var(--sage-200);
  border-color: var(--green-700);
  color: var(--green-800);
}

/* Share Section */
.post-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid var(--sage-250);
  flex-wrap: wrap;
  gap: 16px;
}

.share-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-800);
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.share-facebook {
  background: #1877f2;
  color: white;
}

.share-facebook:hover {
  background: #0d5dbf;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-twitter:hover {
  background: #0c85d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.share-linkedin {
  background: #0077b5;
  color: white;
}

.share-linkedin:hover {
  background: #005582;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.share-email {
  background: var(--sage-200);
  color: var(--green-700);
}

.share-email:hover {
  background: var(--green-700);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 82, 54, 0.2);
}

/* Author Bio */
.post-author-bio {
  display: flex;
  gap: 24px;
  padding: 40px;
  background: var(--cream-50);
  border-radius: 16px;
  margin-top: 48px;
}

.author-bio-avatar {
  flex-shrink: 0;
}

.author-bio-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.author-bio-content {
  flex: 1;
}

.author-bio-name {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 8px;
}

.author-bio-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--green-600);
  margin-bottom: 16px;
}

.author-bio-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--green-700);
  color: white;
  transform: translateY(-2px);
}

/* Sidebar */
.blog-post-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: var(--cream-50);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(61, 82, 54, 0.06);
}

.widget-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--green-800);
  margin-bottom: 20px;
}

.widget-description {
  font-size: 14px;
  color: var(--green-600);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Newsletter Widget */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px 16px;
  border: 1px solid var(--sage-250);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--sans);
  transition: all 0.2s;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(61, 82, 54, 0.1);
}

.newsletter-form button {
  padding: 12px 24px;
  font-size: 13px;
}

/* Related Posts */
.related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-post-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sage-250);
}

.related-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-post-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-post-item:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  flex: 1;
}

.related-post-title {
  margin: 0 0 8px 0;
}

.related-post-title a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--green-800);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.related-post-title a:hover {
  color: var(--green-700);
}

.related-post-meta {
  font-size: 12px;
  color: var(--green-600);
  opacity: 0.7;
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 12px;
}

.categories-list li:last-child {
  margin-bottom: 0;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: white;
  border-radius: 8px;
  color: var(--green-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.categories-list a:hover {
  background: var(--sage-200);
  color: var(--green-800);
  transform: translateX(4px);
}

.categories-list span {
  font-size: 12px;
  opacity: 0.6;
}

/* Popular Posts */
.popular-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-post-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.popular-post-number {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--green-700);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.popular-post-content {
  flex: 1;
}

.popular-post-content h4 {
  margin: 0 0 6px 0;
}

.popular-post-content h4 a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-800);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.popular-post-content h4 a:hover {
  color: var(--green-700);
}

.popular-post-views {
  font-size: 12px;
  color: var(--green-600);
  opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .blog-post-header {
    padding: 120px 0 40px;
  }

  .blog-post-main-title {
    font-size: 42px;
  }

  .blog-post-subtitle {
    font-size: 18px;
  }

  .blog-post-meta-header {
    flex-direction: column;
    gap: 20px;
  }

  .blog-post-sidebar {
    position: static;
    margin-top: 60px;
  }

  .post-content h2 {
    font-size: 32px;
  }

  .post-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .blog-post-header {
    padding: 100px 0 30px;
  }

  .blog-post-main-title {
    font-size: 32px;
  }

  .blog-post-subtitle {
    font-size: 16px;
  }

  .blog-post-featured-section {
    padding: 40px 0;
  }

  .blog-post-content-section {
    padding: 30px 0 60px;
  }

  .post-lead p {
    font-size: 18px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content h2 {
    font-size: 28px;
    margin: 36px 0 20px 0;
  }

  .post-content h3 {
    font-size: 22px;
    margin: 32px 0 16px 0;
  }

  .post-quote {
    padding: 24px;
  }

  .post-quote p {
    font-size: 18px;
  }

  .post-tips,
  .post-cta-box {
    padding: 24px;
  }

  .post-author-bio {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }

  .author-bio-avatar img {
    margin: 0 auto;
  }

  .author-bio-social {
    justify-content: center;
  }

  .sidebar-widget {
    padding: 24px;
  }

  .related-post-image {
    width: 70px;
    height: 70px;
  }

  .share-buttons {
    flex-wrap: wrap;
  }
}

/* ===== JOIN PAGE STYLES ===== */

/* Join Hero */
.join-hero {
  padding: 200px 0 160px;
  background:
    linear-gradient(
      135deg,
      rgba(244, 246, 236, 0.02) 0%,
      rgba(214, 223, 191, 0.28) 100%
    ),
    url("../img/site/join-hero.png") center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.join-hero-content {
  text-align: left;
  max-width: 1240px;
  margin: 0 auto;
  padding-right: 40px;
}

.join-hero-title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--green-600);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.join-hero-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--green-600);
  opacity: 0.85;
  letter-spacing: 0.02em;
  max-width: 600px;
}

/* Join Benefits */
.join-benefits {
  padding: 100px 0;
  background: var(--cream-white);
}

.join-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.join-section-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.join-section-intro {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--green-600);
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.join-section-subtitle {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--green-600);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.join-feature-card {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(15, 47, 18, 0.12);
}

.join-feature-icon {
  color: var(--green-600);
  margin-bottom: 24px;
}

.join-feature-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--green-600);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.join-feature-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-600);
  opacity: 0.7;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.join-feature-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--green-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.join-feature-link:hover {
  color: var(--sage-250);
  gap: 12px;
}

.join-feature-link svg {
  transition: transform 0.3s ease;
}

.join-feature-link:hover svg {
  transform: translateX(4px);
}

/* Join Testimonials */
.join-testimonials {
  padding: 100px 0;
  background: var(--cream-50);
}

.join-testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(15, 47, 18, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-testimonial-card:hover {
  box-shadow: 0 12px 48px rgba(15, 47, 18, 0.15);
  transform: translateY(-4px);
}

.join-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #f59e0b;
}

.join-testimonial-quote {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  flex: 1;
}

.join-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(194, 207, 188, 0.3);
}

.join-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.join-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}

.join-testimonial-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.01em;
}

.join-testimonial-role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--green-600);
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.join-testimonial-logo {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-600);
  opacity: 0.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Join Pricing */
.join-pricing {
  padding: 100px 0;
  background: var(--cream-white);
}

.join-pricing-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  opacity: 0.6;
  margin-bottom: 12px;
}

.join-pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  background: var(--cream-50);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.join-toggle-btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--green-600);
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.join-toggle-btn.active {
  background: var(--green-600);
  color: white;
}

.join-toggle-btn:hover:not(.active) {
  background: rgba(15, 47, 18, 0.05);
}

.join-plan-card {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(15, 47, 18, 0.15);
}

.join-plan-featured {
  background: var(--green-600);
  position: relative;
}

.join-plan-featured .join-plan-title,
.join-plan-featured .join-plan-subtitle,
.join-plan-featured .join-price-amount,
.join-plan-featured .join-price-period,
.join-plan-featured .join-plan-features li {
  color: white;
}

.join-plan-featured .join-plan-features svg {
  stroke: var(--sage-200);
}

.join-plan-header {
  margin-bottom: 32px;
}

.join-plan-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.join-plan-subtitle {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--green-600);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.join-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.join-price-amount {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--green-600);
  letter-spacing: -0.02em;
}

.join-price-period {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--green-600);
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.join-plan-btn {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  background: var(--green-600);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  width: 100%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 32px;
}

.join-plan-btn:hover {
  background: #0a2e0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 47, 18, 0.2);
}

.join-plan-featured .join-plan-btn {
  background: white;
  color: var(--green-600);
}

.join-plan-featured .join-plan-btn:hover {
  background: var(--cream-50);
}

.join-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join-plan-features li {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--green-600);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.join-plan-features svg {
  flex-shrink: 0;
  stroke: var(--green-600);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .join-hero {
    padding: 140px 0 100px;
    background-attachment: scroll;
  }

  .faq-hero,
  .contact-hero,
  .blog-hero {
    background-attachment: scroll;
  }

  .join-hero-content {
    text-align: center;
    padding-right: 0;
  }

  .join-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .join-hero-title {
    font-size: 56px;
  }

  .join-hero-text {
    font-size: 18px;
  }

  .join-benefits,
  .join-testimonials,
  .join-pricing {
    padding: 80px 0;
  }

  .join-section-title {
    font-size: 36px;
  }

  .join-feature-card {
    padding: 32px 24px;
  }

  .join-testimonial-card {
    padding: 32px 24px;
  }

  .join-plan-card {
    padding: 40px 32px;
  }
}

@media (max-width: 767px) {
  .join-hero {
    padding: 120px 0 80px;
    background-attachment: scroll;
  }

  .faq-hero {
    padding: 120px 0 80px;
    background-attachment: scroll;
  }

  .contact-hero,
  .blog-hero {
    padding: 120px 0 80px;
    background-attachment: scroll;
  }

  .join-hero-content {
    text-align: center;
    padding-right: 0;
  }

  .join-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .join-hero-title {
    font-size: 40px;
  }

  .join-hero-text {
    font-size: 16px;
  }

  .join-benefits,
  .join-testimonials,
  .join-pricing {
    padding: 60px 0;
  }

  .join-section-header {
    margin-bottom: 48px;
  }

  .join-section-title {
    font-size: 28px;
  }

  .join-feature-card {
    padding: 24px 20px;
  }

  .join-feature-title {
    font-size: 18px;
  }

  .join-testimonial-card {
    padding: 24px 20px;
  }

  .join-testimonial-quote {
    font-size: 18px;
  }

  .join-pricing-toggle {
    margin-bottom: 48px;
  }

  .join-toggle-btn {
    padding: 10px 24px;
    font-size: 14px;
  }

  .join-plan-card {
    padding: 32px 24px;
  }

  .join-plan-title {
    font-size: 28px;
  }

  .join-price-amount {
    font-size: 48px;
  }
}
