/************************************************
 * PROJECT: My Harmony Bloom
 * DEVELOPER: Rafael Fernandez
 * YEAR: 2026
 * CATEGORY: Professional Cleaning Services
 * COPYRIGHT: All rights reserved (c) 2026
 * CONTACT: [Rafaelfernandez688@gmail.com]
 ************************************************/
:root {
  --sage: #8FAF72;
  --sage-d: #5E8040;
  --sage-l: #C8DFB0;
  --sage-ll: #EAF3DF;
  --rose: #D4937A;
  --rose-d: #B36B52;
  --rose-l: #F0CABB;
  --rose-ll: #FAF0EB;
  --linen: #F8F5EF;
  --linen-d: #EDE8DE;
  --linen-dd: #E0D8CB;
  --cream: #FDFAF5;
  --ink: #1E1E1A;
  --ink-s: #4A4740;
  --ink-f: #8A857D;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.25,.46,.45,.94);
  --shadow-sm: 0 2px 12px rgba(30,30,26,.06);
  --shadow-md: 0 8px 32px rgba(30,30,26,.1);
  --shadow-lg: 0 20px 60px rgba(30,30,26,.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-xl: 56px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* === TYPOGRAPHY === */
h1 { font-family: var(--serif); font-size: clamp(3rem,7vw,5.8rem); font-weight: 300; line-height: 1.04; letter-spacing: -.02em; }
h1 em { font-style: italic; color: var(--sage-d); font-weight: 300; }
h2 { font-family: var(--serif); font-size: clamp(2rem,3.8vw,3.2rem); font-weight: 300; line-height: 1.18; letter-spacing: -.015em; }
h2 em { font-style: italic; color: var(--sage-d); }
h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; margin-bottom: .6rem; letter-spacing: -.01em; }
.label { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-d); }
.sub { font-size: clamp(.9rem,1.8vw,1.05rem); line-height: 1.85; color: var(--ink-s); font-weight: 300; }

/* === LAYOUT === */
.wrap { width: 90%; max-width: 1160px; margin: 0 auto; }
.narrow { width: 90%; max-width: 720px; margin: 0 auto; }
section { padding: clamp(5rem,10vw,9rem) 0; }
.section-head { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.section-head .label { display: inline-block; margin-bottom: 1rem; }
.section-head h2 { margin-bottom: .8rem; }
.section-head .sub { max-width: 500px; margin: 1rem auto 0; }
.divider { width: 56px; height: 2px; background: linear-gradient(90deg,var(--sage),var(--rose)); margin: 1.4rem auto 0; border-radius: 2px; }

/* === REVEAL === */
[data-r] { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-r=l] { transform: translateX(-32px); }
[data-r=r] { transform: translateX(32px); }
[data-r].on { opacity: 1; transform: none; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: .55em; font-family: var(--sans); font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .92em 2.1em; border-radius: 50px; transition: transform .3s var(--ease), box-shadow .3s, background .25s, color .25s; cursor: pointer; position: relative; overflow: hidden; }
.btn::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.12); opacity: 0; transition: opacity .25s; }
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn-sage { background: linear-gradient(135deg,var(--sage) 0%,var(--sage-d) 100%); color: var(--white); box-shadow: 0 6px 28px rgba(94,128,64,.3); }
.btn-sage:hover { box-shadow: 0 12px 36px rgba(94,128,64,.42); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(30,30,26,.2); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-d); }

