/* =============================================
   KORA — Holistic Therapy · Premium Redesign
   Palette: Warm Ivory · Deep Earth · Antique Gold · Forest Green
   Fonts: Cormorant Garamond + Jost
   ============================================= */

:root {
  --ivory:      #F5F0E8;
  --ivory-dark: #EDE5D5;
  --gold:       #B8922A;
  --gold-light: #D4A84B;
  --gold-pale:  #F0D9A0;
  --earth:      #2C1F0E;
  --earth-mid:  #4A3520;
  --earth-soft: #7A5C3C;
  --green:      #2D4A35;
  --green-soft: #4A7055;
  --mist:       rgba(245,240,232,0.06);
  --shadow:     0 8px 40px rgba(44,31,14,0.15);
  --shadow-lg:  0 24px 80px rgba(44,31,14,0.2);
  --radius:     4px;
  --radius-lg:  12px;
  --transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ivory);
  color: var(--earth);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ CUSTOM CURSOR ============ */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.4s, height 0.4s, opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }

/* ============ PARTICLES ============ */
.particles-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(16px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 rgba(184,146,42,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 500;
  letter-spacing: 0.15em; color: var(--earth);
}
.logo-mark {
  color: var(--gold); font-size: 1.1rem;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.logo-text { letter-spacing: 0.3em; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; color: var(--earth-mid);
  position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--earth); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--earth); color: var(--ivory) !important;
  padding: 10px 24px !important; border-radius: var(--radius);
  transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--earth);
  transition: var(--transition);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 990;
  background: var(--earth);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-menu a {
  font-family: var(--ff-serif); font-size: 2.5rem; color: var(--ivory);
  font-style: italic; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ============ SECTION HELPERS ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--ff-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 1.15; color: var(--earth);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { font-size: 1.05rem; color: var(--earth-soft); max-width: 520px; margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--earth);
  color: var(--ivory);
  padding: 16px 40px;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
  font-family: var(--ff-sans);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative; overflow: hidden;
  border: 1px solid var(--earth);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span, .btn-primary { isolation: isolate; }
.btn-primary:hover { color: var(--ivory); border-color: var(--gold); }

.btn-ghost {
  display: inline-block;
  color: var(--earth);
  padding: 16px 40px;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
  border: 1px solid rgba(44,31,14,0.3);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-primary.full { width: 100%; text-align: center; }
.mt { margin-top: 32px; }

/* ============ SCROLL REVEAL ============ */
.reveal-up, .scroll-reveal, .scroll-reveal-left, .scroll-reveal-right {
  opacity: 0;
}
.reveal-up { transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1) var(--d, 0s), transform 0.8s cubic-bezier(0.16,1,0.3,1) var(--d, 0s); }
.reveal-up.visible { opacity: 1; transform: none; }

.scroll-reveal { transform: translateY(30px); transition: opacity 0.7s ease var(--sd, 0s), transform 0.7s cubic-bezier(0.16,1,0.3,1) var(--sd, 0s); }
.scroll-reveal.visible { opacity: 1; transform: none; }

.scroll-reveal-left { transform: translateX(-40px); transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s; }
.scroll-reveal-left.visible { opacity: 1; transform: none; }

.scroll-reveal-right { transform: translateX(40px); transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s; }
.scroll-reveal-right.visible { opacity: 1; transform: none; }

.reveal-right { transform: translateX(60px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1) var(--d, 0s), transform 0.9s cubic-bezier(0.16,1,0.3,1) var(--d, 0s); }
.reveal-right.visible { opacity: 1; transform: none; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 60px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F0E8 0%, #EDE5D5 50%, #E4D8C0 100%);
}

.hero-bg-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  animation: float-orb 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,146,42,0.2), transparent 70%); top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(45,74,53,0.15), transparent 70%); bottom: 0; left: 10%; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(184,146,42,0.12), transparent 70%); top: 40%; left: 50%; animation-delay: -5s; }

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; flex: 1; max-width: 600px; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 24px; display: block;
}
.hero-title {
  font-family: var(--ff-serif); font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400; line-height: 1.08; color: var(--earth); margin-bottom: 28px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1.05rem; color: var(--earth-soft); line-height: 1.75;
  max-width: 460px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(44,31,14,0.06); border: 1px solid rgba(184,146,42,0.25);
  padding: 10px 18px; border-radius: 40px;
  font-size: 0.78rem; letter-spacing: 0.06em; color: var(--earth-mid);
}
.badge-icon { font-size: 1rem; }

