.hero-editorial {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  background: var(--clr-forest-deep);
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(rgba(245, 200, 66, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 200, 66, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  will-change: transform;
  animation: gridDrift 20s linear infinite;
  z-index: 0;
}

@keyframes gridDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 60px); }
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-panel--dark {
  background: linear-gradient(160deg, var(--clr-forest) 0%, var(--clr-forest-deep) 100%);
  padding: var(--space-4xl) var(--space-2xl);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid rgba(245, 200, 66, 0.12);
  min-height: 100vh;
}

.hero-panel-inner {
  padding-top: calc(var(--nav-height) - 40px);
  width: 100%;
}

.hero-panel--dark::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 168, 120, 0.18) 0%, transparent 70%);
  will-change: transform, opacity;
  animation: blobPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.3); opacity: 1; }
}

.hero-display-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--clr-white);
  margin-bottom: var(--space-xl);
  letter-spacing: -1.5px;
}

.hero-display-title .title-outline {
  -webkit-text-stroke: 2px var(--clr-amber);
  color: transparent;
  display: inline-block;
  animation: outlineGlow 3s ease-in-out infinite;
}

@keyframes outlineGlow {
  0%, 100% { -webkit-text-stroke-color: var(--clr-amber); }
  50%       { -webkit-text-stroke-color: rgba(245, 200, 66, 0.5); }
}

.hero-display-title em{
    display: inline-block;

    /* Prevent clipping */
    padding-right: .12em;
    margin-right: -.12em;

    font-style: italic;
    font-weight: 900;

    background: linear-gradient(
        90deg,
        #7A9B6D,
        #D7E9CB,
        #87A878,
        #D7E9CB,
        #7A9B6D
    );

    background-size: 250% 100%;
    background-position: 0% center;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 5s linear infinite;
}

@keyframes shine{
    from{
        background-position: 0% center;
    }
    to{
        background-position: 250% center;
    }
}

.hero-display-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-sage);
  border-radius: 2px;
  transform-origin: left;
  will-change: transform;
  animation: underlineGrow 1s 0.8s both;
}

@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-desc-v2 {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 380px;
}

.hero-ctas-v2 {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: nowrap;          
  margin-bottom: var(--space-xl);
  align-items: center;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.btn--sm .material-symbols-outlined {
  font-size: 16px;
}

.hero-panel--center {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide--active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 4s ease;
}

.hero-slide--active img {
  transform: scale(1);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 35, 24, 0.12) 0%,
    transparent 40%,
    rgba(13, 35, 24, 0.40) 100%
  );
  z-index: 1;
}

.slide-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slide-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--clr-amber);
  color: var(--clr-forest-deep);
  border-radius: var(--radius-pill);
  font-family: var(--ff-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
}

.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 3;
}

.slide-progress-bar {
  height: 100%;
  background: var(--clr-amber);
  width: 0;
  transition: width 0.1s linear;
}

.hero-blob-1,
.hero-blob-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(135, 168, 120, 0.25) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  animation: blob1Drift 12s ease-in-out infinite;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.20) 0%, transparent 70%);
  bottom: 80px;
  left: -40px;
  animation: blob2Drift 10s ease-in-out infinite reverse;
}

@keyframes blob1Drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.1); }
  66%       { transform: translate(-15px, 20px) scale(0.9); }
}

@keyframes blob2Drift {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(25px, -20px); }
}

.hero-panel--right {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  background: linear-gradient(180deg, var(--clr-forest-deep) 0%, #0A1F14 100%);
  border-left: 1px solid rgba(245, 200, 66, 0.10);
  min-height: 100vh;
}

.hero-right-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex: 1;
  display: flex;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  transform: perspective(900px) rotateY(-1.5deg) rotateX(0.8deg);
  will-change: transform;
}

.hero-right-card:hover {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

.hero-right-card--amber {
  background: linear-gradient(135deg, var(--clr-amber-light) 0%, var(--clr-amber) 100%);
  flex-direction: row;
  align-items: stretch;
  min-height: 200px;
}

.hero-right-card--mint {
  background: linear-gradient(135deg, #A8D5A2 0%, #4A8F5F 100%);
  flex-direction: row;
  min-height: 160px;
  gap: 4px;
}

.right-card-body {
  flex: 1.2;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.right-card-body::before {
  content: 'Garden Visit';
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-forest);
  opacity: 0.6;
  margin-bottom: -0.2rem;
}

.right-card-body h3,
.right-card-body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--clr-forest-deep);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.right-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-forest);
  color: var(--clr-white);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  transition: all var(--transition-bounce);
}

.right-card-btn:hover {
  background: var(--clr-forest-deep);
  transform: scale(1.05);
}

.right-card-media {
  flex: 1;
  overflow: hidden;
}

.right-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .hero-editorial {
    display: grid;
    
    grid-template-columns: 1fr 1.1fr;
    grid-template-rows: auto auto;
    min-height: 100vh;
    height: auto;
  }

  
  .hero-panel--dark {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    min-height: 65vh;
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
    border-right: 1px solid rgba(245, 200, 66, 0.12);
    border-bottom: none;
    align-items: flex-start;
    text-align: left;
  }

  .hero-panel-inner {
    padding-top: 0;
    width: 100%;
  }

  .hero-desc-v2 {
    margin-inline: 0;
    max-width: 320px;
  }

  .hero-ctas-v2 {
    justify-content: flex-start;
  }

  
  .hero-panel--center {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: 65vh;
  }

  
  .hero-panel--right {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    display: flex !important;
    flex-direction: row !important;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    min-height: auto;
    border-left: none;
    border-top: 1px solid rgba(245, 200, 66, 0.10);
    height: auto;
    overflow: visible;
  }

  
  .hero-right-card {
    flex: 1;
    min-height: 150px !important;
    max-height: 175px !important;
  }

  .hero-right-card--amber,
  .hero-right-card--mint {
    min-height: 150px !important;
    flex-direction: row;
  }

  
  .hero-panel--right .right-card-body::before {
    display: none;
  }

  .hero-panel--right .right-card-body h3,
  .hero-panel--right .right-card-body h2 {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.1;
    letter-spacing: -0.3px;
  }

  .hero-panel--right .right-card-btn {
    padding: 7px 14px;
    font-size: 0.72rem;
    gap: 4px;
  }

  .hero-panel--right .right-card-btn .material-symbols-outlined {
    font-size: 14px !important;
  }

  .hero-panel--right .right-card-body {
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-xs);
    justify-content: center;
  }
}

