/* ════════════════════════════════════════════
   CTC — Coffee Tea & Chocolate Product Centre
   ecstyle.css  |  Botanical Green & Cream Theme
════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --green-dk:     #1A3A2A;
  --green-mid:    #2D6A4F;
  --green-lt:     #52B788;
  --green-pale:   #B7E4C7;
  --brown-dk:     #5C3317;
  --brown-mid:    #8B5E3C;
  --brown-lt:     #C8956C;
  --cream:        #FAF5EC;
  --cream2:       #F2EAD8;
  --cream3:       #E8DEC8;
  --white:        #FFFFFF;
  --text-dark:    #1C2B1F;
  --text-mid:     #3B5249;
  --text-light:   #FDFAF4;
  --border:       rgba(44,106,79,0.22);
  --border-hover: rgba(44,106,79,0.6);
  --accent:       #2D6A4F;
  --accent-lt:    #52B788;
  --ease:         cubic-bezier(.4,0,.2,1);

  /* Botanical SVG pattern as data URI */
  --leaf-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg opacity='0.07' fill='%232D6A4F'%3E%3Cellipse cx='30' cy='40' rx='12' ry='22' transform='rotate(-30 30 40)'/%3E%3Cellipse cx='80' cy='15' rx='10' ry='18' transform='rotate(20 80 15)'/%3E%3Cellipse cx='150' cy='55' rx='13' ry='24' transform='rotate(-15 150 55)'/%3E%3Cellipse cx='170' cy='130' rx='9' ry='17' transform='rotate(40 170 130)'/%3E%3Cellipse cx='110' cy='175' rx='11' ry='20' transform='rotate(-25 110 175)'/%3E%3Cellipse cx='50' cy='155' rx='12' ry='22' transform='rotate(10 50 155)'/%3E%3Cellipse cx='20' cy='110' rx='8' ry='15' transform='rotate(-45 20 110)'/%3E%3Cellipse cx='130' cy='90' rx='10' ry='19' transform='rotate(30 130 90)'/%3E%3Cellipse cx='60' cy='80' rx='7' ry='13' transform='rotate(-20 60 80)'/%3E%3C/g%3E%3Cg opacity='0.05' stroke='%232D6A4F' stroke-width='0.8' fill='none'%3E%3Cpath d='M30 40 Q36 30 30 18'/%3E%3Cpath d='M80 15 Q86 5 80 -7'/%3E%3Cpath d='M150 55 Q156 43 150 31'/%3E%3Cpath d='M170 130 Q176 118 170 106'/%3E%3Cpath d='M110 175 Q116 163 110 151'/%3E%3Cpath d='M50 155 Q56 143 50 131'/%3E%3C/g%3E%3C/svg%3E");

  --flower-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg opacity='0.08' fill='none' stroke='%232D6A4F' stroke-width='1'%3E%3Cpath d='M30 80 Q60 20 90 80 Q60 140 30 80Z'/%3E%3Cline x1='60' y1='20' x2='60' y2='150' stroke-width='0.8'/%3E%3Cline x1='42' y1='60' x2='60' y2='80' stroke-width='0.5'/%3E%3Cline x1='78' y1='60' x2='60' y2='80' stroke-width='0.5'/%3E%3Cline x1='38' y1='80' x2='60' y2='100' stroke-width='0.5'/%3E%3Cline x1='82' y1='80' x2='60' y2='100' stroke-width='0.5'/%3E%3Cpath d='M170 40 Q200 -20 230 40 Q200 100 170 40Z' transform='rotate(25 200 40)'/%3E%3Cline x1='200' y1='-20' x2='200' y2='110' stroke-width='0.8' transform='rotate(25 200 40)'/%3E%3Cpath d='M240 180 Q270 120 300 180 Q270 240 240 180Z' transform='rotate(-15 270 180)'/%3E%3Cline x1='270' y1='120' x2='270' y2='250' stroke-width='0.8' transform='rotate(-15 270 180)'/%3E%3Cpath d='M10 200 Q40 140 70 200 Q40 260 10 200Z' transform='rotate(10 40 200)'/%3E%3Cline x1='40' y1='140' x2='40' y2='270' stroke-width='0.8' transform='rotate(10 40 200)'/%3E%3Cpath d='M120 230 Q150 170 180 230 Q150 290 120 230Z' transform='rotate(-20 150 230)'/%3E%3Cline x1='150' y1='170' x2='150' y2='300' stroke-width='0.8' transform='rotate(-20 150 230)'/%3E%3C/g%3E%3C/svg%3E");
}
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ════════════════════════════════════════════
   BOTANICAL BACKGROUND UTILITY
════════════════════════════════════════════ */
.botanical-bg {
  position: relative;
}
.botanical-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--leaf-pattern);
  background-size: 200px 200px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 80px;
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(82,183,136,0.25);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 6px 40px rgba(0,0,0,.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
  max-width: none;
  margin: 0;
}

/* Brand */
.nav-brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-ctc {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green-pale);
  letter-spacing: .03em;
  line-height: 1;
}
.brand-pipe { width: 1px; height: 30px; background: rgba(82,183,136,0.3); margin: 0 .1rem; }
.brand-text {
  display: flex; flex-direction: column;
  font-family: 'Lato', sans-serif;
  font-size: .65rem;
  letter-spacing: .13em;
  color: rgba(183,228,199,.85);
  line-height: 1.6;
  font-weight: 400;
}

/* Nav Links */
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: rgba(183,228,199,.92);
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--green-lt);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--green-pale); }
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

