/* ============================================================
   MALIKIN — Plant Care & Styling  |  style.css
   ============================================================ */

:root {
  --green-deep:   #1F3A23;
  --green-mid:    #3F6B45;
  --green-soft:   #3D6B54;
  --green-light:  #4E8068;
  --cream:        #F4EFE6;
  --cream-light:  #F8F5EF;
  --cream-dark:   #E4DFCF;
  --gold:         #B08D3F;
  --gold-light:   #C9A84C;
  --text-dark:    #1C3828;
  --text-body:    #3D4A3E;
  --text-muted:   #7A8A7C;
  --white:        #FFFFFF;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
  --radius:      6px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream-light);
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; font-family: var(--font-sans); }
@media (pointer: coarse) { button { cursor: pointer; } }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--green-deep);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid var(--green-deep);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  opacity: 0.5;
}
.cursor.hovering { width: 16px; height: 16px; background: var(--gold); }
.cursor-follower.hovering { width: 52px; height: 52px; opacity: 0.2; border-color: var(--gold); }
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(245,241,232,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28,56,40,0.08);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  height: 120px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; cursor: none; }
.logo-mark { width: auto; height: 108px; flex-shrink: 0; transition: transform 0.5s var(--ease-out); }
.logo:hover .logo-mark { transform: scale(1.03) translateY(-1px); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--green-deep); position: relative; cursor: none; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.btn-nav {
  background: var(--green-deep) !important; color: var(--cream) !important;
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 12px !important; letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--green-mid) !important; }
.btn-nav::after { display: none !important; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: none; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--green-deep); transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(245,241,232,0.98); backdrop-filter: blur(12px);
  border-top: 1px solid var(--cream-dark); padding: 8px 32px 28px;
}
.mobile-menu.show { display: flex; }
.mobile-menu a { font-size: 17px; padding: 14px 0; color: var(--green-deep); border-bottom: 1px solid var(--cream-dark); transition: color 0.2s, padding-left 0.2s; cursor: none; }
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); font-weight: 500; }
.mobile-menu a:hover { padding-left: 6px; color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-deep); color: var(--cream);
  padding: 16px 32px; font-family: var(--font-sans);
  font-size: 13px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); transition: background 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  cursor: none; border: none; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: rgba(255,255,255,0.12);
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width 0.5s, height 0.5s;
}
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,56,40,0.25); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green-deep);
  padding: 15px 32px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid var(--green-deep);
  transition: background 0.25s, color 0.25s, transform 0.25s; cursor: none;
}
.btn-ghost:hover { background: var(--green-deep); color: var(--cream); transform: translateY(-2px); }
.btn-outline-green {
  display: inline-flex; align-items: center; background: transparent; color: var(--cream);
  padding: 15px 32px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid rgba(237,232,220,0.4);
  transition: background 0.25s, border-color 0.25s, transform 0.25s; cursor: none;
}
.btn-outline-green:hover { background: rgba(237,232,220,0.1); border-color: rgba(237,232,220,0.7); transform: translateY(-2px); }
.btn-text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-deep); cursor: none; position: relative; padding-bottom: 2px;
}
.btn-text-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0.3); transform-origin: left; transition: transform 0.35s var(--ease-out);
}
.btn-text-link:hover::after { transform: scaleX(1); }
.btn-text-link span { color: var(--gold); transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn-text-link:hover span { transform: translateX(4px); }
.btn-lg { padding: 20px 44px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO CSS KEYFRAME ANIMATIONS (no JS needed) ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroWordUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--cream-light);
  display: flex; align-items: center; gap: 80px;
  padding: 100px 80px 80px; max-width: 1440px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; right: -80px; transform: translateY(-50%);
  font-family: var(--font-serif); font-size: clamp(120px, 18vw, 240px);
  font-weight: 600; color: transparent;
  -webkit-text-stroke: 1px rgba(28,56,40,0.05);
  letter-spacing: 0.05em; user-select: none; pointer-events: none;
  white-space: nowrap; z-index: 0;
}
.hero-left { flex: 1; min-width: 0; position: relative; z-index: 1; }

/* ── Hero elements use CSS animations — always visible ── */
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
  animation: heroFadeUp 0.7s 0.2s both;
}
.hero-h1 {
  font-family: var(--font-serif); font-size: clamp(64px, 8vw, 108px);
  font-weight: 400; line-height: 1.02; color: var(--green-deep);
  letter-spacing: -0.01em; margin-bottom: 28px;
}
.word-line { display: block; overflow: hidden; }
.word {
  display: inline-block;
  animation: heroWordUp 0.75s both;
}
/* stagger each word */
.hero-h1 .word:nth-child(1)  { animation-delay: 0.3s; }
.hero-h1 .word:nth-child(2)  { animation-delay: 0.42s; }
.word-line:nth-child(2) .word:nth-child(1) { animation-delay: 0.54s; }
.word-line:nth-child(2) .word:nth-child(2) { animation-delay: 0.62s; }
.word-line:nth-child(3) .word:nth-child(1) { animation-delay: 0.72s; }