@media (max-width: 767px) {

  
  .hero-editorial {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  
  .hero-panel--dark {
    min-height: unset;
    height: calc(100svh * 2 / 3);
    padding: calc(var(--nav-height) + var(--space-lg)) 1.25rem var(--space-xl);
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(245, 200, 66, 0.12);
    flex-shrink: 0;
  }

  .hero-panel-inner {
    padding-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .hero-display-title {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 0.85rem;
  }

  .hero-desc-v2 {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    margin-inline: auto;
    opacity: 0.85;
    max-width: 320px;
  }

  .hero-ctas-v2 {
    justify-content: center;
    margin-bottom: 0;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }

  .hero-panel--dark .btn--sm {
    padding: 12px 20px;
    font-size: 0.82rem;
  }
  .hero-panel--dark .btn--sm .material-symbols-outlined { font-size: 16px; }

  #heroQuoteCta {
    padding: 11px 16px !important;
    font-size: 0.8rem !important;
    border-width: 1.5px !important;
  }

  
  .hero-panel--center {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    height: calc(100svh / 3);
    min-height: unset;
    max-height: unset;
  }

  .slide-caption { bottom: 2.5rem; left: 0.875rem; z-index: 10; }
  .slide-tag { font-size: 0.62rem; padding: 4px 10px; letter-spacing: 1.5px; }

  
  .hero-panel--right {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0.75rem !important;
    min-height: unset !important;
    height: auto !important;
    border-left: none !important;
    border-top: 1px solid rgba(245, 200, 66, 0.10);
    overflow: visible !important;
    flex-shrink: 0;
  }

  
  .hero-right-card--mint {
    display: none !important;
  }

  
  .hero-right-card--amber {
    flex-direction: row !important;
    min-height: 120px !important;
    max-height: 140px !important;
    height: 120px !important;
    border-radius: 14px !important;
    width: 100% !important;
    overflow: hidden;
  }

  .hero-right-card--amber .right-card-body {
    flex: 1.3;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-right-card--amber .right-card-body::before { display: none; }

  .hero-right-card--amber .right-card-body h3,
  .hero-right-card--amber .right-card-body h2 {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin: 0;
  }

  .hero-right-card--amber .right-card-btn {
    padding: 7px 14px;
    font-size: 0.72rem;
    gap: 3px;
  }

  .hero-right-card--amber .right-card-btn .material-symbols-outlined { font-size: 13px !important; }

  
  .hero-right-card--amber .right-card-media {
    display: block !important;
    flex: 1;
    overflow: hidden;
    border-radius: 0 14px 14px 0;
  }

  .hero-right-card--amber .right-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .hero-display-title { font-size: clamp(1.85rem, 8.5vw, 2.6rem); }
  .hero-desc-v2 { font-size: 0.82rem; margin-bottom: 1rem; }
  .hero-panel--dark { padding-inline: 1rem; padding-bottom: var(--space-lg); }
}


.marquee-ticker {
  background: var(--clr-amber);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.marquee-ticker-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-ticker-inner:hover {
  animation-play-state: paused;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 0 var(--space-2xl);
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-forest-deep);
  white-space: nowrap;
}

.ticker-item .ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-forest);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ticker-item {
    padding: 0 var(--space-md);
    font-size: 0.7rem;
    letter-spacing: 1px;
    gap: var(--space-sm);
  }
  .marquee-ticker {
    padding: 10px 0;
  }
}


.brands-strip {
  background: #fff;
  padding: 2.25rem 0 2rem;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  position: relative;
}

.brands-label {
  text-align: center;
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--clr-forest-deep);
  margin-bottom: 0.5rem;
}

.brands-desc {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  padding: 0 var(--space-md);
  text-align: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  line-height: 1.6;
}

.brands-marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  gap: 0;
  padding: 0.5rem 2rem;
  animation: brandsMarqueeScroll 28s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.brand-item[aria-hidden="true"] {
  display: flex;
}

.brands-marquee-wrap:hover .brands-marquee-track {
  animation-play-state: paused;
}

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

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.brand-item img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.brand-item:hover img {
  filter: none;
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .brands-marquee-track { animation-duration: 26s; }
  .brands-desc { font-size: 0.95rem; }
  .brands-label { font-size: 1.3rem; }
}

/* STATS BAR */

.stats-bar-v2 {
  background: var(--clr-forest-deep);
  padding: var(--space-2xl) 0;
  
}

.stats-grid-v2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stat-v2 {
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
}

.stat-num-v2 {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
  
  color: var(--clr-white);
}