/* Actions */
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-icon-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(183,228,199,.9);
  padding: .3rem;
  display: flex; align-items: center;
  transition: color .25s;
}
.nav-icon-btn:hover { color: var(--green-pale); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: rgba(183,228,199,.9); }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(26,58,42,.98);
  border-bottom: 1px solid rgba(82,183,136,.2);
  z-index: 199; padding: 1rem 2rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Lato', sans-serif; font-size: .95rem;
  letter-spacing: .18em; color: rgba(183,228,199,.92);
  padding: .85rem 0; border-bottom: 1px solid rgba(82,183,136,.12);
  transition: color .25s;
  font-weight: 400;
}
.mobile-nav a:hover { color: var(--green-pale); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: var(--green-dk);
}

/* Botanical painted bg for hero */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg opacity='0.09' stroke='%2352B788' stroke-width='0.8' fill='none'%3E%3Cellipse cx='40' cy='80' rx='15' ry='32' transform='rotate(-25 40 80)'/%3E%3Cpath d='M40 80 Q50 60 40 40'/%3E%3Cpath d='M40 80 Q28 65 25 45'/%3E%3Cellipse cx='320' cy='60' rx='12' ry='26' transform='rotate(20 320 60)'/%3E%3Cpath d='M320 60 Q330 40 320 20'/%3E%3Cellipse cx='370' cy='200' rx='10' ry='22' transform='rotate(-40 370 200)'/%3E%3Cpath d='M370 200 Q382 182 375 162'/%3E%3Cellipse cx='60' cy='320' rx='14' ry='28' transform='rotate(15 60 320)'/%3E%3Cpath d='M60 320 Q72 302 65 280'/%3E%3Cellipse cx='200' cy='370' rx='11' ry='24' transform='rotate(-30 200 370)'/%3E%3Cpath d='M200 370 Q212 350 205 330'/%3E%3Cellipse cx='350' cy='340' rx='13' ry='27' transform='rotate(35 350 340)'/%3E%3Cpath d='M350 340 Q362 320 355 300'/%3E%3Cellipse cx='160' cy='140' rx='9' ry='20' transform='rotate(-15 160 140)'/%3E%3Cpath d='M160 140 Q170 122 163 104'/%3E%3Cellipse cx='280' cy='260' rx='12' ry='25' transform='rotate(28 280 260)'/%3E%3Cpath d='M280 260 Q292 242 285 222'/%3E%3C/g%3E%3Cg opacity='0.07' fill='%231A3A2A'%3E%3Ccircle cx='100' cy='180' r='6'/%3E%3Ccircle cx='100' cy='168' r='4.5'/%3E%3Ccircle cx='112' cy='180' r='4.5'/%3E%3Ccircle cx='100' cy='192' r='4.5'/%3E%3Ccircle cx='88' cy='180' r='4.5'/%3E%3Ccircle cx='240' cy='100' r='5'/%3E%3Ccircle cx='240' cy='89' r='4'/%3E%3Ccircle cx='251' cy='100' r='4'/%3E%3Ccircle cx='240' cy='111' r='4'/%3E%3Ccircle cx='229' cy='100' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  pointer-events: none;
}

.hero-bg-layer {
  position: absolute; inset: 0; z-index: 0;
}
#heroCanvas { width: 100%; height: 100%; display: block; }

.hero-smoke {
  position: absolute;
  top: -10%; right: 5%;
  width: 65%; height: 110%;
  background:
    radial-gradient(ellipse 55% 70% at 60% 30%, rgba(45,106,79,.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 75% 70%, rgba(26,58,42,.4) 0%, transparent 60%);
  filter: blur(4px);
  z-index: 1;
  animation: smokeDrift 10s ease-in-out infinite alternate;
}
@keyframes smokeDrift {
  from { transform: translateY(0) scale(1); opacity: .9; }
  to   { transform: translateY(-20px) scale(1.03); opacity: 1; }
}

.hero-visual {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
  height: 92%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-glow {
  position: absolute; inset: -5%;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(82,183,136,.4) 0%, transparent 65%);
  filter: blur(50px);
  animation: glowPulse 5s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes glowPulse {
  from { transform: scale(.95); opacity: .7; }
  to   { transform: scale(1.05); opacity: 1; }
}

.hero-cup {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.88) contrast(1.05) saturate(.95);
  mask-image:
    radial-gradient(ellipse 75% 85% at 55% 48%, black 35%, rgba(0,0,0,.7) 55%, transparent 78%),
    linear-gradient(to left, black 40%, transparent 85%);
  -webkit-mask-image:
    radial-gradient(ellipse 75% 85% at 55% 48%, black 35%, rgba(0,0,0,.7) 55%, transparent 78%),
    linear-gradient(to left, black 40%, transparent 85%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  animation: cupFloat 9s ease-in-out infinite;
}
@keyframes cupFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.scatter-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.scatter {
  position: absolute;
  border-radius: 6px;
  object-fit: cover;
  filter: brightness(.55) saturate(.75) hue-rotate(60deg);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}
.s1 { width: 220px; height: 140px; bottom: 8%; left: -5%; opacity: .55; animation: scatterFloat 11s ease-in-out infinite; }
.s2 { width: 180px; height: 120px; top: 8%; left: 2%; opacity: .4; animation: scatterFloat 14s ease-in-out infinite reverse; }
@keyframes scatterFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

/* Botanical sparkle dots — now green */
.hero-visual::before {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  background-image:
    radial-gradient(circle 2px at 30% 25%, rgba(82,183,136,.8) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 65% 60%, rgba(82,183,136,.6) 0%, transparent 100%),
    radial-gradient(circle 1px at 48% 80%, rgba(82,183,136,.5) 0%, transparent 100%),
    radial-gradient(circle 2.5px at 72% 30%, rgba(183,228,199,.7) 0%, transparent 100%),
    radial-gradient(circle 1px at 85% 55%, rgba(82,183,136,.5) 0%, transparent 100%),
    radial-gradient(circle 2px at 55% 15%, rgba(183,228,199,.6) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 20% 70%, rgba(82,183,136,.4) 0%, transparent 100%),
    radial-gradient(circle 3px at 40% 50%, rgba(82,183,136,.3) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Hero Text ── */
.hero-content {
  position: relative; z-index: 3;
  padding: 0 3rem 0 5rem;
  max-width: 50%;
}

.hero-pretitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--green-pale);
  margin-bottom: .1rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--cream);
  text-shadow:
    0 0 60px rgba(82,183,136,.3),
    0 2px 20px rgba(0,0,0,.5);
  margin-bottom: .9rem;
  letter-spacing: -.01em;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(183,228,199,.98);
  line-height: 1.6;
  margin-bottom: .55rem;
}

.hero-loc {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .32em;
  color: rgba(183,228,199,.85);
  margin-bottom: 2.4rem;
  font-weight: 400;
}

/* ── Outline Green Button ── */
.btn-outline {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--green-lt);
  border: 1px solid var(--green-lt);
  padding: .9rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: color .3s var(--ease);
  cursor: pointer;
}
.btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green-lt);
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
  z-index: 0;
}
.btn-outline:hover { color: var(--white); }
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline > * { position: relative; z-index: 1; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .75s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   FEATURES STRIP
════════════════════════════════════════════ */
.strip {
  background: var(--cream2);
  border-top: 1px solid rgba(45,106,79,.2);
  border-bottom: 1px solid rgba(45,106,79,.2);
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--flower-pattern);
  background-size: 300px 300px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 1;
}