.hero-visual {
  position: relative; z-index: 1;
  flex: 0 0 auto; margin-left: 80px;
}
.hero-image-frame {
  position: relative; width: 400px; height: 520px;
}
.hero-image-inner {
  width: 100%; height: 100%; border-radius: 200px 200px 0 0;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-image-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero-image-frame:hover .hero-image-inner img { transform: scale(1.04); }
.frame-ring {
  position: absolute; inset: -20px;
  border: 1px solid rgba(184,146,42,0.25);
  border-radius: 220px 220px 0 0;
  pointer-events: none;
}
.frame-deco {
  position: absolute; color: var(--gold); font-size: 1.4rem;
  animation: spin-slow 16s linear infinite;
}
.frame-deco-tl { top: -8px; left: -8px; }
.frame-deco-br { bottom: 20px; right: -12px; }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 16px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--earth-soft); opacity: 0.7;
  animation: pulse-hint 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 60px; height: 1px; background: var(--gold);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--gold);
  animation: slide-line 2.5s ease-in-out infinite;
}
@keyframes slide-line { 0%{left:-100%} 50%{left:0} 100%{left:100%} }
@keyframes pulse-hint { 0%,100%{opacity:0.5} 50%{opacity:0.9} }

/* ============ MARQUEE ============ */
.marquee-section {
  background: var(--earth); overflow: hidden;
  padding: 20px 0; border-top: 1px solid rgba(184,146,42,0.2);
  border-bottom: 1px solid rgba(184,146,42,0.2);
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  font-family: var(--ff-serif); font-style: italic; font-size: 1.1rem;
  color: var(--ivory-dark); font-weight: 300;
}
.marquee-track .sep { color: var(--gold); }
@keyframes marquee-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============ TRIO (Approach) ============ */
.trio { background: var(--ivory); position: relative; z-index: 1; }
.trio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.trio-card {
  background: white;
  border: 1px solid rgba(184,146,42,0.15);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.trio-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.trio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trio-card:hover::before { opacity: 1; }
.trio-number {
  font-family: var(--ff-serif); font-size: 4rem; font-weight: 300;
  color: rgba(184,146,42,0.15); line-height: 1; margin-bottom: 8px;
}
.trio-icon { font-size: 2rem; margin-bottom: 20px; }
.trio-card h3 {
  font-family: var(--ff-serif); font-size: 1.35rem; font-weight: 500;
  color: var(--earth); margin-bottom: 16px; line-height: 1.3;
}
.trio-card p { font-size: 0.9rem; color: var(--earth-soft); margin-bottom: 28px; }
.trio-link {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.trio-link:hover { gap: 16px; }

/* ============ ABOUT ============ */
.about {
  background: linear-gradient(160deg, #EDE5D5 0%, #F5F0E8 100%);
  position: relative; overflow: hidden;
}
.about-bg-shape {
  position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,0.06), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  width: 100%; padding-top: 125%;
  overflow: hidden; border-radius: 180px 180px 12px 12px;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-quote-float {
  position: absolute; bottom: -32px; right: -40px;
  background: var(--earth);
  color: var(--ivory); padding: 28px 32px;
  border-radius: var(--radius-lg); max-width: 280px;
  box-shadow: var(--shadow);
}
.about-quote-float p {
  font-family: var(--ff-serif); font-style: italic; font-size: 0.95rem;
  line-height: 1.5; margin-bottom: 10px;
}
.about-quote-float span { font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.1em; }

.about-stat-row {
  display: flex; gap: 24px; margin-top: 60px;
  padding-top: 24px; border-top: 1px solid rgba(184,146,42,0.25);
}
.about-stat { text-align: center; flex: 1; }
.about-stat strong {
  display: block; font-family: var(--ff-serif); font-size: 2.4rem;
  font-weight: 500; color: var(--gold);
}
.about-stat span { font-size: 0.8rem; color: var(--earth-soft); text-transform: uppercase; letter-spacing: 0.1em; }

.about-text p { color: var(--earth-mid); margin-bottom: 18px; font-size: 0.95rem; }
.about-text p:first-of-type { font-size: 1.05rem; }
.about-text strong { color: var(--earth); }

/* ============ SERVICES ============ */
.services { background: var(--ivory); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184,146,42,0.12);
  transition: var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.featured-card {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px rgba(184,146,42,0.3), var(--shadow);
}

.service-img {
  width: 100%; height: 220px; overflow: hidden; background: var(--ivory-dark);
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.07); }

.service-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--earth); color: var(--ivory);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.session-tag { background: var(--green); }
.featured-card .service-tag { background: var(--gold); }

.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 {
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 500;
  color: var(--earth); margin-bottom: 10px; line-height: 1.35;
}
.service-body p { font-size: 0.85rem; color: var(--earth-soft); line-height: 1.6; flex: 1; margin-bottom: 16px; }

.service-meta { margin-bottom: 16px; }
.service-meta li { font-size: 0.78rem; color: var(--earth-soft); letter-spacing: 0.05em; }

.service-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(184,146,42,0.15);
}
.price {
  font-family: var(--ff-serif); font-size: 1.4rem; color: var(--gold); font-weight: 400;
}
.service-link {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--earth-mid); transition: color 0.3s;
}
.service-link:hover { color: var(--gold); }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--earth);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8922A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.testimonials .section-title { color: var(--ivory); }
.testimonials .section-eyebrow { color: var(--gold-light); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative; z-index: 1;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(184,146,42,0.4);
}
.testi-stars { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 3px; }
.testi-text {
  font-family: var(--ff-serif); font-style: italic; font-size: 1.1rem;
  color: rgba(245,240,232,0.85); line-height: 1.7; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--earth);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 500;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--ivory); font-size: 0.9rem; font-weight: 400; }