.stat-num-v2 .material-symbols-outlined {
  font-size: 1.6rem;
  color: var(--clr-amber);
  -webkit-text-fill-color: var(--clr-amber);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.stat-lbl-v2 {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider-v2 {
  width: 1px;
  height: 48px;
  background: rgba(245,200,66,0.25);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .stats-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider-v2 {
    display: none;
  }
  .stat-v2 {
    padding: var(--space-xl) var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  .stats-grid-v2 > .stat-v2:nth-of-type(odd) {
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  
  .stats-grid-v2 > .stat-v2:nth-of-type(3),
  .stats-grid-v2 > .stat-v2:nth-of-type(4) {
    border-bottom: none;
  }
  .stat-num-v2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
}

@media (max-width: 380px) {
  .stat-v2 { padding: var(--space-lg) var(--space-sm); }
  .stat-num-v2 { font-size: 1.75rem; }
}


.wwd-section {
  background: linear-gradient(160deg, #071410 0%, #0B1F13 55%, #071814 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.wwd-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135,168,120,0.07) 0%, transparent 68%);
  top: -220px; right: -220px;
  pointer-events: none;
}
.wwd-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.05) 0%, transparent 65%);
  bottom: -180px; left: -180px;
  pointer-events: none;
}

.wwd-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.wwd-label { color: var(--clr-amber) !important; }

.wwd-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.wwd-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 480px;
}

.wwd-view-all {
  flex-shrink: 0;
  border-color: rgba(255,255,255,0.25) !important;
  color: rgba(255,255,255,0.85) !important;
}
.wwd-view-all:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: var(--clr-amber) !important;
  color: var(--clr-amber) !important;
}

.wwd-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}

.wwd-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1), box-shadow 0.42s ease;
}

.wwd-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.45);
}

.wwd-featured {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wwd-featured > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 0;
}

.wwd-featured:hover > img { transform: scale(1.06); }

.wwd-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 14, 8, 0.97) 0%,
    rgba(4, 14, 8, 0.60) 40%,
    rgba(4, 14, 8, 0.10) 100%
  );
  z-index: 1;
}

.wwd-featured-body {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.wwd-featured-body h3 {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.18;
  letter-spacing: -0.2px;
}

.wwd-featured-body p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.3rem;
}

.wwd-wide-top {
  grid-column: 2 / span 2;
  display: flex;
  align-items: center;
  padding: 2rem 2.25rem;
  min-height: 140px;
}

.wwd-wide-text { width: 100%; }

.wwd-small-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.85rem;
  min-height: 210px;
}

.wwd-img-card {
  display: flex;
  min-height: 240px;
}

.wwd-img-amber {
  grid-column: 1 / span 2;
  flex-direction: row;
}

.wwd-img-purple {
  grid-column: 3;
  flex-direction: column;
}

.wwd-img-card-photo {
  overflow: hidden;
  flex-shrink: 0;
}

.wwd-img-amber .wwd-img-card-photo {
  width: 42%;
  border-radius: 0;
}

.wwd-img-purple .wwd-img-card-photo {
  width: 100%;
  height: 155px;
}

.wwd-img-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.wwd-img-card:hover .wwd-img-card-photo img { transform: scale(1.1); }