.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 2.6rem 3rem;
  position: relative; z-index: 1;
}

.strip-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0 1.5rem;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child  { padding-right: 0; }

.strip-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1px solid rgba(45,106,79,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  background: rgba(45,106,79,.08);
}
.strip-icon svg { width: 100%; height: 100%; }

.strip-text h4 {
  font-family: 'Cinzel', serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--green-mid);
  margin-bottom: .5rem;
}
.strip-text p {
  font-size: 1.25rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 400;
}

.strip-sep {
  width: 1px;
  background: rgba(45,106,79,.18);
  align-self: stretch;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   COLLECTIONS
════════════════════════════════════════════ */
.collections {
  padding: 5.5rem 4rem;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.coll-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--green-mid);
  margin-bottom: .9rem;
  display: block;
}

.gold-rule {
  width: 55px; height: 1px;
  background: linear-gradient(to right, transparent, var(--green-mid), transparent);
  margin: 0 auto;
}

.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.coll-card {
  background: var(--white);
  border: 1px solid rgba(45,106,79,.15);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .35s var(--ease);
  box-shadow: 0 2px 16px rgba(26,58,42,.07);
}
.coll-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 16px 50px rgba(26,58,42,.18), 0 0 0 1px rgba(45,106,79,.3);
  transform: translateY(-5px);
}

.coll-img-wrap {
  position: relative;
  height: 258px;
  overflow: hidden;
}

.coll-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(.9);
  transition: transform .6s var(--ease), filter .4s;
}
.coll-card:hover .coll-img {
  transform: scale(1.06);
  filter: brightness(.92) saturate(1);
}

.coll-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,.75) 0%, rgba(26,58,42,.05) 55%, transparent 100%);
}

.coll-body {
  padding: 1.4rem 1.6rem 1.8rem;
  background: var(--white);
  position: relative;
}
/* Tiny leaf watermark in card */
.coll-body::after {
  content: '';
  position: absolute;
  right: 1rem; bottom: 1rem;
  width: 60px; height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cellipse cx='30' cy='35' rx='12' ry='22' transform='rotate(-20 30 35)' fill='none' stroke='%232D6A4F' stroke-width='0.7' opacity='0.12'/%3E%3Cpath d='M30 35 Q38 22 30 10' stroke='%232D6A4F' stroke-width='0.7' fill='none' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.coll-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--green-dk);
  margin-bottom: .42rem;
}
.coll-body p {
  font-size: 1.3rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-weight: 400;
}

.coll-link {
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green-mid);
  transition: letter-spacing .25s, color .25s;
}
.coll-link:hover { letter-spacing: .28em; color: var(--brown-mid); }

/* ════════════════════════════════════════════
   MOMENTS SECTION
════════════════════════════════════════════ */
.moments {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 500px;
  background: var(--green-dk);
  border-top: 1px solid rgba(82,183,136,.2);
  border-bottom: 1px solid rgba(82,183,136,.2);
  overflow: hidden;
  position: relative;
}
/* Botanical overlay on moments */
.moments::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg opacity='0.08' stroke='%2352B788' stroke-width='0.8' fill='none'%3E%3Cellipse cx='30' cy='60' rx='12' ry='26' transform='rotate(-20 30 60)'/%3E%3Cpath d='M30 60 Q40 42 33 22'/%3E%3Cellipse cx='260' cy='40' rx='10' ry='22' transform='rotate(25 260 40)'/%3E%3Cpath d='M260 40 Q270 22 263 2'/%3E%3Cellipse cx='280' cy='240' rx='13' ry='27' transform='rotate(-35 280 240)'/%3E%3Cpath d='M280 240 Q292 222 285 200'/%3E%3Cellipse cx='20' cy='250' rx='11' ry='24' transform='rotate(10 20 250)'/%3E%3Cpath d='M20 250 Q32 232 25 210'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px 300px;
  pointer-events: none;
}