/* === NAV === */
.nav { position: fixed; inset: 0 0 auto; z-index: 999; padding: 1rem 0; transition: padding .4s var(--ease), background .4s, box-shadow .4s; }
.nav.scrolled { background: rgba(253,250,245,.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(30,30,26,.07),0 4px 24px rgba(30,30,26,.05); padding: .65rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; transition: opacity .2s, transform .3s var(--ease); }
.nav-logo:hover { opacity: .8; transform: scale(1.02); }
.nav-logo img { height: auto; width: 155px; max-width: 100%; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-s); position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -4px; width: 0; height: 1.5px; background: linear-gradient(90deg,var(--sage),var(--rose)); transition: width .35s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

/* === BURGER === */
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; border-radius: 2px; }
.burger.open span:first-child { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:last-child { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* === DRAWER === */
.drawer { position: fixed; inset: 0; background: var(--cream); z-index: 1000; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.8rem; opacity: 0; pointer-events: none; transition: opacity .45s var(--ease); }
.drawer::before { content: ""; position: absolute; top: -30%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,var(--sage-ll),transparent 65%); pointer-events: none; }
.drawer.open { opacity: 1; pointer-events: all; }
.drawer a { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: var(--ink); transition: color .2s, letter-spacing .3s var(--ease); position: relative; z-index: 1; }
.drawer a:hover { color: var(--sage-d); letter-spacing: .02em; }

/* === HERO === */
.hero { min-height: 100svh; display: grid; place-items: center; position: relative; overflow: hidden; padding-top: 90px; background: var(--cream); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 50% at 80% 30%,rgba(200,223,176,.28),transparent 60%), radial-gradient(ellipse 45% 55% at 15% 75%,rgba(212,147,122,.16),transparent 60%), radial-gradient(ellipse 70% 35% at 50% 105%,rgba(202,222,180,.22),transparent 55%); }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(143,175,114,.18); pointer-events: none; animation: spin linear infinite; }
.ring-1 { width: 580px; height: 580px; top: -220px; right: -180px; animation-duration: 35s; }
.ring-2 { width: 380px; height: 380px; bottom: -120px; left: -100px; animation-duration: 25s; animation-direction: reverse; border-color: rgba(212,147,122,.14); }
.ring-3 { width: 220px; height: 220px; top: 22%; left: 7%; animation-duration: 20s; border-color: rgba(143,175,114,.12); }
@keyframes spin { to { transform: rotate(360deg); } }
.petal { position: absolute; border-radius: 60% 40% 70% 30%/45% 55% 45% 55%; opacity: .4; pointer-events: none; animation: floatpetal ease-in-out infinite; }
.petal-1 { width: 180px; height: 180px; background: radial-gradient(circle,var(--sage-l),transparent 70%); top: 16%; left: 5%; animation-duration: 9s; }
.petal-2 { width: 130px; height: 130px; background: radial-gradient(circle,var(--rose-l),transparent 70%); bottom: 20%; right: 7%; animation-duration: 11s; animation-delay: 1.2s; animation-direction: reverse; }
@keyframes floatpetal { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(10px,-14px) rotate(9deg); } 66% { transform: translate(-7px,9px) rotate(-6deg); } }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 880px; padding: 2rem 0 5rem; animation: fadeup 1s var(--ease) .1s both; }
.eyebrow { display: inline-flex; align-items: center; gap: .8em; margin-bottom: 2rem; }
.eyebrow-line { width: 36px; height: 1px; background: linear-gradient(90deg,transparent,var(--sage)); }
.eyebrow-line:last-child { background: linear-gradient(90deg,var(--sage),transparent); }
.badge { display: inline-flex; align-items: center; gap: .5em; background: linear-gradient(135deg,var(--rose-ll),var(--rose-l)); color: var(--rose-d); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .55em 1.5em; border-radius: 50px; box-shadow: 0 4px 20px rgba(212,147,122,.28); margin-bottom: 1.6rem; animation: badgein .9s var(--ease) .2s both; border: 1px solid rgba(212,147,122,.2); }
.badge::before { content: "✦"; opacity: .7; }
@keyframes badgein { from { opacity: 0; transform: scale(.8) translateY(8px); } to { opacity: 1; transform: none; } }
.hero-actions { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; animation: fadeup .9s var(--ease) .65s both; }
@keyframes fadeup { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.scroll-cue { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--ink-f); animation: fadeup .9s var(--ease) 1.2s both; }
.scroll-cue span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom,var(--sage),transparent); animation: scrollpulse 2.2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* === SERVICES === */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 1.5rem; }
.svc-card { background: var(--linen); border-radius: var(--radius-lg); padding: 2.2rem; border: 1px solid rgba(143,175,114,.12); position: relative; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s, background .3s; }
.svc-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg,rgba(143,175,114,.04),rgba(212,147,122,.04)); opacity: 0; transition: opacity .4s; pointer-events: none; }
.svc-card::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--sage-l),var(--rose-l)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); pointer-events: none; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: var(--white); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover .svc-icon { transform: scale(1.12) rotate(-4deg); }
.card-num { font-family: var(--serif); font-size: .85rem; color: var(--sage); margin-bottom: 1.2rem; opacity: .5; font-weight: 300; }
.svc-icon { width: 54px; height: 54px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; transition: transform .4s var(--ease); }
.icon-sage { background: var(--sage-ll); }
.icon-rose { background: var(--rose-ll); }
.svc-card p { font-size: .87rem; line-height: 1.8; color: var(--ink-s); font-weight: 300; }