.wwd-img-card-body {
  flex: 1;
  padding: 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.wwd-card--teal {
  background: linear-gradient(135deg, #0c6b6e 0%, #14a085 100%);
}
.wwd-card--lime {
  background: linear-gradient(135deg, #27ae60 0%, #1a6e3c 100%);
}
.wwd-card--coral {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}
.wwd-card--amber {
  background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
}
.wwd-card--purple {
  background: linear-gradient(135deg, #6c3483 0%, #9b59b6 100%);
}

.wwd-card--teal::before,
.wwd-card--lime::before,
.wwd-card--coral::before,
.wwd-card--amber::before,
.wwd-card--purple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.wwd-wide-top > *,
.wwd-small-card > *,
.wwd-img-card-body > * { position: relative; z-index: 1; }

.wwd-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.wwd-img-card-body h4 { font-size: 1.15rem; }

.wwd-small-text h4 { font-size: 1.2rem; }
.wwd-small-text p { max-width: 95%; }

.wwd-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.wwd-img-card-body p { font-size: 0.9rem; }

.wwd-wide-text h4 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.wwd-wide-text p  { font-size: 0.92rem; max-width: 88%; }

@media (max-width: 1100px) {
  .wwd-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .wwd-featured { grid-column: 1; grid-row: 1 / span 3; min-height: 620px; }
  .wwd-wide-top { grid-column: 2; grid-row: 1; }
  .wwd-small-card { grid-column: 2; }

  
  .wwd-img-card { flex-direction: column; min-height: 280px; }
  .wwd-img-amber { grid-column: 1; }
  .wwd-img-purple { grid-column: 2; }
  .wwd-img-amber .wwd-img-card-photo,
  .wwd-img-purple .wwd-img-card-photo {
    width: 100%;
    height: 170px;
  }
}

@media (max-width: 768px) {
  
  .wwd-label {
    color: var(--clr-amber) !important;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2.5px;
  }

  .wwd-header { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .wwd-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .wwd-subtitle { font-size: 0.88rem; }
  .wwd-view-all {
    padding: 8px 16px;
    font-size: 0.72rem;
  }
  .wwd-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .wwd-featured { grid-column: 1; grid-row: auto; min-height: 300px; }
  .wwd-featured-body { padding: 1.5rem 1.4rem; gap: 0.5rem; }
  .wwd-featured-body h3 { font-size: clamp(1.3rem, 5.5vw, 1.6rem); }
  .wwd-featured-body p { font-size: 0.82rem; }
  .wwd-wide-top {
    grid-column: 1;
    padding: 1.4rem 1.5rem;
    min-height: 110px;
  }
  .wwd-wide-text h4 { font-size: 1.1rem; }
  .wwd-wide-text p { font-size: 0.82rem; max-width: 100%; }
  .wwd-small-card { grid-column: 1; min-height: 130px; padding: 1.4rem; gap: 0.45rem; }
  .wwd-small-text h4 { font-size: 1.05rem; }
  .wwd-card p { font-size: 0.82rem; }
  .wwd-img-card { min-height: 190px; }
  .wwd-img-card-body { padding: 1.25rem 1.4rem; }
  .wwd-img-card-body h4 { font-size: 1.05rem; }
  .wwd-img-card-body p { font-size: 0.82rem; }
  .wwd-img-amber { grid-column: 1; flex-direction: column; }
  .wwd-img-amber .wwd-img-card-photo { width: 100%; height: 160px; }
  .wwd-img-purple { grid-column: 1; flex-direction: column; }
  .wwd-img-purple .wwd-img-card-photo { width: 100%; height: 150px; }
}

@media (max-width: 480px) {
  .wwd-featured { min-height: 260px; }
  .wwd-featured-body { padding: 1.25rem; }
  .wwd-small-card { padding: 1.15rem; gap: 0.4rem; min-height: 110px; }
  .wwd-wide-top { padding: 1.15rem; flex-wrap: wrap; min-height: 95px; }
  .wwd-img-card-body { padding: 1.1rem; }
  .wwd-img-amber .wwd-img-card-photo { height: 130px; }
  .wwd-img-purple .wwd-img-card-photo { height: 120px; }
}

/* WHY CHOOSE US — SPLIT PANEL */

.why-section {
  position: relative;
  overflow: hidden;
  
  background-image: url('https://ik.imagekit.io/greenspire/GreenSpire%20Solutions%20/home/whychooseus.avif');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.why-mobile-bg {
  display: none; 
  position: absolute;
  inset: 0;
  z-index: 0;
  
  background-image: url('https://ik.imagekit.io/greenspire/GreenSpire%20Solutions%20/home/why2.avif?updatedAt=1782443890837');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.why-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-inline: clamp(1.5rem, 8vw, 8rem);
  padding-block: var(--space-3xl);
}

.why-content {
  max-width: 46%;
}

.why-content .section-label {
  color: var(--clr-forest-deep);
}

.why-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--clr-forest-deep);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.why-desc {
  color: var(--clr-text);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 420px;
  font-weight: 500;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.why-point {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(26, 60, 42, 0.18);
  color: var(--clr-forest-deep);
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
}

.why-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--clr-forest);
  background: rgba(26,60,42,0.07);
  color: var(--clr-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.why-point:hover .why-point-icon {
  background: var(--clr-forest);
  color: var(--clr-white);
  transform: scale(1.1);
}

@media (max-width: 1100px) {
  .why-content { max-width: 52%; }
  .why-section {
    min-height: 480px;
    background-image: none;
    background-color: transparent;
    position: relative;
  }
  .why-mobile-bg { display: block; }
}

@media (max-width: 900px) {
  .why-content { max-width: 60%; }
  .why-points { grid-template-columns: 1fr; }
  .why-section {
    min-height: 440px;
    background-image: none;
    background-color: transparent;
    position: relative;
  }
  .why-mobile-bg { display: block; }
}

@media (max-width: 768px) {
  .why-section {
    background-image: none;
    background-color: transparent;
    min-height: unset;
    
    display: block;
    position: relative;
  }

  .why-mobile-bg {
    display: block;
  }

  
  .why-section .container {
    position: relative;
    z-index: 2;
    display: block;
    padding-block: var(--space-2xl) var(--space-xl);
    padding-inline: var(--container-pad);
    max-width: 100%;
    box-sizing: border-box;
  }

  .why-content {
    max-width: 100%;
  }

 
  .why-content .section-label {
    color: var(--clr-forest-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
  }

  .why-content h2 {
    color: var(--clr-forest-deep);
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }

  .why-desc {
    color: var(--clr-text);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    max-width: 100%;
  }

  
  .why-points {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: var(--space-lg);
  }

  .why-point {
    color: var(--clr-forest-deep);
    border-bottom-color: rgba(26, 60, 42, 0.18);
    font-size: 0.85rem;
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    border-bottom: none;
  }

  .why-point-icon {
    width: 32px;
    height: 32px;
    font-size: 17px;
    border-color: var(--clr-forest);
    background: rgba(26, 60, 42, 0.1);
    color: var(--clr-forest);
  }
}

@media (max-width: 480px) {
  .why-section .container {
    padding-block: var(--space-xl) var(--space-lg);
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-point {
    font-size: 0.825rem;
  }
}

/* ABOUT FOUNDER */

.about-v2 {
  background: var(--clr-forest-deep);
  position: relative;
  overflow: hidden;
}

.about-v2::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135,168,120,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.about-v2 .section-label {
  color: var(--clr-sage);
}

.about-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-v2-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-v2-img:hover img {
  transform: scale(1.04);
}

.about-v2-img::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(245, 200, 66, 0.25);
  border-radius: calc(var(--radius-xl) + 8px);
  pointer-events: none;
}

.about-v2-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.about-owner-name {
  font-weight: 600;
  color: var(--clr-amber);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .about-v2-content h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .about-owner-name     { font-size: 0.95rem; }
}

.about-v2-content > p:not(.section-label):not(.about-owner-name) {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.about-v2-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.av2-feat {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.av2-feat:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245, 200, 66, 0.25);
  transform: translateY(-3px);
}

.av2-feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.av2-feat strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.av2-feat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  
  .about-v2 .section-label {
    font-family: var(--ff-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    text-transform: none;
    color: var(--clr-sage);
  }

  .about-v2-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .about-v2-img {
    aspect-ratio: 4/3;
  }
  
  .about-v2-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .av2-feat {
    padding: 0.65rem;
    gap: 0.5rem;
    border-radius: var(--radius-md);
  }
  .av2-feat-icon {
    font-size: 1.15rem;
  }
  .av2-feat strong {
    font-size: 0.78rem;
  }
  .av2-feat span {
    font-size: 0.68rem;
  }
}

/* GET A FREE QUOTE — */

.quote-section {
  background: var(--clr-cream);
  position: relative;
}

.quote-section .container {
  position: relative;
  z-index: 1;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: end;
  gap: var(--space-2xl);
}

.quote-gallery {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  align-self: stretch;
}

.quote-panel {
  position: relative;
  width: 88%;
  height: 100%;
  min-height: 420px;
  max-height: 640px;
  aspect-ratio: unset;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quote-slide.is-active { opacity: 1; z-index: 1; }

.quote-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.quote-slide:last-child img { object-position: top; }

.quote-content { width: 100%; }

.quote-content .section-label { color: var(--clr-forest); }

.quote-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--clr-forest-deep);
  line-height: 1.15;
  margin-bottom: var(--space-xs);
}

.quote-form-sub {
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  font-size: var(--fs-md);
}

@media (max-width: 768px) {
  .quote-content h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .quote-form-sub    { font-size: 0.95rem; }
}

#quoteFormWrap {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}

.qf-hidden { display: none; }

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.qf-group {
  margin-bottom: var(--space-md);
}

.qf-group--name::before,
.qf-group--phone::before,
.qf-group--email::before {
  display: none;
}

.qf-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-forest-deep);
  margin-bottom: 7px;
  font-family: var(--ff-heading);
  letter-spacing: 0.3px;
  
  position: static;
  transform: none;
  top: auto;
  left: auto;
  pointer-events: auto;
}

.qf-group input:focus + label,
.qf-group input:not(:placeholder-shown) + label,
.qf-group textarea:focus + label,
.qf-group textarea:not(:placeholder-shown) + label {
  top: auto;
  transform: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--clr-forest-deep);
}

.qf-group {
  display: flex;
  flex-direction: column;
}

.qf-group input,
.qf-group textarea,
.qf-group--select select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-cream);
  color: var(--clr-text);
  font-size: 0.95rem;
  font-family: var(--ff-body);
  transition: all var(--transition);
  
  padding-left: 16px;
}

.qf-group input:hover,
.qf-group textarea:hover,
.qf-group--select select:hover {
  border-color: var(--clr-text-light);
  background: var(--clr-white);
}

.qf-group input:focus,
.qf-group textarea:focus,
.qf-group--select select:focus {
  outline: none;
  background: var(--clr-white);
  border-color: var(--clr-forest);
  box-shadow: 0 0 0 4px rgba(26, 60, 42, 0.08);
}

.qf-group input::placeholder,
.qf-group textarea::placeholder {
  color: var(--clr-text-light);
  opacity: 1;
}

.qf-group textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 14px;
}