.moments-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3.5rem 5rem 5rem;
  position: relative; z-index: 1;
}

.moments-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 3.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.22;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.moments-desc {
  font-size: 1.4rem;
  color: rgba(183,228,199,.92);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2.4rem;
}

/* Button variant on dark green bg */
.moments-left .btn-outline {
  color: var(--green-pale);
  border-color: var(--green-pale);
}
.moments-left .btn-outline::before { background: var(--green-pale); }
.moments-left .btn-outline:hover { color: var(--green-dk); }

.moments-right {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.moments-img-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 55% 50%, rgba(45,106,79,.5) 0%, transparent 68%),
    var(--green-dk);
}

.product-showcase { position: relative; z-index: 1; width: 100%; height: 100%; }
.showcase-main {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.8) saturate(.9);
  transition: transform .8s var(--ease), filter .6s;
}
.moments-right:hover .showcase-main {
  transform: scale(1.03);
  filter: brightness(.88) saturate(1);
}

/* ════════════════════════════════════════════
   FOOTER FEATURES
════════════════════════════════════════════ */
.foot-features {
  background: var(--cream2);
  background-image: url('pic11.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(45,106,79,.18);
  position: relative;
  overflow: hidden;
}
.foot-features::before {
  display: none;
}

.ff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 8rem 7rem;  /* tukar dari 2.6rem */
  position: relative; z-index: 1;
}

.ff-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 180px;
  padding: 0 1.5rem;
}
.ff-item:first-child { padding-left: 0; }
.ff-item:last-child  { padding-right: 0; }

.ff-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(45,106,79,.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 9px;
  background: rgba(45,106,79,.07);
}
.ff-icon svg { width: 100%; height: 100%; }

.ff-item h5 {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .17em;
  color: var(--green-dk);
  margin-bottom: .32rem;
}
.ff-item p {
  font-size: 1.2rem;
  color: var(--text-mid);
  line-height: 1.55;
  font-weight: 400;
}

.ff-sep {
  width: 1px;
  background: rgba(45,106,79,.16);
  align-self: stretch;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   FOOTER BOTTOM
════════════════════════════════════════════ */
.footer-bottom {
  background: var(--green-dk);
  padding: 1.6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.footer-bottom::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='60' viewBox='0 0 200 60'%3E%3Cg opacity='0.07' stroke='%2352B788' stroke-width='0.6' fill='none'%3E%3Cellipse cx='20' cy='30' rx='7' ry='15' transform='rotate(-20 20 30)'/%3E%3Cellipse cx='180' cy='30' rx='7' ry='15' transform='rotate(20 180 30)'/%3E%3Cellipse cx='100' cy='10' rx='5' ry='11' transform='rotate(0 100 10)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 60px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  letter-spacing: .08em;
  color: rgba(183,228,199,.75);
  font-weight: 400;
  position: relative; z-index: 1;
}

.social-row { display: flex; gap: .75rem; position: relative; z-index: 1; }
.soc-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(82,183,136,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(183,228,199,.78);
  padding: 7px;
  transition: color .25s, border-color .25s, background .25s;
}
.soc-btn svg { width: 100%; height: 100%; }
.soc-btn:hover {
  color: var(--green-pale);
  border-color: var(--green-lt);
  background: rgba(82,183,136,.15);
}

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--rd, 0s);
}
.js-reveal.in-view,
.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { max-width: 55%; padding-left: 3rem; }
  .hero-visual   { width: 52%; }
  .coll-grid     { gap: 1rem; }
  .coll-img-wrap { height: 220px; }
  .strip-item    { padding: 0 1rem; }
  .ff-item       { padding: 0 1rem; }
}