.italic-word .word { font-style: italic; color: var(--green-soft); }
.hero-sub {
  font-family: var(--font-serif); font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55; color: var(--green-soft); margin-bottom: 20px;
  animation: heroFadeUp 0.8s 0.85s both;
}
.hero-sub em { font-style: italic; }
.hero-body {
  font-size: 17px; line-height: 1.8; color: var(--text-body);
  max-width: 460px; margin-bottom: 36px;
  animation: heroFadeUp 0.8s 1.0s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: heroFadeUp 0.8s 1.15s both;
}
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  animation: heroFadeUp 0.8s 1.3s both;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--green-deep); line-height: 1; }
.trust-num sup { font-size: 16px; vertical-align: super; }
.trust-item span:last-child { font-size: 11px; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; }
.trust-divider { width: 1px; height: 36px; background: var(--cream-dark); }

.hero-right {
  flex: 0 0 360px; position: relative; z-index: 1;
  animation: heroSlideIn 1s 0.5s both;
}
.hero-card {
  background: var(--green-deep);
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  padding: 56px 40px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 32px 80px rgba(28,56,40,0.25), 0 8px 20px rgba(28,56,40,0.15);
  position: relative; min-height: 420px;
  animation: morph 10s ease-in-out infinite;
}
@keyframes morph {
  0%   { border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%; }
  25%  { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
  50%  { border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%; }
  75%  { border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%; }
  100% { border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%; }
}
.hero-card-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.plant-anim { width: 140px; height: 200px; animation: float 4s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}
.stem { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawStem 1.5s 0.8s both; }
@keyframes drawStem { to { stroke-dashoffset: 0; } }
.leaf { opacity: 0; animation: leafIn 0.6s forwards; }
.leaf-1 { animation-delay: 1.2s; }
.leaf-2 { animation-delay: 1.5s; }
.leaf-3 { animation-delay: 1.8s; }
@keyframes leafIn { to { opacity: 1; } }
.card-quote { font-family: var(--font-serif); font-size: 18px; font-style: italic; color: var(--cream); line-height: 1.5; }
.card-cta {
  display: inline-block; background: var(--gold); color: var(--green-deep);
  padding: 12px 24px; border-radius: var(--radius); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: none;
  transition: background 0.2s, transform 0.2s;
}
.card-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-card-deco {
  position: absolute; bottom: -16px; right: 32px; font-size: 32px; color: var(--gold);
  animation: pulseSpin 6s ease-in-out infinite;
}
@keyframes pulseSpin {
  0%   { transform: rotate(0deg) scale(1); opacity: 0.7; }
  50%  { transform: rotate(180deg) scale(1.1); opacity: 1; }
  100% { transform: rotate(360deg) scale(1); opacity: 0.7; }
}
.hero-float-1 {
  position: absolute; top: -20px; left: -20px; font-size: 22px; color: var(--gold);
  opacity: 0.4; animation: floatAlt 5s 0.5s ease-in-out infinite; pointer-events: none;
}
.hero-float-2 {
  position: absolute; bottom: 40px; left: -30px; font-size: 14px; color: var(--green-soft);
  opacity: 0.5; animation: floatAlt 6s 1s ease-in-out infinite; pointer-events: none;
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%       { transform: translateY(-8px) translateX(4px); }
}
.scroll-down {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); cursor: none;
  animation: fadeIn 0.8s 2.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── SCROLL REVEAL — hidden only when JS is ready ── */
body.js-ready .reveal-up   { opacity: 0; transform: translateY(48px); }
body.js-ready .reveal-left { opacity: 0; transform: translateX(-48px); }
body.js-ready .reveal-right{ opacity: 0; transform: translateX(48px); }
body.js-ready .reveal-fade { opacity: 0; }

.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.in-view   { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-left.in-view { opacity: 1 !important; transform: translateX(0) !important; }
.reveal-right.in-view{ opacity: 1 !important; transform: translateX(0) !important; }
.reveal-fade.in-view { opacity: 1 !important; }

/* stagger children inside a reveal group */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.36s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.48s; }

/* ── ABOUT ── */
.section-about { background: var(--cream); padding: 120px 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-card-main {
  background: var(--green-deep); border-radius: var(--radius-xl); padding: 56px 40px;
  position: relative; overflow: hidden; min-height: 400px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 24px 60px rgba(28,56,40,0.2);
}
.about-bg-deco { position: absolute; top: -20px; right: -20px; width: 220px; opacity: 0.4; pointer-events: none; }
.about-stats { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 1; }
.about-stat { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.stat-number { font-family: var(--font-serif); font-size: 52px; font-weight: 400; color: var(--gold); line-height: 1; }
.stat-plus { font-family: var(--font-serif); font-size: 28px; color: var(--gold); margin-right: 12px; }
.stat-label { font-size: 14px; color: rgba(237,232,220,0.6); letter-spacing: 0.06em; width: 100%; margin-top: -4px; }
.about-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--gold); color: var(--green-deep);
  padding: 10px 20px; border-radius: 100px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.badge-icon { font-size: 14px; }
.about-body { font-size: 17px; line-height: 1.8; color: var(--text-body); margin-bottom: 20px; }
.about-quote {
  border-left: 3px solid var(--gold); padding: 16px 0 16px 24px; margin: 32px 0 36px;
}
.about-quote p { font-family: var(--font-serif); font-size: 22px; font-style: italic; color: var(--green-deep); line-height: 1.5; }

/* ── SECTION HELPERS ── */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-label-light {
  display: inline-block; font-size: 11px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase; color: rgba(201,168,76,0.8); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(40px, 5vw, 60px);
  font-weight: 400; color: var(--green-deep); line-height: 1.1; margin-bottom: 56px;
}
.section-title-light {
  font-family: var(--font-serif); font-size: clamp(40px, 5vw, 60px);
  font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: 56px;
}
.section-header { text-align: center; }
.section-header .section-title,
.section-header .section-title-light { margin-bottom: 64px; }

/* ── HOW IT WORKS ── */
.section-green {
  background: var(--green-deep); padding: 120px 0; position: relative; overflow: hidden;
}
.section-green::before {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(circle at right center, rgba(45,82,64,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step {
  background: rgba(237,232,220,0.05); border: 1px solid rgba(237,232,220,0.1);
  border-radius: var(--radius-lg); padding: 44px 36px; position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease-out);
  overflow: hidden;
}
.step::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.step:hover { background: rgba(237,232,220,0.09); border-color: rgba(237,232,220,0.2); transform: translateY(-4px); }
.step:hover::before { opacity: 1; }
.step-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.step-icon svg { width: 56px; height: 56px; }
.step-num {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-serif); font-size: 52px; font-weight: 300;
  color: rgba(237,232,220,0.06); line-height: 1; pointer-events: none;
}
.step h3 { font-family: var(--font-serif); font-size: 30px; font-weight: 400; color: var(--cream); margin-bottom: 12px; }
.step p { font-size: 16px; color: rgba(237,232,220,0.65); line-height: 1.75; }

/* ── SERVICES ── */
.section-cream { background: var(--cream); padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 80px; }
.service-card {
  border-radius: var(--radius-xl); padding: 48px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s; overflow: hidden; position: relative;
}
.service-featured { background: var(--green-deep); box-shadow: 0 24px 60px rgba(28,56,40,0.18); }
.service-featured:hover { transform: translateY(-6px); box-shadow: 0 36px 80px rgba(28,56,40,0.24); }
.service-signature { background: var(--cream-light); border: 1.5px solid var(--cream-dark); box-shadow: 0 8px 24px rgba(28,56,40,0.06); }
.service-signature:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(28,56,40,0.12); }
.card-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.service-featured h3 { font-family: var(--font-serif); font-size: 42px; font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: 16px; }
.service-signature h3 { font-family: var(--font-serif); font-size: 42px; font-weight: 400; color: var(--green-deep); line-height: 1.1; margin-bottom: 16px; }
.service-price { font-family: var(--font-serif); font-size: 56px; font-weight: 500; color: var(--gold); line-height: 1; display: flex; align-items: baseline; gap: 6px; }
.price-currency { font-size: 28px; }
.price-unit { font-family: var(--font-sans); font-size: 15px; font-weight: 300; color: rgba(237,232,220,0.5); }
.price-custom { font-family: var(--font-serif); font-size: 18px; font-style: italic; color: var(--text-muted); }
.service-desc { font-size: 16px; line-height: 1.75; flex: 1; }
.service-featured .service-desc { color: rgba(237,232,220,0.7); }
.service-signature .service-desc { color: var(--text-body); }
.service-list { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-list li { font-size: 15px; padding-left: 22px; position: relative; line-height: 1.5; }
.service-list li::before { content: '✿'; position: absolute; left: 0; top: 2px; font-size: 9px; color: var(--gold); }
.service-featured .service-list li { color: rgba(237,232,220,0.82); }
.service-signature .service-list li { color: var(--text-body); }
.service-card-footer { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.service-note { font-size: 13px; font-style: italic; color: rgba(237,232,220,0.4); }
.addl-services { padding-top: 40px; border-top: 1px solid var(--cream-dark); }
.addl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.addl-card {
  background: var(--cream-light); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.addl-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(28,56,40,0.1); }
.addl-icon { width: 52px; height: 52px; }
.addl-icon svg { width: 52px; height: 52px; }
.addl-card h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 500; color: var(--green-deep); }
.addl-card p { font-size: 16px; color: var(--text-body); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.section-testimonials {
  background: var(--green-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-testimonials::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(circle at right center, rgba(45,82,64,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.t-header { text-align: center; margin-bottom: 60px; }
.t-rating-strip {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  padding: 10px 20px; border-radius: 100px; margin-top: 16px;
}
.t-stars-big { font-size: 16px; color: var(--gold); letter-spacing: 2px; }
.t-rating-text { font-size: 13px; color: rgba(237,232,220,0.65); letter-spacing: 0.04em; }

.t-slider-outer { position: relative; }
.t-big-quote {
  position: absolute;
  top: -20px; left: -20px;
  font-family: var(--font-serif);
  font-size: 200px;
  line-height: 1;
  color: rgba(201,168,76,0.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.t-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.t-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.t-card {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  background: rgba(237,232,220,0.06);
  border: 1px solid rgba(237,232,220,0.1);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  transition: background 0.3s;
}
.t-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 50%);
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.4s;
}
.t-card:hover::before { opacity: 1; }
.t-card-body { flex: 1; }
.t-card-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  position: relative;
}
.t-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(237,232,220,0.1);
  gap: 16px;
}
.t-card-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.1));
  border: 1.5px solid rgba(201,168,76,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 22px; color: var(--gold); flex-shrink: 0;
}
.t-author-info {}
.t-name { font-size: 16px; font-weight: 500; color: var(--cream); }
.t-loc { font-size: 13px; color: rgba(237,232,220,0.45); margin-top: 3px; letter-spacing: 0.03em; }
.t-card-stars { font-size: 18px; color: var(--gold); letter-spacing: 3px; flex-shrink: 0; }

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.t-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(237,232,220,0.07);
  border: 1.5px solid rgba(237,232,220,0.18);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.t-arrow:hover { background: rgba(237,232,220,0.14); border-color: rgba(237,232,220,0.4); transform: scale(1.08); }
.t-progress { display: flex; align-items: center; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(237,232,220,0.2); border: none; padding: 0;
  cursor: none; transition: background 0.3s, width 0.4s, border-radius 0.4s;
}
.t-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* ── CTA BAND ── */
.cta-band { background: var(--green-mid); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-serif); font-size: clamp(80px, 14vw, 180px); font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px rgba(237,232,220,0.05);
  user-select: none; pointer-events: none; white-space: nowrap;
}
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-flower { font-size: 36px; color: var(--gold); opacity: 0.7; animation: pulseSpin 8s linear infinite; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(44px, 6vw, 72px); font-weight: 400; color: var(--cream); line-height: 1.1; }
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { font-size: 18px; color: rgba(237,232,220,0.65); max-width: 420px; line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-body { font-size: 18px; color: var(--text-body); line-height: 1.8; margin-bottom: 40px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; cursor: none; transition: transform 0.25s var(--ease-out); }
.contact-item:hover { transform: translateX(4px); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-deep); flex-shrink: 0; transition: background 0.2s, color 0.2s;
}
.contact-item:hover .contact-icon { background: var(--green-deep); color: var(--cream); }
.contact-label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-value { display: block; font-size: 17px; color: var(--green-deep); }
.contact-location { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

/* ── FORM ── */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(28,56,40,0.12); }
.form-header { background: var(--green-deep); padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.form-tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(237,232,220,0.5); }
.form-price-display { text-align: right; }
.form-price-amount { display: block; font-family: var(--font-serif); font-size: 40px; font-weight: 500; color: var(--gold); line-height: 1; }
.form-price-desc { display: block; font-size: 12px; color: rgba(237,232,220,0.5); margin-top: 4px; }
.contact-form { padding: 36px 40px; display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-optional { font-weight: 300; text-transform: none; letter-spacing: 0; font-size: 11px; }
.form-group input,
.form-group textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--text-dark);
  background: var(--cream-light); border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius); padding: 13px 16px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; resize: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(28,56,40,0.08); background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.btn-submit { margin-top: 4px; justify-content: center; gap: 12px; }
.btn-icon { font-size: 18px; transition: transform 0.3s var(--ease-out); }
.btn-submit:hover .btn-icon { transform: translateX(5px); }
.form-disclaimer { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 14px; }
/* loading state */
.btn-loading {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading .btn-text { opacity: 0.6; }
.btn-submit.loading .btn-icon { display: none; }
.btn-submit.loading .btn-loading { display: block; }
.btn-submit.loading { pointer-events: none; opacity: 0.85; }

/* success state */
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 56px 40px; }
.success-anim { font-size: 48px; color: var(--gold); animation: pulseSpin 4s linear infinite; }
.form-success h3 { font-family: var(--font-serif); font-size: 32px; color: var(--green-deep); }
.form-success p { font-size: 17px; color: var(--text-body); line-height: 1.75; max-width: 320px; }

/* error state */
.form-error { display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 48px 40px; }
.error-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fee2e2; color: #dc2626;
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.form-error h3 { font-family: var(--font-serif); font-size: 26px; color: var(--green-deep); }
.form-error p { font-size: 16px; color: var(--text-body); max-width: 280px; line-height: 1.7; }
.btn-retry {
  background: none; border: none; color: var(--text-muted);
  font-size: 13px; text-decoration: underline; cursor: pointer;
  padding: 4px; transition: color 0.2s;
}
.btn-retry:hover { color: var(--green-deep); }

/* ── CONTACT BRAND ICON (inline SVG) ── */
.contact-icon--brand {
  background: transparent !important;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}
.contact-icon--brand svg { display: block; width: 44px; height: 44px; }

/* ── FOOTER SOCIAL ICONS ── */
.footer-social-icons { display: flex; gap: 12px; margin: 4px 0; }
.footer-social-icon {
  width: 36px; height: 36px; border-radius: 10px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--ease-out), opacity 0.2s;
  opacity: 0.75;
}
.footer-social-icon:hover { transform: translateY(-3px) scale(1.08); opacity: 1; }
.footer-social-icon img { width: 36px; height: 36px; display: block; }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  cursor: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waFloat 3s ease-in-out infinite;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
  animation-play-state: paused;
}
.whatsapp-float img { width: 28px; height: 28px; flex-shrink: 0; }
.wa-float-label { white-space: nowrap; }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@media (max-width: 480px) {
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .wa-float-label { display: none; }
}

