body, html{
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
}
.navbar{
  background: #ecdfcb ;
    padding: 0px;
}
.navbar-brand img{
  width: 120px;

}
.nav-link{
  padding: 12px 25px !important;
  font-weight: 700;
  font-size: 1.2vw;
  font-size: 1.3vw;
}
.banner{
position: relative;
height: 100%;
display: flex;
align-items: center;
background: url(../images/banner.jpg) no-repeat;
background-size: cover;
background-position: center;
}
.banner h1 {
    font-size: 8vw;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
}

.video-bg {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.headingz{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top:25%;
}
.headingz h1 {
    font-size: 8vw;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
}
.new-about{
    background: url(../images/coconut-bg-black.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding:120px 0px;
}
.new-about h2{
    color: #fff;
    font-weight: 700;
    font-size: 3.5vw;
}
.new-about p{
    color: #fff;
    font-size: 22px;
    line-height: 36px;
    width: 95%;
}
.about-sec{
  background: rgb(254, 248, 244);
}
.full-about{
  display: flex;
  align-items: center;
}
.left-about{
  width: 50%;
}
.right-about {
  width: 50%;
  padding-left: 50px;
  padding-right: 50px;
}
.right-about h2 {
    font-weight: 700;
    color: #000;
    font-size: 3.5vw;
    padding-bottom: 15px;
    margin-bottom: 0px;
}
.right-about p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
.dine-btn{
  background: #004d32;
  padding: 12px 20px;
  color: #fff;
  margin-top: 30px;
  display: block;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
}
.our-promise{
  background: #004d32;
  padding: 100px 0px;
}
.inner-prom{
  padding: 160px 100px;
  background: url(../images/promise-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.our-promise h3{
  color: #000;
  font-weight: 700;
  font-size: 3.5vw;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.our-promise h4{
  color: #000;
  font-size: 2.5vw;
  padding-bottom: 15px;
  margin-bottom: 0;
  line-height: 1.2;
}
.why-choose{
  background: rgb(254, 248, 244);
  padding: 100px 0px;
}
.why-choose h3{
  color: #000;
    font-weight: 700;
    font-size: 3.5vw;
    padding-bottom: 50px;
    margin-bottom: 0;
}
.icon{
  background: #ede2cf;
    padding: 40px;
}
.icon img{
  width: 100px;
}
.icon h5{
  margin-top: 20px;
  min-height: 72px;
}
.why-choose .col-lg-4{
  margin-bottom: 40px;
}
.health-benefits{
  background: #004d32;
  padding: 100px 0px;
}
.health-benefits h3{
  color: rgb(245, 245, 245);
   font-weight: 700;
    font-size: 3.5vw;
    padding-bottom: 50px;
    margin-bottom: 0;
}
.inner-health {
    padding: 35px 40px;
    border-left: 1px solid rgba(249, 249, 249, 0.4);
}
.inner-health img{
  width: 100px;
}
.inner-health h5 {
    color: #fff;
    font-weight: 700;
    margin-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
}
.inner-health p {
    color: #fff;
    font-size: 1.4vw;
    line-height: 1.4;
}
.health-benefits .col-lg-4:nth-child(3n+1) .inner-health {
    border-left: none !important;
}
.health-benefits .col-lg-4{
    border-bottom: 1px solid rgba(249, 249, 249, 0.4);
}
/* Earthy FAQ Section */
.earthy-faq {
  background: #f6f2e9;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #5a3e2b;
  margin-bottom: 40px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #4b2f1f;
  position: relative;
}

.faq-question:after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #4b2f1f;
  transition: 0.3s;
}

/* Active State */
.faq-item.active .faq-question:after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #5a4638;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.cta-sec{
  background: url(../images/cta-banner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 300px 0px;
  position: relative;
}
.inner-cta{
  position: absolute;
  width: 45%;
  padding: 80px 50px;
  background: #ecdfcb;
  top: 50%;
  transform: translate(0%, -50%);
}
.inner-cta h4{
  color: #000;
  font-weight: 700;
  font-size: 3.5vw;
  margin-bottom: 0;
  padding-bottom: 15px;
}
.inner-cta p{
  color: #000;
  font-weight: 600;
  font-size: 1.5vw;
}



.story-sec h5{
  text-align: center;
  font-weight: 700;
  color: #000;
}
.story-sec h3 {
    text-align: center;
    color: rgb(40, 40, 40);
    font-size: 2.8vw;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 30px;
}
.story-sec {
    padding: 100px 0px;
    background:#fef8f4;
}
.story-sec .full-grid {
    display: flex;
}
.story-sec .full-grid p{
  font-size: 1.5vw;
  margin-bottom: 0;
}
.story-sec .left-grid {
    width: 45%;
    padding-top: 4%;
}
.story-sec .middle-grid {
    width: 10%;
    position: relative;
}
.story-sec .middle-grid::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 25px;
    background: #004d32;
    top: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 999;
}
.dash-line::after {
    position: absolute;
    content: '';
    border-left: 2px dashed #121212;
    height: 100%;
    width: 2px;
    right: 0;
    top: 50px;
    left: 0;
    margin: 0 auto;
    z-index: 1;
}
.story-sec .right-grid {
    width: 45%;
}
.story-sec .grid-sec:nth-child(odd) .full-grid {
    display: flex;
    flex-direction: row-reverse;
    text-align: left;
}
.story-sec .grid-sec:nth-child(even) .left-grid h4{
  text-align: right;
}
.story-sec .grid-sec:nth-child(even) .left-grid p{
  text-align: right;
}
.inner-img img{
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.inner-img{
  background: #fef8f4;
  padding: 50px;
}
.left-grid h4 {
    font-weight: 700;
    font-size: 2.2vw;
}
.breadcrumb-sec{
  background: url(../images/bread-bg.png) no-repeat;
  background-size:cover;
  background-position: center;
  padding: 120px 0px;
}
.breadcrumb-sec h1{
  color: #fef8f4;
  font-weight: 700;
  font-size: 3.2vw;
}
.breadcrumb-sec h6{
  color: #fef8f4;
}
.breadcrumb-sec h6 a{
  color: #fef8f4;
  text-decoration: none;
}
.story-sec .grid-sec:last-child .dash-line::after{
  height: 60%;
}
.footer-sec{
  background: #121212;
  padding: 80px 0px;
}
.logo-foot{
  width: 170px;
}
.footer-sec h4{
  font-weight: 700;
  color:#fef8f4;
  margin-bottom: 20px;
}
.footer-sec ul{
  padding-left: 0px;
}
.footer-sec li a{
  color:#fef8f4;
  text-decoration: none;
}
.footer-sec li{
  list-style-type: none;
  padding-bottom: 15px;
}
.footer-sec p{
  color:#fef8f4;
  line-height: 25px;
}
.socialz{
  width: 30px;
}
.copyrightz{
  background: #282828;
  padding: 12px 0px;
}
.copyrightz h6{
  color:#fef8f4;
  margin-bottom: 0px;
}
.addr p{
  position: relative;
  padding-left: 40px;
}
.addr p::before{
  position: absolute;
  content: "";
  background: url(../images/location.png) no-repeat;
  width: 30px;
  height: 30px;
  left: 0px;
}
.mailz{
  position: relative;
  padding-left: 40px;
  padding-bottom: 30px !important;
}
.mailz::before{
  position: absolute;
  content: "";
  background: url(../images/mail.png) no-repeat;
  width: 30px;
  height: 30px;
  left: 0px;
}
.telz{
  position: relative;
  padding-left: 40px;
  padding-bottom: 30px !important;
}
.telz::before{
  position: absolute;
  content: "";
  background: url(../images/telephone.png) no-repeat;
  width: 30px;
  height: 30px;
  left: 0px;
}
.footz ul li{
  display: flex;
  gap: 15px;
}
.footz ul{
  margin-top: 100px;
}
.blog-sec{
  background:#fef8f4;
  padding: 100px 0px;
}
.blog-btn {
    background: #004d32;
    color: #fff;
    padding: 15px 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.4vw;
    margin-top: 30px;
    display: block;
    width: fit-content;
}

.blog-sec h2{
  font-weight: 700;
  padding-bottom: 15px;
}
.blog-sec .row{
  display: flex;
  align-items: center;
}
.blog-sec .row{
  margin-bottom: 80px;
}
.blogo h1{
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blogo h2{
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blogo h3{
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blogo h4{
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blogo h5{
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blogo h6{
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blog-detail{
  padding: 100px 0px;
}
.recent-post h4{
  padding-top: 0px !important;
}
.recent-post{
  padding-left: 3%;
}
.recent-post ul{
  padding-left: 0px;
}
.recent-post li{
  list-style-type: none;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 2px solid #EEEEEE;
}
.recent-post li a{
  color: #121212;
  font-size: 1.4vw;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.address-sec{
  padding: 80px 0px;
}
.addz{
  position: relative;
  padding-left: 40px;
  font-size: 1.4vw;
  color: #000;
  padding-bottom: 25px;
}
.addz::before{
  position: absolute;
  content: "";
  background: url(../images/location-black.png)no-repeat;
  width: 30px;
  height: 30px;
  left: 0;
}
.mailadd{
  position: relative;
  padding-left: 40px;
  font-size: 1.4vw;
  color: #000;
  padding-bottom: 25px;
}
.mailadd::before{
  position: absolute;
  content: "";
  background: url(../images/mail-black.png)no-repeat;
  width: 30px;
  height: 30px;
  left: 0;
}
.address-sec h2{
  font-weight: 700;
  padding-bottom: 15px;
}
.phoneadd{
  position: relative;
  padding-left: 40px;
  font-size: 1.4vw;
  color: #000;
  padding-bottom: 25px;
}
.phoneadd::before{
  position: absolute;
  content: "";
  background: url(../images/telephone-black.png)no-repeat;
  width: 30px;
  height: 30px;
  left: 0;
}
.address-sec ul{
  padding-left: 0px;
}
.address-sec li{
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
.news-inner{
    padding:80px 0px;
}
.cont-sec img{
    margin-top:20px;
    margin-bottom:20px;
}
.single-blogz h1{
    width:70%;
}
.sidebarz ul{
    padding-left: 0px;
}
.sidebarz ul li{
    list-style-type: none;
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
}
.sidebarz ul li a{
    color: #000;
    text-decoration: none;
}
.formz .wpcf7-text {
    border: 1px solid #D1D1D1;
}
.formz label {
    width: 100%;
}
.formz input {
    font-size: 14px;
    color: #919191;
    padding: 10px 15px;
    width: 70%;
}
.formz br{
    display: none;
}
.formz textarea {
    font-size: 14px;
    color: #919191;
    padding: 12px 15px;
    width: 70%;
    height: 120px;
    border: 1px solid #D1D1D1;
}
.formz .wpcf7-submit{
    background: #004d32;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
.factory-visit{
    background: #004d32;
    padding:100px 0px;
}
.formz-fact{
    width: 40%;
    margin: 0 auto;
}

.formz-fact label {
    width: 100%;
    color: #fff;
    font-weight: 600;
}
.formz-fact input {
    font-size: 14px;
    color: #919191;
    padding: 10px 15px;
    width: 100%;
}

.formz-fact textarea {
    font-size: 14px;
    color: #919191;
    padding: 12px 15px;
    width: 100%;
    height: 120px;
    border: 1px solid #D1D1D1;
}
.formz-fact .wpcf7-select{
    font-size: 14px;
    color: #919191;
    padding: 10px 15px;
    width: 100%;
}
.formz-fact .wpcf7-submit{
    background: #ecdfcb;
    border: 0;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}
.formz-fact .wpcf7-response-output{
    color: #fff;
}

.blog-card {
    background: #fff;
    padding: 20px;
    height: 100%;
}

.blog-card img {
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: #000;
    text-decoration: none;
}

.blog-grid-btn {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
    background: #004d32;
    padding: 5px 20px;
    text-decoration: none;
}
.blogz-sec{
    padding:100px 0px;
    background:#ecdfcb;
}
.blogz-sec h4{
    color: #000;
    font-weight: 700;
    font-size: 3.5vw;
    padding-bottom: 30px;
    margin-bottom: 0;
}
.bll {
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}
















:root {
  --forest-950: #04221a;
  --forest-900: #083528;
  --forest-700: #146147;
  --forest-600: #1d7d5a;
  --hd-forest-deep: #04231a;  
  --cream-50: #fbf7ec;
  --cream-100: #f4edd9;

  --gold-200: #f7dfa4;
  --gold-300: #efcd74;
  --gold-400: #e3b04b;
  --gold-500: #cb922e;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  
    --hd-forest: #0a3d2b;
    --hd-forest-light: #0e5b40;
    --hd-gold: #d9b26a;
    --hd-gold-light: #f3dfae;
    --hd-gold-deep: #b8894a;
    --hd-cream: #f7f1e3;
    --hd-font-display: "Playfair Display", Georgia, serif;
    --hd-font-sans: "Poppins", system-ui, sans-serif;
}


::selection {
  background: var(--gold-400);
  color: var(--forest-950);
}

/* ==========================================================================
   1. SECTION SHELL + BACKGROUND IMAGE
   ========================================================================== */

.promise-section {
  background-color: var(--forest-950);
  isolation: isolate;
}

/* Background image layer — parallax via fixed attachment + slow Ken Burns zoom */
.promise-bg {
  position: absolute;
  inset: -8% 0;
  background-image: url("../images/promise-bg-new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -3;
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
}

/* Desktop-only fixed parallax (breaks/janks on mobile browsers) */
@media (min-width: 992px) {
  .promise-bg {
    background-attachment: fixed;
  }
}

@keyframes kenburns {
  from { transform: scale(1.03); }
  to   { transform: scale(1.18); }
}

/* Dual gradient overlay keeps text fully legible over the photo */
.promise-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      100deg,
      rgba(4, 34, 26, 0.96) 0%,
      rgba(4, 34, 26, 0.86) 42%,
      rgba(4, 34, 26, 0.45) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(4, 34, 26, 0.9) 0%,
      rgba(4, 34, 26, 0.25) 45%,
      var(--forest-950) 100%
    );
}

.promise-content {
  padding-top: 7rem;
  padding-bottom: 7rem;
  max-width: 1240px;
}

/* ==========================================================================
   2. AMBIENT GLOWS + PARTICLES
   ========================================================================== */

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: -1;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}
.glow-1 {
  width: 26rem; height: 26rem;
  top: 18%; left: -10rem;
  background: rgba(227, 176, 75, 0.16);
}
.glow-2 {
  width: 30rem; height: 30rem;
  bottom: 6%; right: -12rem;
  background: rgba(29, 125, 90, 0.3);
  animation-delay: -4s;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.particles span {
  position: absolute;
  bottom: -5%;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--gold-200);
  opacity: 0;
  animation: rise var(--d) linear var(--dl) infinite;
}

@keyframes rise {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
  10%  { opacity: var(--o); }
  85%  { opacity: var(--o); }
  100% { transform: translate3d(30px, -105vh, 0) scale(0.3); opacity: 0; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* ==========================================================================
   3. SCROLL REVEAL  (CSS-only, no JS)
   Uses scroll-driven animations where supported, otherwise elements simply
   render visible — graceful, never blank.
   ========================================================================== */

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(46px); filter: blur(8px); }
  to   { opacity: 1; transform: none;             filter: blur(0); }
}
@keyframes reveal-scale-in {
  from { opacity: 0; transform: scale(0.88); filter: blur(8px); }
  to   { opacity: 1; transform: none;        filter: blur(0); }
}

/* Fallback: entrance animation on page load with stagger */
.reveal,
.reveal-scale {
  opacity: 0;
  animation: reveal-in 0.95s var(--ease) var(--dl, 0s) forwards;
}
.reveal-scale {
  animation-name: reveal-scale-in;
}

/* Progressive enhancement: trigger on scroll-into-view */
@supports (animation-timeline: view()) {
  .reveal,
  .reveal-scale {
    animation-timeline: view();
    animation-range: entry 5% cover 32%;
    animation-fill-mode: both;
    animation-delay: 0s; /* ranges replace time delays */
  }
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

.rule {
  display: block;
  width: 4rem;
  height: 1px;
  background: rgba(239, 205, 116, 0.6);
}
.eyebrow-sm {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(244, 237, 217, 0.5);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 12px 2px rgba(227, 176, 75, 0.6);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.promise-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  color: var(--cream-50);
  margin-top: 1.5rem;
}

/* Animated gold shimmer sweep across the accent line */
.shimmer {
  background: linear-gradient(
    110deg,
    var(--gold-300) 20%,
    #fdf6dd 42%,
    var(--gold-400) 58%,
    var(--gold-300) 78%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4.5s linear infinite;
}
@keyframes shimmer {
  to { background-position: -200% center; }
}

.promise-text {
  max-width: 36rem;
  margin-top: 1.75rem;
  font-size: 1.075rem;
  line-height: 1.85;
  color: rgba(244, 237, 217, 0.75);
}

/* ==========================================================================
   5. STATS
   ========================================================================== */

.stats { margin-top: 2.75rem; max-width: 36rem; }

.stat-divider { border-left: 1px solid rgba(255, 255, 255, 0.15); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--gold-300);
}
.stat-label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 217, 0.55);
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn-gold {
  background: var(--gold-400);
  color: var(--forest-950);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 12px 40px -12px rgba(227, 176, 75, 0.55);
  transition: all 0.3s var(--ease);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-300);
  color: var(--forest-950);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px -12px rgba(227, 176, 75, 0.7);
}
.btn-gold .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn-gold:hover .arrow { transform: translateX(5px); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--cream-100);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(239, 205, 116, 0.6);
  color: var(--gold-200);
  transform: translateY(-3px);
}

/* ==========================================================================
   7. RIGHT-HAND VISUAL
   ========================================================================== */

.visual-wrap {
  position: relative;
  max-width: 26rem;
  margin-inline: auto;
}

.watermark {
  position: absolute;
  top: -5.5rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(239, 205, 116, 0.14);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.ring {
  position: absolute;
  inset: -2.5rem;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.ring-dashed {
  border: 1px dashed rgba(239, 205, 116, 0.22);
  animation: spin 44s linear infinite reverse;
}
.ring-pulse {
  border: 1px solid rgba(239, 205, 116, 0.16);
  animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Product card */
.product-card {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 45px 100px -35px rgba(0, 0, 0, 0.85);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.product-card:hover img { transform: scale(1.06); }

.product-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4.5rem 1.75rem 1.75rem;
  background: linear-gradient(
    to top,
    rgba(4, 34, 26, 0.96),
    rgba(4, 34, 26, 0.35) 55%,
    transparent
  );
}
.product-card .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream-50);
}
.product-card .brand {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(239, 205, 116, 0.9);
}

/* Rotating circular badge */
.badge-circle {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(239, 205, 116, 0.3);
  background: rgba(4, 34, 26, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 50px -12px rgba(0, 0, 0, 0.8);
}
.badge-spin {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}
.badge-spin text {
  fill: var(--gold-300);
  font-size: 7.6px;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
}
.badge-leaf {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold-300);
}

/* Floating glass chips */
.chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream-50);
  white-space: nowrap;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.7);
  animation: floaty 8s ease-in-out infinite;
}
.chip-1 { top: 22%;  left: -2.2rem;  animation-delay: -0.5s; }
.chip-2 { top: 52%;  right: -1.8rem; animation-delay: -3s; }
.chip-3 { bottom: -1.2rem; left: 2.5rem; animation-delay: -5.5s; }

/* ==========================================================================
   8. PROMISE PILLARS
   ========================================================================== */

.pillars-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  color: var(--cream-50);
}

.pillar {
  position: relative;
  height: 100%;
  padding: 2rem;
  border-radius: 1.75rem;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.pillar:hover {
  transform: translateY(-10px);
  border-color: rgba(239, 205, 116, 0.45);
  box-shadow: 0 28px 70px -24px rgba(0, 0, 0, 0.85);
}

.pillar-num {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(239, 205, 116, 0.22);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  color: var(--gold-300);
  background: rgba(227, 176, 75, 0.1);
  border: 1px solid rgba(239, 205, 116, 0.3);
  transition: transform 0.5s var(--ease);
}
.pillar-icon svg { width: 1.5rem; height: 1.5rem; }
.pillar:hover .pillar-icon { transform: rotate(8deg) scale(1.12); }

.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream-50);
  margin-top: 1.5rem;
}
.pillar p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(244, 237, 217, 0.65);
  margin-bottom: 0;
}
.pillar-line {
  display: block;
  height: 1px;
  margin-top: 1.5rem;
  background: linear-gradient(
    to right,
    rgba(227, 176, 75, 0.45),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: background 0.7s ease;
}
.pillar:hover .pillar-line {
  background: linear-gradient(
    to right,
    rgba(227, 176, 75, 0.9),
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

/* ==========================================================================
   9. MARQUEE TICKER
   ========================================================================== */

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 34, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(
    to right, transparent, #000 8%, #000 92%, transparent
  );
  mask-image: linear-gradient(
    to right, transparent, #000 8%, #000 92%, transparent
  );
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker-track span {
  padding: 0 1.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 237, 217, 0.6);
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ==========================================================================
   10. RESPONSIVE
   ========================================================================== */

@media (max-width: 991.98px) {
  .promise-content { padding-top: 5rem; padding-bottom: 5rem; }
  .visual-wrap { margin-top: 4rem; max-width: 22rem; }
  .watermark { display: none; }
  .badge-circle { width: 6.5rem; height: 6.5rem; top: -1.5rem; left: -1rem; }
}

@media (max-width: 575.98px) {
  .chip-1, .chip-2 { display: none; }
  .chip-3 { left: 50%; transform: translateX(-50%); bottom: -1rem; }
  .stats .stat-label { font-size: 0.58rem; letter-spacing: 0.1em; }
  .stats .col-4 { padding-inline: 0.5rem !important; }
  .pillar { padding: 1.5rem; }
}

/* ==========================================================================
   11. ACCESSIBILITY — reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .promise-bg { background-attachment: scroll; }
}





.hd-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: hd-fade-up 0.9s ease forwards;
}

@keyframes hd-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hd-delay-1 { animation-delay: 0.1s; }
.hd-delay-2 { animation-delay: 0.25s; }
.hd-delay-3 { animation-delay: 0.4s; }
.hd-delay-4 { animation-delay: 0.55s; }
.hd-delay-5 { animation-delay: 0.7s; }
.hd-delay-6 { animation-delay: 0.8s; }
.hd-delay-7 { animation-delay: 0.9s; }
.hd-delay-8 { animation-delay: 1s; }
.hd-delay-9 { animation-delay: 1.15s; }
.hd-delay-10 { animation-delay: 1.25s; }
.hd-delay-11 { animation-delay: 1.35s; }
.hd-delay-12 { animation-delay: 1.45s; }

/* =================== WHY CHOOSE HEALTHY DINE =================== */
.hd-why {
  position: relative;
  background: linear-gradient(180deg, #fbf6ea 0%, #f7efdd 100%);
  padding: 2rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}

.hd-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  transform: translateY(-1px);
}






.hd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hd-gold-light);
  border: 1px solid rgba(217, 178, 106, 0.4);
  background: rgba(217, 178, 106, 0.1);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.hd-heading {
  font-family: var(--hd-font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  margin: 1.4rem 0 0;
  color: var(--hd-cream);
}

.hd-gradient-text {
  font-style: italic;
  background: linear-gradient(100deg, #e6c98a 0%, #f7e6b8 28%, var(--hd-gold) 50%, #f7e6b8 72%, #e6c98a 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hd-shimmer 6s linear infinite;
}

@keyframes hd-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hd-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hd-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--hd-gold), transparent);
}

.hd-divider p {
  font-family: var(--hd-font-display);
  font-style: italic;
  color: var(--hd-gold-light);
  font-size: 1.1rem;
}

.hd-paragraph {
  margin-top: 1.6rem;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(247, 241, 227, 0.88);
}

.hd-highlight {
  position: relative;
  font-weight: 600;
  color: var(--hd-gold-light);
  background: linear-gradient(transparent 65%, rgba(217, 178, 106, 0.28) 65%);
  padding: 0 0.05rem;
}

/* Feature pillar cards */
.hd-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.15rem;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.35s ease;
}

.hd-pillar:hover {
  border-color: rgba(217, 178, 106, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.hd-pillar-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(217, 178, 106, 0.35);
  background: rgba(217, 178, 106, 0.12);
  color: var(--hd-gold);
  font-size: 1.15rem;
}

.hd-pillar h3 {
  font-family: var(--hd-font-display);
  font-size: 1.02rem;
  color: var(--hd-cream);
  margin-bottom: 0.2rem;
}

.hd-pillar p {
  font-size: 0.84rem;
  color: rgba(247, 241, 227, 0.62);
  margin-bottom: 0;
  line-height: 1.5;
}

.hd-signature {
  font-family: var(--hd-font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(247, 241, 227, 0.75);
  border-left: 1px solid rgba(247, 241, 227, 0.25);
  padding-left: 1rem;
}

/* =================== VISUAL COLUMN =================== */
.hd-visual {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  padding-top: 3.2rem;
}

/* Rotating seal */
.hd-seal {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 0 auto -60px;
  z-index: 3;
}

.hd-seal::before,
.hd-seal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(217, 178, 106, 0.4);
  animation: hd-pulse-ring 3.4s ease-out infinite;
}

.hd-seal::after {
  animation-delay: 1.2s;
}

@keyframes hd-pulse-ring {
  0% { transform: scale(0.72); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hd-seal-spin {
  width: 100%;
  height: 100%;
  animation: hd-spin 22s linear infinite;
}

@keyframes hd-spin {
  to { transform: rotate(360deg); }
}

.hd-seal-text {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-family: var(--hd-font-sans);
}

.hd-seal-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 178, 106, 0.45);
  background: rgba(4, 35, 26, 0.65);
  color: var(--hd-gold);
  font-size: 1.7rem;
  box-shadow: 0 0 40px rgba(217, 178, 106, 0.25);
  backdrop-filter: blur(6px);
}

/* Product card */
.hd-product-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 10px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
}

.hd-product-img {
  position: relative;
  height: 280px;
  border-radius: 20px;
  background-image: linear-gradient(to top, rgba(4, 35, 26, 0.9), rgba(4, 35, 26, 0.05) 60%),
    url("../images/promise-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
  transition: transform 1.4s ease;
}

.hd-product-card:hover .hd-product-img {
  transform: scale(1.06);
}

.hd-product-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  color: var(--hd-cream);
}

.hd-product-caption p {
  font-family: var(--hd-font-display);
  font-size: 1.15rem;
}

.hd-product-caption small {
  color: rgba(247, 241, 227, 0.7);
}

.hd-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.6rem 0.4rem;
  font-size: 0.85rem;
  color: rgba(247, 241, 227, 0.85);
}

.hd-product-footer i {
  color: var(--hd-gold);
  margin-right: 0.35rem;
}

.hd-tag {
  background: rgba(217, 178, 106, 0.16);
  color: var(--hd-gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

/* Floating stat badge */
.hd-stat-badge {
  position: absolute;
  bottom: -28px;
  right: 6px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(4, 35, 26, 0.75);
  border: 1px solid rgba(217, 178, 106, 0.4);
  border-radius: 18px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  animation: hd-float-badge 6s ease-in-out infinite;
}

@keyframes hd-float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hd-stat-num {
  font-family: var(--hd-font-display);
  font-size: 1.8rem;
  background: linear-gradient(100deg, #e6c98a, #f7e6b8, var(--hd-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hd-stat-label {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(247, 241, 227, 0.75);
}





























.hd-benefits {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 0 5rem;
  background: radial-gradient(140% 100% at 50% 0%, #0e5b40 0%, var(--hd-forest-deep) 55%, #021711 100%);
}

.hd-benefits-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(circle at 15% 20%, rgba(217, 178, 106, 0.08), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(16, 130, 90, 0.25), transparent 50%);
}

.hd-benefits-dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(rgba(217, 178, 106, 0.35) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 20%, #000 5%, transparent 70%);
  mask-image: radial-gradient(ellipse 65% 55% at 50% 20%, #000 5%, transparent 70%);
}

.hd-benefits-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

.hd-benefits-orb-1 {
  width: 320px;
  height: 320px;
  top: -60px;
  right: -80px;
  background: rgba(217, 178, 106, 0.25);
}

.hd-benefits-orb-2 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -100px;
  background: rgba(16, 130, 90, 0.35);
}

.hd-benefits-heading {
  margin-top: 1.2rem;
}

.hd-benefits-sub {
  color: rgba(247, 241, 227, 0.7);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0.9rem auto 0;
}

/* --- scrolling ticker --- */
.hd-ticker {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  padding: 0.9rem 0;
  overflow: hidden;
  background: rgba(217, 178, 106, 0.08);
  border-top: 1px solid rgba(217, 178, 106, 0.25);
  border-bottom: 1px solid rgba(217, 178, 106, 0.25);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hd-ticker-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  white-space: nowrap;
  animation: hd-ticker-scroll 26s linear infinite;
  font-family: var(--hd-font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--hd-gold-light);
}

.hd-ticker-track i {
  color: var(--hd-gold);
  font-size: 0.55rem;
  opacity: 0.8;
}

@keyframes hd-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- flip cards --- */
.hd-benefit-card {
  perspective: 1200px;
  height: 250px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: block;
  outline-offset: 6px;
}

.hd-benefit-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.hd-benefit-card:hover .hd-benefit-inner,
.hd-benefit-card:focus .hd-benefit-inner,
.hd-benefit-card:focus-within .hd-benefit-inner {
  transform: rotateY(180deg);
}

.hd-benefit-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 22px;
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hd-benefit-front {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(217, 178, 106, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.7);
}

.hd-benefit-num {
  position: absolute;
  top: 0.9rem;
  left: 1.1rem;
  font-family: var(--hd-font-display);
  font-size: 1.3rem;
  color: rgba(217, 178, 106, 0.35);
}

.hd-benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--hd-gold);
  background: rgba(217, 178, 106, 0.1);
  border: 1px solid rgba(217, 178, 106, 0.35);
  margin-bottom: 1rem;
  position: relative;
}

.hd-benefit-icon::before,
.hd-benefit-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(217, 178, 106, 0.3);
  animation: hd-pulse-ring 3.2s ease-out infinite;
}

.hd-benefit-icon::after {
  animation-delay: 1s;
}

.hd-benefit-front h3 {
  font-family: var(--hd-font-display);
  font-size: 1.12rem;
  color: var(--hd-cream);
  margin-bottom: 0.6rem;
}

.hd-benefit-hint {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hd-benefit-back {
  background: linear-gradient(150deg, var(--hd-gold-deep), var(--hd-gold) 55%, var(--hd-gold-light));
  color: var(--hd-forest-deep);
  transform: rotateY(180deg);
  box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
}

.hd-benefit-icon-sm {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(4, 35, 26, 0.15);
  color: var(--hd-forest-deep);
  margin-bottom: 0.8rem;
}

.hd-benefit-back p {
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 575.98px) {
  .hd-benefit-card {
    height: 230px;
  }
}















.why-section {
  position: relative;
  background: var(--cream-50);
  overflow: hidden;
  isolation: isolate;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/* --- soft decorative background --------------------------------------- */

/* subtle dot grid */
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(
    rgba(20, 97, 71, 0.09) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 72%);
}

/* drifting colour blobs */
.why-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
  animation: why-drift 16s ease-in-out infinite;
}
.why-blob-1 {
  width: 24rem; height: 24rem;
  top: -6rem; right: -6rem;
  background: rgba(227, 176, 75, 0.22);
}
.why-blob-2 {
  width: 26rem; height: 26rem;
  bottom: -8rem; left: -8rem;
  background: rgba(29, 125, 90, 0.16);
  animation-delay: -7s;
}

@keyframes why-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(24px, -28px) scale(1.1); }
}

.why-container { max-width: 1240px; position: relative; }

/* --- heading ----------------------------------------------------------- */

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--forest-700);
  background: rgba(20, 97, 71, 0.08);
  border: 1px solid rgba(20, 97, 71, 0.16);
}
.why-eyebrow .spark {
  color: var(--gold-500);
  animation: blink 2.4s ease-in-out infinite;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--forest-950);
  margin-top: 1.25rem;
}
.why-title .accent {
  position: relative;
  font-style: italic;
  color: var(--forest-700);
  white-space: nowrap;
}
/* hand-drawn underline that draws itself in */
.why-title .accent svg {
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 0.7em;
  overflow: visible;
}
.why-title .accent path {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw-underline 1.6s var(--ease) 0.5s forwards;
}
@supports (animation-timeline: view()) {
  .why-title .accent path {
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
    animation-fill-mode: both;
    animation-delay: 0s;
  }
}
@keyframes draw-underline {
  to { stroke-dashoffset: 0; }
}