@media (max-width: 860px) {
  .moments { grid-template-columns: 1fr; }
  .moments-left { padding: 4rem 3rem; }
  .moments-right { height: 380px; }
  .strip-inner { flex-direction: column; gap: 1.6rem; }
  .strip-sep { display: none; }
  .strip-item { padding: 0; }
  .ff-inner { gap: 1.5rem; }
  .ff-sep { display: none; }
  .ff-item { padding: 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 1.5rem; }

  .hero-content { max-width: 100%; padding: 5rem 1.5rem 3rem; }
  .hero-visual  { width: 100%; opacity: .35; }
  .hero-title   { font-size: 3rem; }

  .collections { padding: 4rem 1.5rem; }
  .coll-grid    { grid-template-columns: 1fr; }
  .coll-img-wrap { height: 260px; }

  .moments-left { padding: 3rem 1.5rem; }

  .ff-inner     { padding: 2rem 1.5rem; }
  .footer-bottom { padding: 1.4rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .brand-text { display: none; }
  .brand-pipe { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .strip-inner { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════════
   CURSOR DOT
════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-lt);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: left .08s linear, top .08s linear;
  opacity: 0;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(82,183,136,.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .18s var(--ease), top .18s var(--ease), width .25s, height .25s, opacity .3s;
  opacity: 0;
}

/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.about-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-start;
  padding-top: 3.5rem;
  padding-left: 5rem;
  overflow: visible;
  margin-top: 80px;
  z-index: 0;
  background: #0A0A0A;  /* tukar dari var(--green-dk) */
}

.about-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #0A0A0A;  /* tukar dari var(--green-dk) */
}

.about-hero-paint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 70% at 70% 30%, rgba(10,10,10,.55) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(10,10,10,.4) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(10,10,10,.1) 0%, rgba(10,10,10,.75) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 30;
}
.about-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
  margin-bottom: .4rem;
}
.about-hero-rule {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--green-lt), transparent);
  margin-bottom: .9rem;
  margin-top: .3rem;
}
.about-hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--green-pale);
  letter-spacing: .08em;
}
.about-hero-overlap {
  position: absolute;
  bottom: -180px;
  left: 0;
  width: 46%;
  z-index: 5;
  pointer-events: none;
}
.about-hero-overlap img {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(.85) saturate(.9);
  mask-image: radial-gradient(ellipse 75% 80% at 50% 48%, black 35%, rgba(0,0,0,.5) 62%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 48%, black 35%, rgba(0,0,0,.5) 62%, transparent 85%);
}
.story-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 500px;
  background: var(--cream);
  border-bottom: 1px solid rgba(45,106,79,.18);
  overflow: visible;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 4rem;
}
.story-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--leaf-pattern);
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.story-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 5rem 3rem 2rem;
  position: relative; z-index: 1;
}
.story-label {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .38em;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: 1rem;
}
.story-rule {
  width: 45px; height: 1px;
  background: linear-gradient(to right, var(--green-mid), transparent);
  margin-bottom: 1.4rem;
}
.story-title {
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green-dk);
  margin-bottom: 1.1rem;
  line-height: 1.5;
}
.story-para {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1rem;
}
.story-para:last-child { margin-bottom: 0; }

.values-section {
  background: var(--cream2);
  border-top: 1px solid rgba(45,106,79,.16);
  border-bottom: 1px solid rgba(45,106,79,.16);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--flower-pattern);
  background-size: 160px 160px;
  pointer-events: none;
}
.values-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.value-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 1rem;
}
.value-icon {
  width: 62px; height: 62px;
  border: 1px solid rgba(45,106,79,.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  background: rgba(45,106,79,.07);
  padding: 14px;
  transition: border-color .3s, background .3s;
}
.value-icon svg { width: 100%; height: 100%; }
.value-name {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .28em;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: .7rem;
}
.value-desc {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}
.promise-section {
  position: relative;
  min-height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: 5rem 3rem;
}
.promise-bg { position: absolute; inset: 0; z-index: 0; }
.promise-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  filter: brightness(.22) saturate(.6);
}
.promise-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,58,42,.65) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(26,58,42,.6) 0%, rgba(26,58,42,.5) 100%);
}
.promise-content { position: relative; z-index: 2; max-width: 640px; }
.promise-label {
  font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .38em;
  color: var(--green-lt); font-weight: 500; margin-bottom: 1rem;
}
.promise-rule {
  width: 55px; height: 1px;
  background: linear-gradient(to right, transparent, var(--green-lt), transparent);
  margin: 0 auto 1.2rem;
}
.promise-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500; letter-spacing: .2em;
  color: var(--cream); margin-bottom: 1rem; line-height: 1.3;
}
.promise-desc {
  font-size: .92rem; color: var(--green-pale);
  line-height: 1.75; font-weight: 300; margin-bottom: 1.8rem;
}
.promise-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem; color: var(--green-lt);
  opacity: .85; text-shadow: 0 0 30px rgba(82,183,136,.3);
}

/* About responsive */
@media (max-width: 960px) {
  .about-hero { padding-left: 2rem; height: 420px; }
  .about-hero-overlap { bottom: -120px; width: 55%; }
  .story-section { grid-template-columns: 1fr; padding-top: 200px; }
  .story-text { padding: 3rem 2.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-section { padding: 4rem 2rem; }
}
@media (max-width: 600px) {
  .about-hero { height: 360px; padding-left: 1.5rem; }
  .about-hero-overlap { bottom: -100px; width: 68%; }
  .story-section { padding-top: 160px; }
  .story-text { padding: 3rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .promise-section { padding: 4rem 1.5rem; }
}

/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  padding-left: 5rem;
  overflow: hidden;
  margin-top: 80px;
}
.contact-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--green-dk);
}
.contact-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.45) saturate(.7);
  display: block;
}
.contact-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(26,58,42,.9) 35%, rgba(26,58,42,.2) 100%),
              linear-gradient(to top, rgba(26,58,42,.7) 0%, transparent 60%);
}
.contact-hero-content { position: relative; z-index: 2; }
.contact-hero-label {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .4em;
  color: var(--green-lt);
  margin-bottom: .6rem;
  font-weight: 500;
}
.contact-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
  margin-bottom: .5rem;
}
.contact-hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--green-pale);
  letter-spacing: .03em;
}
.contact-hero-rule {
  width: 50px; height: 1px;
  background: linear-gradient(to right, var(--green-lt), transparent);
  margin-bottom: 1rem;
}
.contact-section {
  background: var(--cream);
  border-top: 1px solid rgba(45,106,79,.18);
  border-bottom: 1px solid rgba(45,106,79,.18);
  padding: 5rem 5rem;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--leaf-pattern);
  background-size: 200px 200px;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.contact-info-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-dk);
  margin-bottom: .6rem;
}
.contact-info-desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.8rem;
  max-width: 340px;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1.1rem; }
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(45,106,79,.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,106,79,.07);
  margin-top: 2px;
}
.contact-detail-icon svg { width: 16px; height: 16px; }
.contact-detail-label {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .25em;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: .3rem;
}
.contact-detail-value {
  font-size: .88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}