.qf-group--select label {
  position: static;
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-forest-deep);
  margin-bottom: 7px;
  font-family: var(--ff-heading);
  letter-spacing: 0.3px;
  transform: none;
  top: auto;
  left: auto;
  text-transform: none;
  pointer-events: auto;
}

.qf-group--select select {
  padding: 14px 42px 14px 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%2387A878' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--clr-cream);
  cursor: pointer;
}

.qf-submit {
  width: 100%;
  justify-content: center;
  font-size: var(--fs-md);
  padding: 16px 28px;
  margin-top: var(--space-sm);
}

.qf-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -45%;
  width: 30%;
  height: 100%;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.85) 50%, transparent 80%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 1;
  transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.qf-submit:hover::after { left: 130%; }
.qf-submit .material-symbols-outlined { position: relative; z-index: 2; }

.qf-error-msg {
  color: #c62828;
  font-size: 0.85rem;
  margin-top: var(--space-sm);
}

#quoteFormWrap.hidden { display: none; }

.qf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: var(--space-md);
  background: var(--clr-cream);
  border-radius: var(--radius-xl);
  border: 1.5px dashed var(--clr-sage);
}

.qf-success.visible { display: flex; }

.qf-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clr-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: qfSuccessBloom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qf-success-icon .material-symbols-outlined { font-size: 36px; color: var(--clr-forest); }

@keyframes qfSuccessBloom {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.qf-success h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-forest-deep);
  margin: 0;
}