/* ── FOOTER ── */
.footer { background: var(--green-deep); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(237,232,220,0.08); }
.footer-logo-img { width: auto; height: 160px; max-width: 100%; display: block; margin-bottom: 12px; }
.footer-sub { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(237,232,220,0.35); margin-bottom: 12px; }
.footer-tagline { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: rgba(237,232,220,0.45); }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(237,232,220,0.3); margin-bottom: 4px; }
.footer-nav a, .footer-contact a { font-size: 15px; color: rgba(237,232,220,0.55); transition: color 0.2s, padding-left 0.2s; cursor: none; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-location { font-size: 13px; color: rgba(237,232,220,0.3); margin-top: 4px; }
.footer-bottom { padding: 20px 32px; text-align: center; max-width: 1160px; margin: 0 auto; }
.footer-bottom p { font-size: 13px; color: rgba(237,232,220,0.25); letter-spacing: 0.06em; }
.footer-made-with { margin-top: 6px; }
.footer-heart { color: #e03232; }
.footer-made-with a { color: rgba(237,232,220,0.4); text-decoration: none; transition: color 0.2s; }
.footer-made-with a:hover { color: rgba(237,232,220,0.8); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { padding: 100px 48px 80px; gap: 48px; }
  .hero-right { flex: 0 0 300px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 100px 32px 80px; min-height: auto; gap: 48px; }
  .hero-bg-text { display: none; }
  .hero-body { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-right { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }
  .scroll-down { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .addl-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-inner { height: 88px; }
  .logo-mark { height: 76px; }
  .container { padding: 0 20px; }
  .hero { padding: 88px 20px 60px; }
  .hero-h1 { font-size: 52px; }
  .section-cream, .section-green, .section-about, .cta-band { padding: 80px 0; }
  .service-card { padding: 36px 28px; }
  .testimonial-card { padding: 36px 24px; }
  .t-quote { font-size: 18px; }
  .form-header { padding: 24px 28px; flex-direction: column; align-items: flex-start; }
  .form-price-display { text-align: left; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-img { height: 130px; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  body.js-ready .reveal-up,
  body.js-ready .reveal-left,
  body.js-ready .reveal-right,
  body.js-ready .reveal-fade { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