.contact-form-wrap {
  background: rgba(45,106,79,.04);
  border: 1px solid rgba(45,106,79,.2);
  padding: 2.5rem 2.8rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; }
.form-input,
.form-textarea {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(45,106,79,.25);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: .83rem;
  font-weight: 300;
  padding: .85rem 1.1rem;
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: #8aaa96; font-size: .82rem; }
.form-input:focus, .form-textarea:focus {
  border-color: var(--green-mid);
  background: rgba(255,255,255,.95);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  margin-top: .5rem;
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--green-mid);
  border: 1px solid var(--green-mid);
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
  transition: color .3s var(--ease);
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: center;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green-mid);
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
  z-index: 0;
}
.form-submit:hover { color: var(--white); }
.form-submit:hover::before { transform: translateX(0); }
.form-submit span { position: relative; z-index: 1; }

.contact-map-section {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-bottom: 1px solid rgba(45,106,79,.18);
}
.map-bg {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(0deg, rgba(45,106,79,.06) 0px, rgba(45,106,79,.06) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(45,106,79,.06) 0px, rgba(45,106,79,.06) 1px, transparent 1px, transparent 60px),
    radial-gradient(ellipse 70% 80% at 40% 50%, rgba(26,58,42,.3) 0%, transparent 70%),
    var(--cream2);
  position: relative;
}
.map-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 15%, rgba(45,106,79,.08) 15.5%, rgba(45,106,79,.08) 16%, transparent 16%),
    linear-gradient(to right, transparent 38%, rgba(45,106,79,.06) 38.5%, rgba(45,106,79,.06) 39%, transparent 39%),
    linear-gradient(to bottom, transparent 25%, rgba(45,106,79,.06) 25.5%, rgba(45,106,79,.06) 26%, transparent 26%),
    linear-gradient(to bottom, transparent 55%, rgba(45,106,79,.08) 55.5%, rgba(45,106,79,.08) 56%, transparent 56%);
}
.map-pin {
  position: absolute;
  left: 38%; top: 42%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.map-pin-dot {
  width: 18px; height: 18px;
  background: var(--green-mid);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(45,106,79,.25), 0 0 20px rgba(45,106,79,.4);
}
.map-pin-pulse {
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid rgba(45,106,79,.4);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: mapPulse 2.5s ease-out infinite;
}
@keyframes mapPulse {
  0% { transform: translate(-50%,-50%) scale(.5); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2); opacity: 0; }
}
.map-address-card {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  background: rgba(250,245,236,.96);
  border: 1px solid rgba(45,106,79,.3);
  padding: 1.8rem 2.2rem;
  min-width: 260px;
  z-index: 3;
  backdrop-filter: blur(10px);
}
.map-address-label {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .3em;
  color: var(--green-mid);
  margin-bottom: .9rem;
  font-weight: 500;
}
.map-address-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dk);
  line-height: 1.3;
  margin-bottom: .7rem;
}
.map-address-text {
  font-size: .82rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}