/* === COMING SOON SERVICE CARDS === */
.svc-card.coming-soon {
  border-color: rgba(200, 50, 50, .22);
  background: rgba(255, 245, 245, .85);
  position: relative;
}
.svc-card.coming-soon::after {
  background: linear-gradient(90deg, rgba(200,50,50,.35), rgba(220,80,80,.35));
}
.svc-card.coming-soon:hover {
  background: rgba(255, 240, 240, .95);
  box-shadow: 0 20px 60px rgba(180,30,30,.12);
}
.svc-card.coming-soon h3 {
  color: #b03030;
}
.svc-card.coming-soon .card-num {
  color: #c04040;
}
.svc-card.coming-soon .svc-icon {
  filter: grayscale(30%);
  background: rgba(220, 80, 80, .12) !important;
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  margin-top: .85rem;
  padding: .38em 1em;
  border-radius: 50px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e05050, #c03030);
  color: #fff;
  box-shadow: 0 3px 14px rgba(180,30,30,.28);
  pointer-events: none;
  user-select: none;
}
.coming-soon-badge::before {
  content: "⏳";
  font-size: .8em;
}

/* === COMMITMENT === */
#commitment { background: var(--linen); }
.commit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.commit-visual { position: relative; height: 500px; }
.blob { position: absolute; inset: 0; border-radius: 42% 58% 36% 64%/50% 44% 56% 50%; background: linear-gradient(145deg,var(--sage-ll),var(--rose-ll)); animation: morph 14s ease-in-out infinite; }
@keyframes morph { 0%,100% { border-radius: 42% 58% 36% 64%/50% 44% 56% 50%; } 33% { border-radius: 60% 40% 55% 45%/42% 58% 42% 58%; } 66% { border-radius: 38% 62% 48% 52%/58% 38% 62% 42%; } }
.float-card { position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 1.3rem 1.7rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 1rem; min-width: 200px; animation: bob 7s ease-in-out infinite; border: 1px solid rgba(143,175,114,.1); }
.float-card-a { bottom: 10%; left: -5%; }
.float-card-b { top: 8%; right: -3%; animation-delay: 1.5s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-card .fi { font-size: 1.7rem; }
.float-card strong { display: block; font-size: .88rem; color: var(--ink); font-weight: 500; }
.float-card span { font-size: .76rem; color: var(--ink-f); font-weight: 300; }
.commit-text .label { display: block; margin-bottom: 1rem; }
.pillars { display: flex; flex-direction: column; gap: 1.2rem; margin: 2.2rem 0 2.4rem; }
.pillar { display: flex; align-items: flex-start; gap: 1rem; }
.pillar-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-ll); border: 2px solid var(--sage-l); flex-shrink: 0; margin-top: .1em; display: flex; align-items: center; justify-content: center; transition: border-color .3s, background .3s; }
.pillar-dot::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sage-d); }
.pillar:hover .pillar-dot { background: var(--sage-l); border-color: var(--sage); }
.pillar strong { display: block; font-size: .93rem; font-weight: 500; margin-bottom: .25rem; }
.pillar span { font-size: .83rem; color: var(--ink-s); font-weight: 300; line-height: 1.7; }