.qf-success p {
  color: var(--clr-text-muted);
  max-width: 300px;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .quote-grid {
    grid-template-columns: 1fr 1.4fr;
    align-items: end;
    gap: var(--space-lg);
  }
  .quote-gallery {
    align-items: flex-end;
    overflow: hidden;
  }
  .quote-panel {
    width: 100%;
    max-width: 100%;
    min-height: 380px;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
    box-shadow: none;
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .quote-grid {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .quote-gallery {
    width: 100%;
    justify-content: center;
  }
  .quote-panel {
    aspect-ratio: 4 / 5;
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  
  .quote-content .section-label {
    color: var(--clr-forest);
    font-size: 0.84rem;
    letter-spacing: 1.5px;
  }

  
  .quote-gallery {
    display: block;
  }

  .quote-panel {
    aspect-ratio: 3 / 4;
    max-width: 240px;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    margin-inline: auto;
  }

  
  .quote-slide {
    opacity: 0;
    pointer-events: none;
  }
  .quote-slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  
  .quote-slide img {
    transform: none !important;
    transition: none !important;
    filter: none !important;
    object-fit: cover;
    object-position: center top;
  }

  
  .quote-grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: end;
    gap: var(--space-md);
  }

  #quoteFormWrap {
    padding: var(--space-lg);
  }

  .qf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .qf-group input,
  .qf-group textarea,
  .qf-group--select select {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .qf-group--select select {
    padding: 12px 38px 12px 14px;
  }

  .qf-group textarea {
    min-height: 110px;
  }

  .qf-submit {
    display: flex;
    width: auto;
    margin-inline: auto;
    padding: 10px 26px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  #quoteFormWrap {
    padding: var(--space-md) var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .quote-form-sub {
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
  }
}

.categories-section {
  background: var(--clr-forest);
  padding: var(--space-3xl) 0 var(--space-2xl);
  overflow: hidden;
  position: relative;
}

.categories-section .container {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.categories-main-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  font-style: normal;
  color: var(--clr-white);
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.cat-title-accent {
  font-weight: 800;
  color: var(--clr-amber);
  position: relative;
  display: inline-block;
}

.cat-title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background: var(--clr-amber);
  border-radius: 2px;
  opacity: 0.45;
}

.categories-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cat-nav-btn {
  display: none;              
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  
  width: 32px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--clr-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.cat-nav-btn:active {
  background: var(--clr-amber);
  border-color: var(--clr-amber);
  color: var(--clr-forest-deep);
  transform: translateY(-50%) scale(0.96);
}

.cat-nav-btn--prev { left: 0.4rem; }
.cat-nav-btn--next { right: 0.4rem; }
.cat-nav-btn .material-symbols-outlined { font-size: 20px; }

.categories-scroll {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-lg), 3.5vw, var(--space-2xl));
  
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: visible;
  padding: 40px var(--container-pad);
  scrollbar-width: none;
  flex: 1;
}

.categories-scroll::-webkit-scrollbar { display: none; }
.categories-scroll.grabbing { cursor: grabbing; }

.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
  cursor: pointer;
}

.cat-pill:hover { transform: translateY(-6px); }
.cat-pill:hover .cat-icon { transform: scale(1.08); }
.cat-pill:hover .cat-name { color: rgba(255,255,255,1); }

.cat-icon {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--transition-bounce);
  border: 2px solid rgba(255,255,255,0.14);
  flex-shrink: 0;
}

.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.cat-pill:hover .cat-icon img {
  transform: scale(1.1);
}

.cat-name {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  text-align: center;
  letter-spacing: 0.2px;
  transition: color var(--transition);
  white-space: nowrap;
}

@media (min-width: 900px) and (max-width: 1024px) {
  .cat-nav-btn { display: none; }
  .categories-scroll {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding: 28px var(--container-pad);
    gap: var(--space-lg) var(--space-lg);
    cursor: default;
    mask-image: none;
    -webkit-mask-image: none;
    scroll-snap-type: none;
  }
  
  .cat-pill {
    flex: 0 0 calc(25% - 1.5rem);
    align-items: center;
    scroll-snap-align: unset;
  }
  .cat-icon { width: 96px; height: 96px; }
}

@media (max-width: 899px) {
  .cat-icon { width: 100px; height: 100px; }
  .cat-nav-btn { display: flex; }
  .categories-scroll {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    padding: 36px 3.6rem;
    gap: clamp(var(--space-md), 3vw, var(--space-lg));
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }
  .cat-pill { scroll-snap-align: center; }
}

@media (max-width: 640px) {
  .categories-section { padding: var(--space-2xl) 0 var(--space-lg); }
  .categories-main-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .categories-scroll { padding: 28px 3.2rem; gap: var(--space-md); }
  .cat-pill { min-width: 100px; }
  .cat-icon { width: 84px; height: 84px; }
  .cat-name { font-size: 0.85rem; }
}

@media (max-width: 380px) {
  .cat-pill { min-width: 84px; }
  .cat-icon { width: 72px; height: 72px; }
  .cat-name { font-size: 0.78rem; }
  .cat-nav-btn { width: 28px; height: 48px; }
}

/* LET'S GO STRIP — REMOVED */

.letsgo-strip {
  display: none !important;
}

.letsgo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: letsGoScroll 18s linear infinite;
}

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

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

.letsgo-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-2xl);
  font-family: 'Unbounded', var(--ff-heading), sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--clr-forest-deep);
  white-space: nowrap;
}

.letsgo-item--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--clr-forest-deep);
  text-stroke: 1.5px var(--clr-forest-deep);
}

.letsgo-item .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--clr-amber-dark);
  -webkit-text-stroke: 0;
}

.letsgo-item--outline .material-symbols-outlined { color: var(--clr-amber); }

/* PORTFOLIO / MASONRY GALLERY */

.portfolio-section { background: var(--clr-cream); }
.portfolio-section .section-header { margin-bottom: var(--space-2xl); }