.map-address-rule {
  width: 30px; height: 1px;
  background: var(--green-mid);
  margin-bottom: .9rem;
  opacity: .6;
}
.follow-section {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dk);
  border-bottom: 1px solid rgba(82,183,136,.2);
}
.follow-bg { position: absolute; inset: 0; z-index: 0; }
.follow-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.18) saturate(.5);
}
.follow-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,58,42,.97) 45%, rgba(26,58,42,.5) 100%);
}
.follow-content {
  position: relative; z-index: 2;
  padding: 4rem 5rem;
  max-width: 600px;
}
.follow-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .5rem;
}
.follow-desc {
  font-size: .88rem;
  color: var(--green-pale);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.follow-socials { display: flex; gap: 1rem; align-items: center; }
.follow-soc-btn {
  width: 46px; height: 46px;
  border: 1px solid rgba(82,183,136,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-pale);
  padding: 10px;
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}
.follow-soc-btn svg { width: 20px; height: 20px; }
.follow-soc-btn:hover {
  color: var(--cream);
  border-color: var(--green-lt);
  background: rgba(82,183,136,.15);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { padding: 4rem 2rem; }
  .contact-hero { padding-left: 2rem; }
  .map-address-card { position: relative; right: auto; top: auto; transform: none; margin: 1.5rem; }
  .contact-map-section { height: auto; }
  .map-bg { height: 220px; }
  .follow-content { padding: 3rem 2rem; }
}

 <style>
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background: #FAF5EC;
      color: #1C2B1F;
      font-family: 'Lato', sans-serif;
    }

    /* ═══════════════════════════════════
       HERO
    ═══════════════════════════════════ */
    .about-hero {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 540px;
  position: relative;
  overflow: visible;
  background: #0A0A0A;  /* tukar kepada hitam */
}

    /* Pattern 1: Large bold coffee beans with thick crease lines */
    .about-hero::after {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg opacity='0.18' fill='none' stroke='%2352B788' stroke-width='2'%3E%3Cellipse cx='60' cy='70' rx='18' ry='30' transform='rotate(-30 60 70)'/%3E%3Cline x1='42' y1='52' x2='78' y2='88' stroke-width='1.5'/%3E%3Cellipse cx='220' cy='40' rx='16' ry='26' transform='rotate(20 220 40)'/%3E%3Cline x1='205' y1='26' x2='235' y2='54' stroke-width='1.5'/%3E%3Cellipse cx='360' cy='110' rx='18' ry='29' transform='rotate(-50 360 110)'/%3E%3Cline x1='342' y1='93' x2='378' y2='127' stroke-width='1.5'/%3E%3Cellipse cx='90' cy='240' rx='15' ry='25' transform='rotate(40 90 240)'/%3E%3Cline x1='75' y1='225' x2='105' y2='255' stroke-width='1.5'/%3E%3Cellipse cx='300' cy='210' rx='17' ry='28' transform='rotate(-15 300 210)'/%3E%3Cline x1='283' y1='194' x2='317' y2='226' stroke-width='1.5'/%3E%3Cellipse cx='170' cy='350' rx='16' ry='27' transform='rotate(55 170 350)'/%3E%3Cline x1='154' y1='335' x2='186' y2='365' stroke-width='1.5'/%3E%3Cellipse cx='370' cy='340' rx='18' ry='29' transform='rotate(-10 370 340)'/%3E%3Cline x1='352' y1='322' x2='388' y2='358' stroke-width='1.5'/%3E%3Cellipse cx='50' cy='370' rx='15' ry='24' transform='rotate(-45 50 370)'/%3E%3Cline x1='35' y1='356' x2='65' y2='384' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 400px 400px;
      pointer-events: none;
    }

    .hero-left {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 6rem 1.5rem 0 5rem;
      z-index: 10;
     background: linear-gradient(to right, rgba(10,10,10,1) 55%, transparent 100%);
    }

    .about-hero-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(3.5rem, 5.5vw, 5.8rem);
      font-weight: 600;
      color: #FAF5EC;
      line-height: 1;
      text-shadow: 0 2px 30px rgba(0,0,0,.4);
      margin-bottom: .5rem;
      letter-spacing: .03em;
      position: relative;
      z-index: 20;
    }
    .about-hero-sub {
      font-family: 'Lato', sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: #B7E4C7;
      letter-spacing: .1em;
      margin-bottom: .7rem;
      position: relative;
      z-index: 20;
    }
    .hero-deco-rule {
      width: 55px;
      height: 1px;
      background: linear-gradient(to right, #52B788, transparent);
      position: relative;
      z-index: 20;
    }

    .hero-right {
      position: relative;
      overflow: hidden;
      height: 100%;
      z-index: 1;
    }
    .hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,.65) 22%,
    rgba(10,10,10,.15) 55%,
    transparent 100%);
  pointer-events: none;
}

.hero-right::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,.4) 30%,
    transparent 60%);
  pointer-events: none;
}

    /* ═══════════════════════════════════
       STORY SECTION
    ═══════════════════════════════════ */
    .story-section {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      min-height: 440px;
      background: #FAF5EC;
      border-bottom: 1px solid rgba(45,106,79,.18);
      overflow: hidden;
      z-index: 1;
      padding-top: 0;
    }

    /* Pattern 2: Large bold tea leaves with thick veins and stems */
    .story-section::before {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg opacity='0.13' fill='none' stroke='%232D6A4F' stroke-width='1.8'%3E%3Cpath d='M30 25 Q58 5 86 25 Q58 62 30 25Z'/%3E%3Cline x1='30' y1='25' x2='86' y2='25' stroke-width='1.1'/%3E%3Cline x1='58' y1='5' x2='58' y2='62' stroke-width='1.1'/%3E%3Cline x1='58' y1='62' x2='58' y2='80' stroke-width='1.8'/%3E%3Cpath d='M160 55 Q185 32 210 48 Q190 82 160 55Z' transform='rotate(20 185 57)'/%3E%3Cline x1='185' y1='36' x2='185' y2='80' stroke-width='1.1'/%3E%3Cline x1='185' y1='80' x2='185' y2='98' stroke-width='1.8'/%3E%3Cpath d='M18 148 Q48 124 78 142 Q48 178 18 148Z' transform='rotate(-18 48 151)'/%3E%3Cline x1='48' y1='126' x2='48' y2='176' stroke-width='1.1'/%3E%3Cline x1='48' y1='176' x2='48' y2='194' stroke-width='1.8'/%3E%3Cpath d='M140 185 Q168 160 196 178 Q168 214 140 185Z' transform='rotate(35 168 187)'/%3E%3Cline x1='168' y1='162' x2='168' y2='212' stroke-width='1.1'/%3E%3Cline x1='168' y1='212' x2='168' y2='228' stroke-width='1.8'/%3E%3Cpath d='M88 95 Q108 78 128 92 Q108 116 88 95Z' transform='rotate(-30 108 97)'/%3E%3Cline x1='108' y1='79' x2='108' y2='115' stroke-width='1.1'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 260px 260px;
      pointer-events: none;
    }

    .story-img-col {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      min-height: 420px;
      z-index: 1;
    }
    .story-img-col img {
      width: 110%;
      height: 110%;
      object-fit: contain;
      filter: brightness(.88) saturate(.9);
      mask-image:
        linear-gradient(to bottom, transparent 0%, black 12%, black 80%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 10%, black 85%, transparent 100%);
      mask-composite: intersect;
      -webkit-mask-image:
        linear-gradient(to bottom, transparent 0%, black 12%, black 80%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 10%, black 85%, transparent 100%);
      -webkit-mask-composite: source-in;
    }

    .story-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem 5rem 5rem 2.5rem;
      position: relative; z-index: 1;
    }
    .story-label {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      letter-spacing: .42em;
      color: #2D6A4F;
      font-weight: 600;
      margin-bottom: .9rem;
    }
    .story-rule {
      width: 40px;
      height: 1px;
      background: linear-gradient(to right, #2D6A4F, transparent);
      margin-bottom: 1.4rem;
    }
    .story-title {
      font-family: 'Lato', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: .2em;
      color: #1A3A2A;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .story-para {
      font-size: 1.25rem;
      color: #3B5249;
      line-height: 1.9;
      font-weight: 400;
      margin-bottom: .9rem;
    }
    .story-para:last-child { margin-bottom: 0; }

    /* ═══════════════════════════════════
       OUR VALUES
    ═══════════════════════════════════ */
    .values-section {
    background: #F2EAD8;
    background-image: url('pic12.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(45,106,79,.16);
    
    /* TAMBAH NI untuk buang pattern */
    isolation: isolate;
}

/* TAMBAH ni selepas .values-section */
.values-section::before,
.values-section::after {
    display: none !important;
}
    
    .values-header {
      text-align: center;
      margin-bottom: 3.5rem;
      position: relative; z-index: 1;
    }
    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      letter-spacing: .42em;
      color: #2D6A4F;
      font-weight: 600;
      margin-bottom: .8rem;
      display: block;
    }
    .green-rule {
      width: 45px;
      height: 1px;
      background: linear-gradient(to right, transparent, #2D6A4F, transparent);
      margin: 0 auto;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
      position: relative; z-index: 1;
    }
    .value-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 .8rem;
    }
    .value-icon {
      width: 72px;
      height: 72px;
      border: 1px solid rgba(45,106,79,.28);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.3rem;
      background: rgba(45,106,79,.06);
      padding: 16px;
      transition: border-color .3s, background .3s;
    }
    .value-card:hover .value-icon {
      border-color: rgba(45,106,79,.7);
      background: rgba(45,106,79,.12);
    }
    .value-icon svg { width: 100%; height: 100%; }
    .value-name {
      font-family: 'Cinzel', serif;
      font-size: .92rem;
      letter-spacing: .3em;
      color: #2D6A4F;
      font-weight: 600;
      margin-bottom: .75rem;
    }
    .value-desc {
      font-size: 1.2rem;
      color: #3B5249;
      line-height: 1.8;
      font-weight: 400;
    }

    /* ═══════════════════════════════════
       CTC PROMISE — TOP (text + gam2.jpg bg)
    ═══════════════════════════════════ */
    .promise-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0A0A0A; /* hitam */
}