/* === GALLERY === */
#gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 230px 230px; gap: 1.1rem; }
.gitem { border-radius: var(--radius-md); overflow: hidden; position: relative; background: var(--linen-d); }
.gallery-grid .gitem:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-grid .gitem:nth-child(2) { grid-column: span 4; }
.gallery-grid .gitem:nth-child(3) { grid-column: span 3; }
.gallery-grid .gitem:nth-child(4) { grid-column: span 3; }
.gallery-grid .gitem:nth-child(5) { grid-column: span 4; }
.gph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-f); transition: transform .6s var(--ease); font-weight: 500; }
.gph .ico { font-size: 2rem; opacity: .45; }
.gitem:hover .gph { transform: scale(1.04); }
.gallery-grid .gitem:nth-child(1) .gph { background: linear-gradient(145deg,var(--sage-ll),var(--linen-d)); }
.gallery-grid .gitem:nth-child(2) .gph { background: linear-gradient(145deg,var(--rose-ll),var(--linen-d)); }
.gallery-grid .gitem:nth-child(3) .gph { background: linear-gradient(145deg,var(--linen-d),var(--sage-ll)); }
.gallery-grid .gitem:nth-child(4) .gph { background: linear-gradient(145deg,var(--linen-d),var(--rose-ll)); }
.gallery-grid .gitem:nth-child(5) .gph { background: linear-gradient(145deg,var(--sage-ll),var(--rose-ll)); }
.gov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(30,30,26,.52),transparent 60%); opacity: 0; display: flex; align-items: flex-end; padding: 1.4rem; transition: opacity .4s; }
.gitem:hover .gov { opacity: 1; }
.gov span { color: var(--white); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }

/* === FAQ === */
#faq { background: var(--linen); }
.faq-item { border-bottom: 1px solid rgba(143,175,114,.18); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid rgba(143,175,114,.18); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; text-align: left; gap: 1rem; color: var(--ink); font-size: .97rem; font-weight: 400; transition: color .2s; font-family: var(--sans); }
.faq-btn:hover { color: var(--sage-d); }
.faq-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(143,175,114,.35); display: flex; align-items: center; justify-content: center; color: var(--sage-d); transition: transform .45s var(--ease), background .3s, border-color .3s; font-size: 1.1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--rose-ll); border-color: var(--rose-l); }
.nav-links a.nav-active { color: var(--sage-d); font-weight: 500; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-item.open .faq-body { max-height: 480px; }
.faq-body p { padding-bottom: 1.5rem; font-size: .9rem; line-height: 1.85; color: var(--ink-s); font-weight: 300; }
.faq-body p + p { margin-top: .6rem; }
.faq-body p strong { font-weight: 500; color: var(--ink); }

/* === CONTACT === */
#contact { background: var(--white); position: relative; overflow: hidden; }
#contact::before { content: ""; position: absolute; top: -350px; right: -300px; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle,rgba(240,202,187,.3),transparent 65%); pointer-events: none; }
#contact::after { content: ""; position: absolute; bottom: -250px; left: -250px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,var(--sage-ll),transparent 65%); pointer-events: none; opacity: .7; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: 5.5rem; align-items: start; }
.contact-lhs .label { display: block; margin-bottom: 1rem; }
.cdetail { display: flex; align-items: center; gap: .9rem; font-size: .88rem; color: var(--ink); margin-bottom: .9rem; transition: color .2s, gap .25s var(--ease); }
.cdetail:hover { color: var(--sage-d); gap: 1.1rem; }
.cdetail-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--linen); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(143,175,114,.18); transition: background .2s, border-color .2s; }
.cdetail:hover .cdetail-icon { background: var(--sage-ll); border-color: var(--sage-l); }
.form-box { background: var(--linen); border-radius: var(--radius-xl); padding: 2.6rem; border: 1px solid rgba(143,175,114,.14); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.fg label { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-f); }
.fg input, .fg select, .fg textarea { font-family: var(--sans); font-size: .9rem; font-weight: 300; padding: .88rem 1.2rem; border: 1.5px solid rgba(143,175,114,.22); border-radius: var(--radius-sm); background: var(--white); color: var(--ink); outline: none; transition: border-color .25s, box-shadow .25s; width: 100%; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(143,175,114,.12); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: .88rem; padding: 1em; margin-top: .4rem; }
.form-note { text-align: center; margin-top: .9rem; font-size: .72rem; color: var(--ink-f); font-weight: 300; }
.form-success { display: none; text-align: center; padding: 2.5rem; font-family: var(--serif); font-size: 1.5rem; color: var(--sage-d); font-style: italic; font-weight: 300; }