.portfolio-masonry {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pm-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.pm-col--1 { flex: 1.0; }
.pm-col--2 { flex: 1.2; }
.pm-col--3 { flex: 1.0; }

.pm-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.pm-item--tall   { height: 380px; }
.pm-item--medium { height: 260px; }
.pm-item--short  { height: 190px; }

.pm-col--2 .pm-item--short  { height: 175px; }
.pm-col--2 .pm-item--medium { height: 230px; }

.pm-col--3 .pm-item--medium { height: 240px; }
.pm-col--3 .pm-item--tall   { height: 350px; }

.pm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-item:hover img {
  transform: scale(1.06);
}

.pm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pm-item:hover .pm-overlay {
  opacity: 1;
}

.pm-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,25,16,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.pm-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
  z-index: 2;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.pm-item:hover .pm-tag {
  transform: translateY(0);
}

.pm-tag .material-symbols-outlined {
  font-size: 14px;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}

@media (hover: none) {
  .pm-overlay {
    opacity: 0;
  }
}

.pm-item.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pm-item.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-col--2 .pm-item.reveal { transition-delay: 100ms; }
.pm-col--3 .pm-item.reveal { transition-delay: 200ms; }

@media (max-width: 1024px) {
  .pm-item--tall   { height: 320px; }
  .pm-item--medium { height: 220px; }
  .pm-item--short  { height: 165px; }
  .pm-col--2 .pm-item--short  { height: 155px; }
  .pm-col--2 .pm-item--medium { height: 200px; }
  .pm-col--3 .pm-item--medium { height: 205px; }
  .pm-col--3 .pm-item--tall   { height: 295px; }
}

@media (max-width: 768px) {
  .portfolio-section .section-header { margin-bottom: 1.5rem; }
  .portfolio-section .section-header h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .portfolio-section .section-header p  { font-size: 0.95rem; padding-inline: 1rem; }

  .portfolio-masonry {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .pm-col {
    gap: 0.5rem;
    flex: 1;
  }

  
  .pm-col--1, .pm-col--2, .pm-col--3 { flex: 1; display: flex; }

  
  .pm-item--tall,
  .pm-item--medium,
  .pm-item--short,
  .pm-col--2 .pm-item--short,
  .pm-col--2 .pm-item--medium,
  .pm-col--3 .pm-item--medium,
  .pm-col--3 .pm-item--tall {
    height: 130px;
  }

  
  .pm-col--1 .pm-item:first-child { height: 160px; }
  .pm-col--2 .pm-item:first-child { height: 110px; }
  .pm-col--3 .pm-item:first-child { height: 150px; }

  
  .pm-overlay { opacity: 0; }
  .pm-tag { font-size: 0.58rem; padding: 3px 7px; gap: 3px; }
  .pm-tag .material-symbols-outlined { font-size: 11px; }
}

@media (max-width: 480px) {
  .portfolio-masonry { gap: 0.4rem; }
  .pm-col { gap: 0.4rem; }

  .pm-item--tall,
  .pm-item--medium,
  .pm-item--short,
  .pm-col--2 .pm-item--short,
  .pm-col--2 .pm-item--medium,
  .pm-col--3 .pm-item--medium,
  .pm-col--3 .pm-item--tall {
    height: 110px;
  }
  .pm-col--1 .pm-item:first-child { height: 140px; }
  .pm-col--2 .pm-item:first-child { height: 95px; }
  .pm-col--3 .pm-item:first-child { height: 130px; }

  .pm-tag { font-size: 0.52rem; padding: 2px 6px; }
  .pm-tag .material-symbols-outlined { display: none; }
}

/* ================== TESTIMONIALS — ... */
.testimonials-section {
  background: var(--clr-forest-deep);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(135,168,120,0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(245,200,66,0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonials-section .section-header .section-label {
  justify-content: center;
  font-size: 0.95rem;
  color: var(--clr-amber-dark);
}

.testimonials-section .section-header h2 {
  color: var(--clr-white);
}

.testimonials-section .section-header p {
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-xs);
}

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: var(--space-xs) 0 var(--space-sm);
  z-index: 1;
}

.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-forest-deep), transparent);
}

.testimonials-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-forest-deep), transparent);
}

.testimonials-track {
  display: flex;
  gap: var(--space-lg);
  animation: scrollTestimonials 45s linear infinite;
  width: max-content;
}

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

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

.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-lg);
  width: 36px;
  height: 2px;
  background: var(--clr-amber);
  border-radius: 0 0 2px 2px;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-stars .material-symbols-outlined {
  font-size: 16px;
  color: var(--clr-amber);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.testimonial-card .review-text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  font-style: normal;
  font-family: var(--ff-body);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-sage) 100%);
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author .author-info h4,
.testimonial-author .author-info h3 {
  font-size: var(--fs-small);
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.testimonial-author .author-info p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.3px;
}

.testimonials-dots,
.testimonials-nav {
  display: none;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  opacity: 1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s, width 0.3s, border-radius 0.3s, background 0.3s;
}

.testimonials-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--clr-amber);
}

.testimonials-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials-nav-btn:hover {
  background: var(--clr-amber);
  color: var(--clr-forest-deep);
  border-color: var(--clr-amber);
}

.testimonials-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .testimonial-card { width: 320px; }
}

@media (max-width: 750px) {
  .testimonials-section { padding-bottom: var(--space-xl); }

  .testimonials-section .section-header h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  .testimonials-track-wrapper {
    overflow: hidden;
    padding: var(--space-xs) 0 var(--space-lg);
  }

  .testimonials-track-wrapper::before,
  .testimonials-track-wrapper::after {
    display: none;
  }

  .testimonials-track {
    display: flex;
    flex-direction: row;
    animation: none;
    width: 100%;
    gap: 0;
    padding: var(--space-xs) 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
  }

  .testimonials-track.is-dragging {
    cursor: grabbing;
    transition: none;
  }

  
  .testimonials-track .testimonial-card[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    width: calc(100% - 32px);
    min-width: calc(100% - 32px);
    margin: 0 16px;
    padding: var(--space-lg) var(--space-md);
    flex-shrink: 0;
    -webkit-user-select: none;
    user-select: none;
    box-sizing: border-box;
    background: rgba(255,255,255,0.05);
  }

  .testimonial-card .review-text {
    font-size: var(--fs-small);
    line-height: 1.75;
  }

  .testimonials-section.slider-active .testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
  }

  .testimonials-section.slider-active .testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
  }
}

/* CTA BAND */

.cta-band {
  background: var(--clr-amber);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(26,60,42,0.1);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(26,60,42,0.06);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band-text h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--clr-forest-deep);
  line-height: 1.15;
  margin-bottom: var(--space-xs);
}

.cta-band-text p {
  color: rgba(26,60,42,0.7);
  font-size: var(--fs-md);
}