.promise-img-section {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
  background: #0A0A0A; /* sambung hitam */
}

/* Effect fade dari hitam masuk ke gambar */
.promise-img-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #0A0A0A 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.promise-img-section img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

    /* ═══════════════════════════════════
       CTC PROMISE — BOTTOM (full chocolate image)
    ═══════════════════════════════════ */
   .promise-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0A0A0A; /* hitam */
}

.promise-img-section {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
  background: #0A0A0A; /* sambung hitam */
}

/* Effect fade dari hitam masuk ke gambar */
.promise-img-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #0A0A0A 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.promise-img-section img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
#promiseCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

    /* ═══════════════════════════════════
       FOOTER
    ═══════════════════════════════════ */
    .footer-bottom {
      background: #1A3A2A;
      border-top: 1px solid rgba(82,183,136,.15);
      padding: 2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      position: relative;
      overflow: hidden;
    }

    /* Footer — no pattern, clean */
    .footer-bottom::before {
      display: none;
    }

    .footer-copy {
      font-size: 1rem;
      letter-spacing: .12em;
      color: rgba(183,228,199,.75);
      font-weight: 400;
      position: relative; z-index: 1;
    }
    .social-row { display: flex; gap: .8rem; position: relative; z-index: 1; }
    .soc-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(82,183,136,.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(183,228,199,.78);
      transition: border-color .25s, color .25s, background .25s;
      text-decoration: none;
    }
    .soc-btn svg { width: 15px; height: 15px; }
    .soc-btn:hover {
      border-color: #52B788;
      color: #B7E4C7;
      background: rgba(82,183,136,.12);
    }

    /* ═══════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════ */
    .fade-up {
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp .75s ease forwards;
      animation-delay: var(--d, 0s);
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .js-reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .75s ease, transform .75s ease;
      transition-delay: var(--rd, 0s);
    }
    .js-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-left { padding-left: 3rem; }
      .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .about-hero { grid-template-columns: 1fr; height: auto; overflow: visible; }
      .hero-left { padding: 3rem 2rem 0 2rem; background: #1A3A2A; min-height: 220px; }
      .hero-right { height: 280px; overflow: hidden; }
      .story-section { grid-template-columns: 1fr; }
      .story-img-col { min-height: 300px; }
      .story-text { padding: 2rem 2rem 4rem 2rem; }
      .values-section { padding: 4rem 2rem; }
      .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; padding: 2rem; }
    }
    @media (max-width: 480px) {
      .about-hero-title { font-size: 3rem; }
      .hero-left { padding: 2.5rem 1.5rem 0 1.5rem; }
      .story-text { padding: 1.5rem 1.5rem 3rem 1.5rem; }
      .values-section { padding: 3.5rem 1.5rem; }
      .promise-section { padding: 4rem 1.5rem; }
    }