/* === FOOTER === */
footer { background: var(--linen); color: var(--ink-s); padding: 4rem 0 2rem; border-top: 1px solid rgba(143,175,114,.15); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.8rem; border-bottom: 1px solid rgba(143,175,114,.15); margin-bottom: 1.6rem; }
.footer-logo img { height: auto; width: 145px; max-width: 100%; margin-bottom: 1.1rem; }
.footer-bio { font-size: .84rem; line-height: 1.85; color: var(--ink-s); font-weight: 300; }
footer h4 { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.3rem; }
footer li { margin-bottom: .65rem; }
footer li a { font-size: .84rem; color: var(--ink-s); transition: color .2s; font-weight: 300; }
footer li a:hover { color: var(--sage-d); }
.social-links { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-links a { width: 36px; height: 36px; border-radius: 10px; background: rgba(143,175,114,.12); display: flex; align-items: center; justify-content: center; color: var(--ink-s); transition: background .25s, color .25s, transform .25s var(--ease); }
.social-links a:hover { background: var(--sage); color: var(--white); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; font-size: .74rem; color: var(--ink-f); font-weight: 300; }

/* === FLOATING ELEMENTS === */
.wa-btn { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 997; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg,#2ECC71,#25D366); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 28px rgba(37,211,102,.38); transition: transform .35s var(--ease), box-shadow .35s; animation: popIn .7s var(--ease) 1.5s both; }
.wa-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }
.wa-btn::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(37,211,102,.35); animation: wapulse 2.8s ease-in-out infinite; }
@keyframes popIn { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
@keyframes wapulse { 0%,100% { transform: scale(1); opacity: .4; } 50% { transform: scale(1.18); opacity: 0; } }
.back-top { position: fixed; bottom: 5.8rem; right: 1.8rem; z-index: 997; width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 1.5px solid rgba(143,175,114,.3); display: flex; align-items: center; justify-content: center; color: var(--sage-d); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: opacity .35s, transform .35s var(--ease), background .2s, color .2s; transform: translateY(12px); }
.back-top.visible { opacity: 1; pointer-events: all; transform: none; }
.back-top:hover { background: var(--sage-d); color: var(--white); border-color: var(--sage-d); transform: translateY(-2px); }

/* === SERVICE AREA === */
.zone-pill { background: var(--white); border: 1.5px solid rgba(143,175,114,.2); color: var(--ink-s); font-size: .78rem; font-weight: 500; padding: .5em 1.2em; border-radius: 50px; letter-spacing: .03em; transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease), box-shadow .25s; }
.zone-pill:hover { background: var(--sage-ll); border-color: var(--sage-l); color: var(--sage-d); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* === EMPLOYEE PHOTO === */
.commit-employee { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 42% 58% 36% 64%/50% 44% 56% 50%; animation: morph 14s ease-in-out infinite; z-index: 1; }
.float-card { z-index: 2; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .commit-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .commit-visual { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gitem { grid-column: auto !important; grid-row: auto !important; height: 210px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gitem { height: 190px; }
  .services-grid { grid-template-columns: 1fr; }
  .petal-1, .petal-2 { display: none; }
  .hero-content { padding: 1.5rem 0 4rem; }
  .contact-grid { gap: 2.5rem; }
}

/* ═══ STATS STRIP — GUARANTEE ═══ */
.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(143,175,114,.12);
  border-bottom: 1px solid rgba(143,175,114,.12);
  padding: 3.2rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,223,176,.1), rgba(240,202,187,.07));
  pointer-events: none;
}
.guarantee-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.4rem 3.2rem;
  background: linear-gradient(145deg, var(--sage-ll), rgba(240,202,187,.18));
  border: 1.5px solid rgba(143,175,114,.22);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(94,128,64,.1), inset 0 1px 0 rgba(255,255,255,.7);
  max-width: 460px;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.guarantee-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 52px rgba(94,128,64,.16), inset 0 1px 0 rgba(255,255,255,.7);
}
.guarantee-icon {
  font-size: 1.1rem;
  color: var(--sage);
  opacity: .7;
  margin-bottom: .6rem;
  display: block;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}