.cta-band-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cta-band .btn--amber-solid {
  background: var(--clr-forest) !important;
  color: var(--clr-white) !important;
  box-shadow: 0 8px 24px rgba(26,60,42,0.30) !important;
}

.cta-band .btn--amber-solid:hover {
  background: var(--clr-forest-deep) !important;
  transform: translateY(-4px) !important;
}

.cta-band .btn--ghost-white {
  border-color: rgba(26,60,42,0.4) !important;
  color: var(--clr-forest-deep) !important;
}

.cta-band .btn--ghost-white:hover {
  background: rgba(26,60,42,0.08) !important;
  border-color: var(--clr-forest-deep) !important;
}

@media (max-width: 1024px) {
  .cta-band {
    padding: var(--space-2xl) 0;
  }
  .cta-band-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
  }
  .cta-band-text p {
    font-size: var(--fs-small);
  }
  .cta-band-actions .btn {
    padding: 10px 20px;
    font-size: var(--fs-xs);
  }
  .cta-band-actions .btn .material-symbols-outlined {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-band-text h2 {
    font-size: 1.4rem;
  }
  .cta-band-text p {
    font-size: var(--fs-xs);
  }
  .cta-band-actions .btn {
    padding: 8px 16px;
    font-size: 0.68rem;
  }
  .cta-band-actions .btn .material-symbols-outlined {
    font-size: 14px;
  }
}

@media (max-width: 767px) {

  
  .hero-editorial::before {
    animation: none;
    background-image: none;
  }

  
  .hero-panel--dark::after {
    animation: none;
  }
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }

  
  .hero-display-title .title-outline {
    animation: none;
  }

  
  .hero-right-card {
    transform: none !important;
    will-change: auto;
  }

  
  .marquee-ticker-inner {
    animation-duration: 35s;
  }

  
  .testimonials-track {
    animation-duration: 50s;
  }

  
  .wwd-section::before,
  .wwd-section::after {
    display: none;
  }

  
  .about-v2::before {
    display: none;
  }

  
  .wwd-card:hover,
  .eco-pillar:hover,
  .plant-card:hover,
  .av2-feat:hover,
  .gallery-item:hover {
    transform: none;
  }

  
  .hero-slide img {
    transform: none !important;
    transition: none;
  }

  
}

/* ── Reduce-motion: respect the OS preference fully ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================
    CUSTOM LOGO SIZING
   ===================================================== */

.brand-item:nth-child(1), .brand-item:nth-child(9)  { height: 60px; padding: 0rem 2rem; }

.brand-item:nth-child(2), .brand-item:nth-child(10) { height: 150px; padding: 0rem 2rem; }

.brand-item:nth-child(3), .brand-item:nth-child(11) { height: 130px; padding: 0rem 2rem; }

.brand-item:nth-child(4), .brand-item:nth-child(12) { height: 104px; padding: 0rem 2rem; }

.brand-item:nth-child(5), .brand-item:nth-child(13) { height: 104px; padding: 0rem 2rem; }

.brand-item:nth-child(6), .brand-item:nth-child(14) { height: 200px; padding: 0rem 2rem; }

.brand-item:nth-child(7), .brand-item:nth-child(15) { height: 155px; padding: 0rem 2rem; }

.brand-item:nth-child(8), .brand-item:nth-child(16) { height: 115px; padding: 0rem 2rem; }

@media (max-width: 769px) {

  .brand-item:nth-child(1), .brand-item:nth-child(9)  { height: 60px; padding: 0.2rem 0.8rem; }

  .brand-item:nth-child(2), .brand-item:nth-child(10) { height: 140px; padding: 0.2rem 0.8rem; }

  .brand-item:nth-child(3), .brand-item:nth-child(11) { height: 140px; padding: 0.2rem 0.8rem; }

  .brand-item:nth-child(4), .brand-item:nth-child(12) { height: 100px; padding: 0.2rem 0.8rem; }

  .brand-item:nth-child(5), .brand-item:nth-child(13) { height: 100px; padding: 0.2rem 0.8rem; }

  .brand-item:nth-child(6), .brand-item:nth-child(14) { height: 180px; padding: 0.2rem 0.8rem; }

  .brand-item:nth-child(7), .brand-item:nth-child(15) { height: 140px; padding: 0.2rem 0.8rem; }

  .brand-item:nth-child(8), .brand-item:nth-child(16) { height: 120px; padding: 0.2rem 0.8rem; }
}

@media (max-width: 480px) {

  .brand-item:nth-child(1), .brand-item:nth-child(9)  { height: 50px; padding: 0.2rem 0.5rem; }

  .brand-item:nth-child(2), .brand-item:nth-child(10) { height: 115px; padding: 0.2rem 0.5rem; }

  .brand-item:nth-child(3), .brand-item:nth-child(11) { height: 100px; padding: 0.2rem 0.5rem; }

  .brand-item:nth-child(4), .brand-item:nth-child(12) { height: 75px; padding: 0.2rem 0.5rem; }

  .brand-item:nth-child(5), .brand-item:nth-child(13) { height: 78px; padding: 0.2rem 0.5rem; }

  .brand-item:nth-child(6), .brand-item:nth-child(14) { height: 135px; width:170px ; padding: 0.2rem 0.1rem; }

  .brand-item:nth-child(7), .brand-item:nth-child(15) { height: 140px; padding: 0.2rem 0.5rem; }

  .brand-item:nth-child(8), .brand-item:nth-child(16) { height: 110px; padding: 0.2rem 0.5rem; }
}

@media (max-width: 1024px) {
  .hero-editorial::before {
    animation: none;      
  }
  .hero-panel--dark::after {
    animation: none;    
  }
  .hero-blob-1, .hero-blob-2 {
    display: none;      
  }
  .hero-display-title .title-outline {
    animation: none;       
  }
}