.why-sub {
  max-width: 34rem;
  margin-top: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(4, 34, 26, 0.62);
}

/* --- cards ------------------------------------------------------------- */

.why-card {
  position: relative;
  height: 100%;
  padding: 2.25rem 1.75rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid rgba(20, 97, 71, 0.1);
  text-align: center;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s ease,
    border-color 0.55s ease,
    background 0.55s ease;
}

/* gold sheen that sweeps across on hover */
.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.85s var(--ease);
  pointer-events: none;
}
.why-card:hover::after { left: 125%; }

/* gradient top bar reveals on hover */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-400),
    var(--forest-600),
    var(--gold-400)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
  transform: translateY(-12px);
  background: #fff;
  border-color: rgba(227, 176, 75, 0.55);
  box-shadow: 0 30px 60px -28px rgba(4, 34, 26, 0.45);
}

/* index number watermark */
.why-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(20, 97, 71, 0.18);
  transition: -webkit-text-stroke-color 0.5s ease, transform 0.5s var(--ease);
}
.why-card:hover .why-num {
  -webkit-text-stroke-color: rgba(227, 176, 75, 0.7);
  transform: translateY(-3px);
}

/* icon medallion */
.why-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  color: var(--forest-700);
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 255, 255, 0.95),
    rgba(233, 221, 192, 0.65)
  );
  border: 1px solid rgba(20, 97, 71, 0.14);
  transition: transform 0.6s var(--ease), color 0.5s ease, box-shadow 0.5s ease;
}
.why-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.6s var(--ease);
}
.why-card:hover .why-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 34px -14px rgba(20, 97, 71, 0.5);
}
.why-card:hover .why-icon svg {
  transform: rotate(-6deg) scale(1.08);
}