.guarantee-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 5.2rem);
  font-weight: 300;
  color: var(--sage-d);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .3rem;
}
.guarantee-title {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-s);
  margin-bottom: .8rem;
}
.guarantee-sub {
  font-size: .88rem;
  color: var(--ink-f);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
}
@media (max-width: 600px) {
  .guarantee-badge { padding: 1.8rem 1.6rem; }
  .guarantee-num { font-size: clamp(3rem, 14vw, 4rem); }
}

/* ═══ STICKY BOOKING BAR ═══ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 996;
  background: rgba(253,250,245,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(143,175,114,.2);
  box-shadow: 0 -4px 32px rgba(30,30,26,.08);
  padding: .9rem 0;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.sticky-bar.bar-visible { transform: translateY(0); }
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sticky-bar-text {
  font-size: .85rem;
  color: var(--ink-s);
  font-weight: 300;
}
.sticky-bar-text strong { color: var(--ink); font-weight: 500; }
.sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.sticky-bar-call {
  font-size: .82rem;
  color: var(--sage-d);
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
}
.sticky-bar-call:hover { color: var(--sage); }
@media (max-width: 600px) {
  .sticky-bar-text { display: none; }
  .sticky-bar-inner { justify-content: center; }
}

/* ═══ CURSOR TRAIL (hides default cursor on desktop) ═══ */
@media (pointer: fine) {
  /* cursor trail dots styled in JS */
}

/* ═══ MOBILE: Float Cards Stack Below Image (< 768px) ═══ */
@media (max-width: 768px) {

  .commit-visual {
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: .5rem;
  }

  /* Give the blob a fixed height so the employee photo is visible */
  .blob {
    position: relative !important;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    border-radius: var(--radius-lg) !important;
    animation: none;
  }

  /* Sit the employee photo on top of the blob inside the flex column */
  .commit-employee {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 300px !important;
    border-radius: var(--radius-lg) !important;
    object-position: top center;
    animation: none;
    z-index: 1;
  }

  /* Pull both float cards out of absolute overlap — stack them below */
  .float-card,
  .float-card-a,
  .float-card-b {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    animation: none;
    z-index: 1;
  }

}

/* ═══ REAL PHOTO GALLERY TILES ═══ */
.gitem-photo .gph { display: none; } /* hide emoji placeholder when real photo present */
.gimg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s var(--ease);
}
.gitem-photo:hover .gimg { transform: scale(1.04); }

/* ═══ DEEP CLEANING CARD — PHOTO INSET ═══ */
.svc-card-featured {
  padding-top: 0;
  overflow: hidden;
}
.svc-card-photo-wrap {
  position: relative;
  width: calc(100% + 0px);
  height: 160px;
  margin: 0 0 1.4rem 0;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) var(--radius-md) var(--radius-md);
  overflow: hidden;
}
.svc-card-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .5s var(--ease);
}
.svc-card-featured:hover .svc-card-photo { transform: scale(1.06); }
.svc-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(143,175,114,0.22) 100%
  );
  pointer-events: none;
}
/* shift card content to respect no top-padding */
.svc-card-featured .card-num { margin-top: 0; }