.testi-author span { font-size: 0.78rem; color: rgba(245,240,232,0.5); }

/* ============ CONTACT ============ */
.contact { background: var(--ivory); position: relative; overflow: hidden; }
.contact-orb {
  position: absolute; right: -200px; bottom: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,0.08), transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-info p { color: var(--earth-soft); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.contact-item strong { display: block; font-weight: 500; color: var(--earth); margin-bottom: 4px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item p { font-size: 0.9rem; color: var(--earth-soft); margin: 0; }

.contact-form-inner {
  background: white; border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow);
  border: 1px solid rgba(184,146,42,0.12);
}
.contact-form-inner h3 {
  font-family: var(--ff-serif); font-size: 1.8rem; color: var(--earth);
  margin-bottom: 32px; font-weight: 400;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--earth-mid); margin-bottom: 8px; font-weight: 400;
}
.form-group input,
.form-group textarea {
  width: 100%; background: var(--ivory); border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius); padding: 14px 18px;
  font-family: var(--ff-sans); font-size: 0.95rem; color: var(--earth);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--earth-soft); opacity: 0.6; }

.form-message {
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.form-message-success {
  background: rgba(45,74,53,0.1);
  border: 1px solid rgba(45,74,53,0.25);
  color: var(--green);
}
.form-message-error {
  background: rgba(160,64,64,0.08);
  border: 1px solid rgba(160,64,64,0.22);
  color: #7a2d2d;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.whatsapp-float::before {
  content: '';
  width: 29px;
  height: 29px;
  background: white;
  clip-path: polygon(50% 0%, 67% 5%, 82% 16%, 93% 32%, 98% 50%, 94% 68%, 83% 84%, 67% 95%, 49% 100%, 33% 96%, 16% 100%, 20% 83%, 8% 67%, 2% 50%, 7% 31%, 18% 16%, 33% 5%);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(37,211,102,0.45);
}
.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============ FOOTER ============ */
.footer { background: var(--earth); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding: 80px 60px 60px; max-width: 1200px; margin: 0 auto;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.2em; color: var(--ivory); margin-bottom: 20px;
}
.footer-brand p { font-size: 0.875rem; color: rgba(245,240,232,0.5); line-height: 1.7; }
.footer-nav h4 {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav li, .footer-nav a {
  font-size: 0.875rem; color: rgba(245,240,232,0.55);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  padding: 24px 60px;
  border-top: 1px solid rgba(184,146,42,0.15);
  font-size: 0.8rem; color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; gap: 60px; padding-top: 120px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-visual { margin: 0; }
  .hero-image-frame { width: 320px; height: 420px; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-subtitle .br-desk { display: none; }
  .trio-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-quote-float { right: 0; bottom: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .section-pad { padding: 80px 0; }
  .hero { padding: 120px 24px 60px; }
  .hero-scroll-hint { left: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .footer-bottom { padding: 20px 24px; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .about-img-wrap { padding-top: 100%; }
  .about-stat-row { gap: 12px; }
  .whatsapp-float { right: 18px; bottom: 18px; }
}