/* rotating dashed ring around the medallion */
.why-icon .ico-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(20, 97, 71, 0.28);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: spin 18s linear infinite;
}
.why-card:hover .ico-ring { opacity: 1; }

.why-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-950);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(4, 34, 26, 0.62);
  margin-bottom: 0;
}

/* highlighted "trusted by" card */
.why-card.is-feature {
  background: linear-gradient(155deg, var(--forest-900), var(--forest-950));
  border-color: rgba(239, 205, 116, 0.35);
}
.why-card.is-feature:hover { background: linear-gradient(155deg, #0a3e2f, #05291f); }
.why-card.is-feature h5 { color: var(--cream-50); }
.why-card.is-feature p { color: rgba(244, 237, 217, 0.7); }
.why-card.is-feature .why-num { -webkit-text-stroke-color: rgba(239, 205, 116, 0.35); }
.why-card.is-feature .why-icon {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(239, 205, 116, 0.3);
}
.why-card.is-feature .ico-ring { border-color: rgba(239, 205, 116, 0.4); }

/* big counter inside feature card */
.why-count {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-300);
  margin-bottom: 0.35rem;
}

/* --- trust strip ------------------------------------------------------- */

.why-strip {
  margin-top: 4rem;
  padding: 1.6rem 2rem;
  border-radius: 1.25rem;
  background: rgba(20, 97, 71, 0.06);
  border: 1px dashed rgba(20, 97, 71, 0.2);
}
.why-strip-item { text-align: center; }
.why-strip-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--forest-700);
}
.why-strip-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(4, 34, 26, 0.5);
}