/* ══════════════════════════════════════════
   GALLERY — TEAM PHOTOS ROW
══════════════════════════════════════════ */
.gallery-team {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.gallery-team .gitem { height: 300px; }
/* Per-photo crop adjustments to show faces clearly */
.gallery-team .gitem:nth-child(1) .gimg { object-position: center 25%; }
.gallery-team .gitem:nth-child(2) .gimg { object-position: center 15%; }
.gallery-team .gitem:nth-child(3) .gimg { object-position: center 30%; }

/* ══════════════════════════════════════════
   GALLERY — BEFORE / AFTER SLIDERS
══════════════════════════════════════════ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--linen);
  border: 1px solid rgba(143,175,114,.14);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.ba-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ba-label-row {
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid rgba(143,175,114,.12);
}
.ba-category {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-s);
}

/* Slider container */
.ba-slider-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}
.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Before sits on top, clipped from the right */
.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s linear;
}

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 10;
  pointer-events: none;
  transition: left .05s linear;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 6px rgba(0,0,0,.3);
}
.ba-handle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--sage-d);
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  border: 2px solid rgba(143,175,114,.4);
  flex-shrink: 0;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.ba-slider-wrap:hover .ba-handle-btn {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(94,128,64,.35);
}

/* Before / After badges */
.ba-badges {
  position: absolute;
  bottom: .8rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 .8rem;
  pointer-events: none;
  z-index: 5;
}
.ba-badge {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: 50px;
}
.ba-before-badge {
  background: rgba(30,30,26,.55);
  color: var(--white);
}
.ba-after-badge {
  background: linear-gradient(135deg, var(--sage), var(--sage-d));
  color: var(--white);
}

/* Responsive — tablet */
@media (max-width: 860px) {
  .gallery-team { grid-template-columns: 1fr 1fr; }
  .gallery-team .gitem:first-child { grid-column: span 2; height: 280px; }
  .gallery-team .gitem:nth-child(2),
  .gallery-team .gitem:nth-child(3) { height: 220px; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* Responsive — mobile */
@media (max-width: 600px) {
  /* Team photos: horizontal scroll strip so all 3 are visible without stacking */
  .gallery-team {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .75rem;
    padding-bottom: .5rem;
    margin-bottom: 1.2rem;
  }
  .gallery-team .gitem {
    flex: 0 0 72vw;        /* each card = 72% viewport width */
    height: 220px;
    scroll-snap-align: start;
    grid-column: auto;
    grid-row: auto;
  }
  /* Fix object-position on mobile per photo */
  .gallery-team .gitem:nth-child(1) .gimg { object-position: center 20%; }
  .gallery-team .gitem:nth-child(2) .gimg { object-position: center 25%; }
  .gallery-team .gitem:nth-child(3) .gimg { object-position: center 20%; }

  /* Before/after sliders: single column, shorter height */
  .ba-grid { grid-template-columns: 1fr; }
  .ba-slider-wrap { height: 200px; }
}

/* ═══ PREFERS REDUCED MOTION ═══ */
/* Only disable purely decorative animations — keep functional transitions intact */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* Decorative spinning / floating / morphing */
  .ring { animation: none !important; }
  .petal-1, .petal-2 { animation: none !important; }
  .blob { animation: none !important; }
  .float-card { animation: none !important; }
  .scroll-line { animation: none !important; }
  .guarantee-icon { animation: none !important; }
  .wa-btn::after { animation: none !important; }
  .badge { animation: none !important; }
  .hero-content { animation: none !important; }
  .hero-actions { animation: none !important; }
  .scroll-cue { animation: none !important; }

  /* Scroll reveal — keep animations but respect user preference */
  [data-r] {
    transition-duration: 0.3s !important;
  }
}

/* ═══ SHARED PAGE HERO (interior pages) ═══ */
.page-hero {
  padding: clamp(7rem,14vw,11rem) 0 clamp(4rem,8vw,7rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 80% 20%, rgba(200,223,176,.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(212,147,122,.13), transparent 60%);
}
.page-hero .breadcrumb {
  font-size: .68rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-f); margin-bottom: 1.2rem;
}
.page-hero .breadcrumb a { color: var(--sage-d); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ═══ SHARED CTA BANNER ═══ */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-ll) 0%, var(--rose-ll) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(3rem,6vw,5rem) clamp(2rem,5vw,5rem);
  text-align: center;
  border: 1px solid rgba(143,175,114,.15);
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ═══ BOOKING NOTICE ═══ */
.booking-notice {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #fffbef;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}
.notice-content p {
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-s);
  font-weight: 300;
}
.notice-content p + p {
  margin-top: .6rem;
}
.notice-content strong {
  color: var(--ink);
  font-weight: 600;
}