/* --- responsive -------------------------------------------------------- */

@media (max-width: 991.98px) {
  .why-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}
@media (max-width: 575.98px) {
  .why-card { padding: 1.75rem 1.25rem; }
  .why-icon { width: 4.5rem; height: 4.5rem; }
  .why-icon svg { width: 2rem; height: 2rem; }
  .why-title .accent { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .why-title .accent path { stroke-dashoffset: 0; }
}















@media (min-width: 1700px) and (max-width: 3000px) {
  .container{
    max-width: 1640px;
  }
}
@media (min-width: 1400px) and (max-width: 1699px) {
  .container{
    max-width: 1340px;
  }
}
@media (min-width: 1300px) and (max-width: 1399px) {
  .container{
    max-width: 1240px;
  }
}
@media (min-width: 1261px) and (max-width: 1300px) {
  .container{
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1260px) {
  .container{
    max-width: 1140px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
.video-bg {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
.headingz {
    top: 30%;
}
.headingz h1 {
    font-size: 12vw;
}
.right-about {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
}
.left-about {
    width: 100%;
}
.full-about {
    display: block;
}
.right-about h2 {
    font-size: 9vw;
}
.inner-prom {
    padding: 60px 25px;
}
.our-promise h4 {
    font-size: 6vw;
    line-height: 1.4;
}
.our-promise h3 {
    font-size: 9vw;
}
.why-choose h3 {
    font-size: 9vw;
    padding-bottom: 30px;
}
.why-choose {
    padding: 50px 0px;
}
.health-benefits {
    padding: 50px 0px;
}
.health-benefits h3 {
    font-size: 9vw;
    padding-bottom: 30px;
}
.inner-health {
    padding: 25px 25px;
}
.inner-health h5 {
    font-size: 7vw;
}
.inner-health p {
    font-size: 5vw;
}
.inner-health {
    border-left: 0px;
}
.earthy-faq {
    padding: 50px 15px;
}
.inner-cta {
     position: inherit; 
     width: inherit; 
    padding: 50px 30px;
    top: 50%;
     transform: inherit; 
}
.cta-sec {
    padding: 80px 0px;
}
.inner-cta h4 {
    font-size: 8vw;
}
.inner-cta p {
    font-size: 5vw;
}
.breadcrumb-sec h1 {
    font-size: 8vw;
}
.breadcrumb-sec h6 {
    font-size: 5vw;
}
.story-sec {
    padding: 50px 0px;
}
.story-sec h5 {
    font-size: 6.5vw;
}
.story-sec h3 {
    font-size: 4.5vw;
    padding-bottom: 20px;
}
.story-sec .full-grid {
    display: block;
}
.story-sec .grid-sec:nth-child(odd) .full-grid {
    display: block;
}
.story-sec .left-grid {
    width: 100%;
    padding-top: 0%;
}
.story-sec .middle-grid {
    width: 0%;
}
.story-sec .middle-grid {
    display: none;
}
.story-sec .right-grid {
    width: 100%;
}
.left-grid h4 {
    font-size: 6vw;
}
.story-sec .full-grid p {
    font-size: 4vw;
}
.story-sec .grid-sec:nth-child(even) .left-grid h4 {
    text-align: left;
}
.story-sec .grid-sec:nth-child(even) .left-grid p {
    text-align: left;
}
.address-sec {
    padding: 50px 0px;
}
.address-sec h2 {
    font-size: 7vw;
}
.addz {
    font-size: 4.5vw;
    padding-bottom:15px;
}
.mailadd {
    font-size: 4.5vw;
    padding-bottom: 15px;
}
.phoneadd {
    font-size: 4.5vw;
    padding-bottom: 15px;
}
.blog-sec {
    padding: 50px 0px;
}
.blog-btn {
    margin-bottom: 30px;
    font-size: 5vw;
}
.blogz-sec {
    padding: 50px 0px;
}
.nav-link {
    font-size: 5vw;
    padding-left: 0px;
    padding-right: 0px;
}
.formz input {
    width: 100%;
}
.formz textarea {
    width: 100%;
}
.factory-visit{
   padding: 50px 0px; 
}
.formz-fact {
    width: 100%;
}
.footz ul {
    margin-top: 40px;
}
}

