/* =========================================================
   Maple Fresh Cleaning Services — Design System
   ========================================================= */

:root {
  --forest-950: #06231a;
  --forest-900: #0a3526;
  --forest-800: #0e4632;
  --forest-700: #135a3f;
  --leaf-600: #1f8a45;
  --leaf-500: #2fa652;
  --lime-400: #9fd84b;
  --lime-300: #c3ea7d;
  --mint-100: #e6f2e2;
  --mint-50: #f1f7ee;
  --cream: #f7f4ec;
  --paper: #ffffff;
  --ink: #0d1f17;
  --ink-2: #2c3d35;
  --muted: #5f6f67;
  --line: rgba(13, 31, 23, .1);
  --line-light: rgba(255, 255, 255, .14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 2px 10px rgba(6, 35, 26, .06);
  --shadow: 0 18px 50px -18px rgba(6, 35, 26, .28);
  --shadow-lg: 0 40px 90px -30px rgba(6, 35, 26, .45);

  --container: 1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --section: clamp(80px, 11vw, 150px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; font-variation-settings: "SOFT" 50, "opsz" 144; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--lime-400); color: var(--forest-950); }
:focus-visible { outline: 3px solid var(--lime-400); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow.light { color: var(--lime-400); }
.display-xl { font-size: clamp(48px, 7.6vw, 108px); }
.display-lg { font-size: clamp(40px, 5.6vw, 76px); }
.display-md { font-size: clamp(32px, 4vw, 54px); }
.display-sm { font-size: clamp(24px, 2.6vw, 34px); }
em.accent, .accent { font-style: italic; color: var(--leaf-600); font-variation-settings: "SOFT" 100, "opsz" 144; }
.on-dark em.accent, .on-dark .accent { color: var(--lime-400); }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--muted); line-height: 1.6; }
.on-dark .lead { color: rgba(255,255,255,.72); }
.swash { position: relative; white-space: nowrap; display: inline-block; }
.swash svg { position: absolute; left: -2%; bottom: -.12em; width: 104%; height: .32em; overflow: visible; }
.swash path { stroke: var(--lime-400); stroke-width: 7; fill: none; stroke-linecap: round; stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 1.4s .6s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.section-head { display: grid; gap: 22px; margin-bottom: clamp(44px, 6vw, 76px); max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; justify-items: center; }
.section-head.split { max-width: none; grid-template-columns: 1.2fr 1fr; align-items: end; gap: 40px; }
@media (max-width: 860px) { .section-head.split { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--forest-900); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 16px; letter-spacing: -.005em; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  overflow: hidden; isolation: isolate;
}
.btn::after { content: ""; position: absolute; inset: 0; background: var(--lime-400); transform: translateY(101%); transition: transform .45s var(--ease); z-index: -1; border-radius: inherit; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(10, 53, 38, .6); color: var(--forest-950); }
.btn:hover::after { transform: translateY(0); }
.btn .arrow { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--lime-400); color: var(--forest-950); margin-right: -12px; transition: transform .4s var(--ease), background .3s; }
.btn:hover .arrow { transform: rotate(-45deg); background: var(--forest-900); color: #fff; }
.btn-lime { --bg: var(--lime-400); --fg: var(--forest-950); }
.btn-lime::after { background: #fff; }
.btn-lime .arrow { background: var(--forest-900); color: #fff; }
.btn-ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px transparent; }
.btn-ghost-light { --bg: transparent; --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35); }
.btn svg { width: 18px; height: 18px; flex: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--forest-800); }
.link-arrow span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1.5px var(--line); transition: all .4s var(--ease); }
.link-arrow:hover span { background: var(--lime-400); box-shadow: none; transform: rotate(-45deg); }

/* ---------- Topbar ---------- */
.topbar { background: var(--forest-950); color: rgba(255,255,255,.78); font-size: 13.5px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 42px; }
.topbar-group { display: flex; align-items: center; gap: 26px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--lime-400); }
.topbar a:hover { color: #fff; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-400); box-shadow: 0 0 0 0 rgba(159,216,75,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(159,216,75,0); } 100% { box-shadow: 0 0 0 0 rgba(159,216,75,0); } }
@media (max-width: 760px) { .topbar .hide-sm { display: none; } .topbar .container { justify-content: center; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; transition: background .4s, box-shadow .4s, backdrop-filter .4s; }
.site-header.scrolled { background: rgba(247, 244, 236, .82); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); box-shadow: 0 1px 0 var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 104px; transition: height .4s var(--ease); }
.scrolled .nav { height: 80px; }

.logo { display: inline-flex; align-items: center; flex: none; border-radius: 16px; transition: transform .5s var(--ease), background .4s, padding .4s; }
.logo img { display: block; height: 88px; width: auto; transition: height .4s var(--ease); }
.logo:hover { transform: scale(1.03); }
.scrolled .logo img { height: 68px; }
@media (max-width: 560px) { .nav { height: 88px; } .logo img { height: 70px; } .scrolled .logo img { height: 58px; } }

.nav-links { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,.6); padding: 6px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); }
.nav-links a { position: relative; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .3s, background .3s; }
.nav-links a:hover { color: var(--ink); background: rgba(13,31,23,.05); }
.nav-links a.active { background: var(--forest-900); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.nav-phone .ic { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--mint-100); color: var(--leaf-600); transition: all .3s; }
.nav-phone:hover .ic { background: var(--lime-400); color: var(--forest-950); }
.nav-phone .ic svg { width: 18px; height: 18px; }
.nav-phone small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); line-height: 1; margin-bottom: 3px; }
.nav .btn { padding: 13px 22px; font-size: 15px; }

.burger { display: none; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--forest-900); cursor: pointer; position: relative; }
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; background: #fff; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 18px; } .burger span:nth-child(2) { top: 23px; } .burger span:nth-child(3) { top: 28px; }
.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--forest-950); color: #fff; padding: 160px var(--gutter) 40px; display: flex; flex-direction: column; justify-content: space-between; clip-path: circle(0 at calc(100% - 44px) 60px); transition: clip-path .7s var(--ease); visibility: hidden; }
.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 60px); visibility: visible; }
.mobile-menu nav { display: grid; gap: 6px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: clamp(38px, 10vw, 56px); line-height: 1.15; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line-light); padding: 8px 0; opacity: 0; transform: translateY(20px); transition: all .5s var(--ease); }
.mobile-menu nav a.active { color: var(--lime-400); font-style: italic; }
.menu-open .mobile-menu nav a { opacity: 1; transform: none; }
.menu-open .mobile-menu nav a:nth-child(2) { transition-delay: .05s; } .menu-open .mobile-menu nav a:nth-child(3) { transition-delay: .1s; }
.menu-open .mobile-menu nav a:nth-child(4) { transition-delay: .15s; } .menu-open .mobile-menu nav a:nth-child(5) { transition-delay: .2s; }
.mobile-menu nav a small { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.4); }
.mobile-menu .mm-foot { display: grid; gap: 14px; }
.menu-open .site-header .logo { background: #fff; padding: 4px 10px; }
.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
.menu-open .burger { background: var(--lime-400); } .menu-open .burger span { background: var(--forest-950); }
.menu-open { overflow: hidden; }
.site-header .nav { position: relative; z-index: 95; }

@media (max-width: 1100px) { .nav-phone { display: none; } }
@media (max-width: 960px) { .nav-links, .nav-actions .btn { display: none; } .burger { display: block; } }

/* ---------- Hero (home) ---------- */
.hero { position: relative; padding: clamp(30px, 5vw, 60px) 0 clamp(80px, 9vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.hero-copy { display: grid; gap: 30px; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px 7px 7px; background: #fff; border-radius: 999px; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); font-size: 14px; font-weight: 600; width: max-content; max-width: 100%; }
.hero-badge b { background: var(--forest-900); color: var(--lime-400); padding: 4px 11px; border-radius: 999px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.hero h1 { font-size: clamp(50px, 7vw, 100px); line-height: .98; letter-spacing: -.035em; }
.hero .lead { max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-top: 10px; }
.proof-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); line-height: 1.35; }
.proof-item strong { display: block; color: var(--ink); font-size: 15px; }
.proof-ic { width: 44px; height: 44px; border-radius: 50%; background: var(--mint-100); color: var(--leaf-600); display: grid; place-items: center; flex: none; }
.proof-ic svg { width: 22px; height: 22px; }
.proof-divider { width: 1px; height: 40px; background: var(--line); }

.hero-visual { position: relative; height: clamp(520px, 52vw, 680px); }
.hero-img-main { position: absolute; right: 0; top: 0; width: 78%; height: 88%; border-radius: 300px 300px var(--radius-lg) var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-main img, .hero-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-main img { object-position: 40% center; transform: scale(1.08); animation: heroZoom 2.2s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-img-sub { position: absolute; left: 0; bottom: 0; width: 44%; height: 44%; border-radius: var(--radius); overflow: hidden; border: 8px solid var(--cream); box-shadow: var(--shadow); }
.float-card { position: absolute; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 20px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); font-size: 14px; line-height: 1.3; animation: floaty 6s ease-in-out infinite; }
.float-card strong { display: block; font-size: 15px; }
.float-card span { color: var(--muted); font-size: 13px; }
.float-card .fc-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--forest-900); color: var(--lime-400); flex: none; }
.float-card .fc-ic svg { width: 22px; height: 22px; }
.fc-1 { top: 12%; left: 2%; }
.fc-2 { bottom: 18%; right: -2%; animation-delay: -3s; }
@keyframes floaty { 50% { transform: translateY(-12px); } }
.rotor { position: absolute; top: 52%; left: 30%; width: 132px; height: 132px; border-radius: 50%; background: var(--lime-400); display: grid; place-items: center; box-shadow: var(--shadow); z-index: 3; }
.rotor svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.rotor svg.ring text { font-size: 10.6px; font-weight: 800; letter-spacing: 0; fill: var(--forest-950); font-family: var(--font-body); }
.rotor .rotor-core { width: 56px; height: 56px; border-radius: 50%; background: var(--forest-950); display: grid; place-items: center; }
.rotor .rotor-core svg { width: 28px; height: 28px; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-leaf { position: absolute; pointer-events: none; opacity: .08; color: var(--leaf-600); }
.hero-leaf.l1 { width: min(420px, 70vw); top: -80px; left: -140px; transform: rotate(-20deg); }
.hero-sparkle { position: absolute; color: var(--lime-400); width: 26px; animation: twinkle 3s ease-in-out infinite; }
@keyframes twinkle { 50% { transform: scale(.6) rotate(45deg); opacity: .5; } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 560px; max-width: 560px; width: 100%; margin: 0 auto; }
}
@media (max-width: 560px) {
  .hero-visual { height: 460px; }
  .rotor { width: 104px; height: 104px; left: 26%; }
  .rotor svg.ring text { font-size: 10px; }
  .fc-1 { left: 0; top: 4%; } .fc-2 { right: 0; bottom: 8%; }
  .hero-proof .proof-divider { display: none; }
  .hero-img-main { width: 86%; }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--forest-900); color: #fff; overflow: hidden; padding: 26px 0; position: relative; }
.marquee.tilt { transform: rotate(-1.6deg) scale(1.03); margin: -20px 0; z-index: 5; box-shadow: var(--shadow); }
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 36px; padding-right: 36px; font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); white-space: nowrap; }
.marquee-item:nth-child(even) { font-style: italic; color: var(--lime-400); }
.marquee-item svg { width: 26px; height: 26px; color: var(--lime-400); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Statement ---------- */
.statement { font-family: var(--font-display); font-size: clamp(34px, 5vw, 70px); line-height: 1.12; letter-spacing: -.03em; max-width: 1100px; }
.statement .pill-img { display: inline-block; width: 1.9em; height: .9em; border-radius: 999px; overflow: hidden; vertical-align: middle; margin: -.1em .08em 0; box-shadow: var(--shadow-sm); }
.statement .pill-img img { width: 100%; height: 100%; object-fit: cover; }
.statement .muted-words { color: rgba(13,31,23,.28); }
.statement-foot { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: end; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
.statement-foot p { max-width: 460px; color: var(--muted); }

/* ---------- Services bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 290px; gap: 18px; }
.svc-card { position: relative; border-radius: var(--radius); overflow: hidden; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; isolation: isolate; background: var(--forest-900); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.svc-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,35,26,0) 30%, rgba(6,35,26,.88) 100%); transition: background .5s; }
.svc-card:hover img { transform: scale(1.08); }
.svc-card:hover::before { background: linear-gradient(180deg, rgba(6,35,26,.15) 0%, rgba(6,35,26,.92) 100%); }
.svc-card .svc-num { position: absolute; top: 24px; left: 28px; font-size: 13px; font-weight: 700; letter-spacing: .1em; background: rgba(255,255,255,.16); backdrop-filter: blur(10px); padding: 6px 12px; border-radius: 999px; }
.svc-card .svc-go { position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%; background: #fff; color: var(--forest-950); display: grid; place-items: center; transition: all .5s var(--ease); }
.svc-card:hover .svc-go { background: var(--lime-400); transform: rotate(-45deg); }
.svc-card h3 { font-size: clamp(26px, 2.4vw, 34px); margin-bottom: 8px; }
.svc-card p { color: rgba(255,255,255,.78); font-size: 15px; max-width: 380px; max-height: 0; opacity: 0; transition: all .6s var(--ease); }
.svc-card:hover p, .svc-card:focus-visible p { max-height: 120px; opacity: 1; }
.svc-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.svc-card .tags span { font-size: 12px; padding: 4px 10px; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.b-1 { grid-column: span 7; grid-row: span 2; } .b-2 { grid-column: span 5; } .b-3 { grid-column: span 5; }
.b-4 { grid-column: span 4; } .b-5 { grid-column: span 4; } .b-6 { grid-column: span 4; }
.svc-card.cta-card { background: var(--lime-400); color: var(--forest-950); justify-content: space-between; }
.svc-card.cta-card::before { display: none; }
.svc-card.cta-card p { max-height: none; opacity: 1; color: var(--forest-800); }
@media (hover: none) { .svc-card p { max-height: none; opacity: 1; } }
@media (max-width: 960px) { .bento { grid-auto-rows: 280px; } .b-1 { grid-column: span 12; } .b-2, .b-3 { grid-column: span 6; } .b-4, .b-5, .b-6 { grid-column: span 6; } .b-6 { grid-column: span 12; } }
@media (max-width: 620px) { .bento > * { grid-column: span 12 !important; grid-row: span 1 !important; } .svc-card p { max-height: none; opacity: 1; } }

/* ---------- Check list ---------- */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; }
.check-list li::before { content: ""; flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%; background: var(--leaf-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/14px no-repeat; }
.on-dark .check-list li::before { background-color: var(--lime-400); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306231a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E"); }
/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; position: relative; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 34px 28px 30px; box-shadow: inset 0 0 0 1px var(--line); transition: transform .5s var(--ease), box-shadow .5s, background .5s; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: var(--forest-900); color: #fff; }
.step:hover p { color: rgba(255,255,255,.7); }
.step:hover .step-ic { background: var(--lime-400); color: var(--forest-950); }
.step .step-n { position: absolute; top: 26px; right: 28px; font-family: var(--font-display); font-size: 58px; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px rgba(13,31,23,.18); font-style: italic; }
.step:hover .step-n { -webkit-text-stroke-color: rgba(159,216,75,.6); }
.step-ic { width: 60px; height: 60px; border-radius: 18px; background: var(--mint-100); color: var(--leaf-600); display: grid; place-items: center; margin-bottom: 40px; transition: all .5s; }
.step-ic svg { width: 28px; height: 28px; }
.step h3 { font-size: 25px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; transition: color .5s; }
@media (max-width: 960px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ---------- Dark / Why ---------- */
.on-dark { background: var(--forest-950); color: #fff; }
.why { overflow: hidden; }
.why::before { content: ""; position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(47,166,82,.28), transparent 65%); top: -300px; right: -250px; pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; position: relative; }
.why-img { position: sticky; top: 110px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img .why-tag { position: absolute; left: 22px; right: 22px; bottom: 22px; background: rgba(6,35,26,.62); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 20px; padding: 22px; display: flex; gap: 16px; align-items: center; box-shadow: inset 0 0 0 1px var(--line-light); }
.why-tag .big { font-family: var(--font-display); font-size: 54px; color: var(--lime-400); line-height: 1; }
.why-list { display: grid; gap: 0; margin-top: 44px; }
.why-item { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 28px 0; border-top: 1px solid var(--line-light); transition: padding .5s var(--ease); }
.why-item:last-child { border-bottom: 1px solid var(--line-light); }
.why-item:hover { padding-left: 12px; }
.why-item .wi-ic { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1.5px rgba(159,216,75,.4); color: var(--lime-400); transition: all .5s; }
.why-item:hover .wi-ic { background: var(--lime-400); color: var(--forest-950); }
.why-item .wi-ic svg { width: 28px; height: 28px; }
.why-item h3 { font-size: 26px; margin-bottom: 6px; }
.why-item p { color: rgba(255,255,255,.64); font-size: 15.5px; }
@media (max-width: 960px) { .why-grid { grid-template-columns: 1fr; } .why-img { position: relative; top: 0; aspect-ratio: 4/3; } }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(60px, 8vw, 110px); border-top: 1px solid var(--line-light); position: relative; }
.stat { padding: 40px 24px 0 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line-light); }
.stat .num { font-family: var(--font-display); font-size: clamp(48px, 6vw, 84px); line-height: 1; letter-spacing: -.03em; }
.stat .num sup { font-size: .45em; color: var(--lime-400); vertical-align: top; position: relative; top: .25em; margin-left: 2px; }
.stat p { color: rgba(255,255,255,.6); margin-top: 10px; font-size: 15px; }
.stats.light { border-color: var(--line); }
.stats.light .stat + .stat { border-color: var(--line); }
.stats.light .stat p { color: var(--muted); }
.stats.light .stat .num sup { color: var(--leaf-500); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(3) { border-left: 0; padding-left: 0; } }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; }
.testi-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 36px) / 3); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 10px 2px 30px; }
.testi-track::-webkit-scrollbar { display: none; }
.testi { scroll-snap-align: start; background: #fff; border-radius: var(--radius); padding: 34px; display: flex; flex-direction: column; gap: 26px; box-shadow: inset 0 0 0 1px var(--line); transition: transform .5s var(--ease), box-shadow .5s; }
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi.feature { background: var(--forest-900); color: #fff; }
.testi.feature blockquote { color: rgba(255,255,255,.88); }
.testi.feature .who span { color: rgba(255,255,255,.55); }
.stars { display: flex; gap: 3px; color: #f5b83d; }
.stars svg { width: 18px; height: 18px; }
.testi blockquote { margin: 0; font-family: var(--font-display); font-size: 21px; line-height: 1.4; letter-spacing: -.01em; color: var(--ink-2); flex: 1; }
.testi .who { display: flex; align-items: center; gap: 14px; }
.testi .who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi .who strong { display: block; font-size: 16px; }
.testi .who span { font-size: 14px; color: var(--muted); }
.testi .q-mark { width: 44px; height: 44px; color: var(--lime-400); }
.slider-nav { display: flex; gap: 10px; }
.slider-nav button { width: 56px; height: 56px; border-radius: 50%; border: 0; background: #fff; box-shadow: inset 0 0 0 1px var(--line); cursor: pointer; display: grid; place-items: center; transition: all .35s var(--ease); }
.slider-nav button:hover { background: var(--forest-900); color: #fff; box-shadow: none; }
.slider-nav svg { width: 22px; height: 22px; }
@media (max-width: 960px) { .testi-track { grid-auto-columns: calc((100% - 18px) / 2); } }
@media (max-width: 620px) { .testi-track { grid-auto-columns: 88%; } }

/* ---------- Areas ---------- */
.areas { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.area-chips span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); font-weight: 600; font-size: 15px; transition: all .3s; }
.area-chips span:hover { background: var(--forest-900); color: #fff; }
.area-chips span.primary { background: var(--lime-400); box-shadow: none; }
.area-chips svg { width: 15px; height: 15px; color: var(--leaf-600); }
.area-chips span:hover svg { color: var(--lime-400); }
.area-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1 / 1; background: var(--forest-900); }
.area-map img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.area-map .radar { position: absolute; inset: 0; display: grid; place-items: center; }
.area-map .radar i { position: absolute; border-radius: 50%; border: 1.5px solid rgba(159,216,75,.55); animation: radar 4s linear infinite; width: 20%; aspect-ratio: 1; opacity: 0; }
.area-map .radar i:nth-child(2) { animation-delay: 1.33s; } .area-map .radar i:nth-child(3) { animation-delay: 2.66s; }
@keyframes radar { 0% { width: 10%; opacity: 1; } 100% { width: 95%; opacity: 0; } }
.area-map .pin { position: relative; z-index: 2; background: #fff; border-radius: 20px; padding: 16px 20px; display: flex; gap: 12px; align-items: center; box-shadow: var(--shadow-lg); }
.area-map .pin .fc-ic { width: 46px; height: 46px; border-radius: 14px; background: var(--lime-400); display: grid; place-items: center; color: var(--forest-950); }
.area-map .pin strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.1; }
.area-map .pin span { font-size: 13px; color: var(--muted); }
@media (max-width: 960px) { .areas { grid-template-columns: 1fr; } .area-map { aspect-ratio: 4/3; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--leaf-600); color: #fff; padding: clamp(50px, 7vw, 100px) clamp(28px, 6vw, 90px); isolation: isolate; }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(6,35,26,.96) 0%, rgba(10,53,38,.88) 45%, rgba(10,53,38,.35) 100%); }
.cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: end; }
.cta-inner h2 { font-size: clamp(40px, 5.6vw, 80px); }
.cta-band em.accent { color: var(--lime-400); }
.cta-contacts { display: grid; gap: 12px; }
.cta-contact { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 20px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: inset 0 0 0 1px var(--line-light); transition: all .4s var(--ease); }
.cta-contact:hover { background: var(--lime-400); color: var(--forest-950); transform: translateX(6px); }
.cta-contact:hover small { color: var(--forest-800); }
.cta-contact .ic { width: 50px; height: 50px; border-radius: 50%; background: var(--lime-400); color: var(--forest-950); display: grid; place-items: center; flex: none; transition: all .4s; }
.cta-contact:hover .ic { background: var(--forest-950); color: var(--lime-400); }
.cta-contact .ic svg { width: 22px; height: 22px; }
.cta-contact small { display: block; font-size: 13px; color: rgba(255,255,255,.6); }
.cta-contact strong { font-size: clamp(18px, 2vw, 23px); word-break: break-all; }
@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-950); color: rgba(255,255,255,.7); padding-top: clamp(70px, 9vw, 120px); margin-top: var(--section); position: relative; overflow: hidden; }
.site-footer.flush { margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; padding-bottom: 70px; }
.footer-brand p { margin: 22px 0 28px; max-width: 340px; font-size: 15.5px; }
.site-footer .logo { background: #fff; padding: 10px 18px; border-radius: 20px; }
.site-footer .logo img { height: 96px; }
.site-footer h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; font-weight: 700; margin-bottom: 22px; }
.footer-links { display: grid; gap: 12px; font-size: 15.5px; }
.footer-links a { transition: color .3s, padding .3s; }
.footer-links a:hover { color: var(--lime-400); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--lime-400); flex: none; margin-top: 4px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line-light); transition: all .3s; }
.socials a:hover { background: var(--lime-400); color: var(--forest-950); box-shadow: none; }
.socials svg { width: 18px; height: 18px; }
.footer-word { font-family: var(--font-display); font-size: clamp(70px, 17vw, 260px); line-height: 1.05; padding-bottom: 10px; letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.12); white-space: nowrap; text-align: center; user-select: none; overflow: hidden; }
.footer-word i { color: rgba(159,216,75,.1); -webkit-text-stroke: 1px rgba(159,216,75,.35); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 26px 0; border-top: 1px solid var(--line-light); font-size: 14px; position: relative; z-index: 2; }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; } }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); overflow: hidden; }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 26px; }
.crumbs a:hover { color: var(--leaf-600); }
.crumbs svg { width: 14px; height: 14px; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: end; }
.page-hero h1 { font-size: clamp(48px, 7.4vw, 110px); line-height: .96; letter-spacing: -.04em; }
.page-hero .lead { max-width: 480px; }
.page-hero-media { margin-top: clamp(40px, 6vw, 70px); position: relative; border-radius: var(--radius-lg); overflow: hidden; height: clamp(300px, 42vw, 560px); }
.page-hero-media img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.page-hero-media .phm-badge { position: absolute; bottom: 24px; left: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.page-hero-media .phm-badge span { background: rgba(255,255,255,.9); backdrop-filter: blur(10px); padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.page-hero-media .phm-badge svg { width: 16px; height: 16px; color: var(--leaf-600); }
@media (max-width: 860px) { .page-hero-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Services page ---------- */
.tabs { display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 6px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.tabs button { border: 0; background: transparent; padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; color: var(--muted); transition: all .35s var(--ease); }
.tabs button:hover { color: var(--ink); }
.tabs button.active { background: var(--forest-900); color: #fff; }
.tabs button .count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; margin-left: 6px; border-radius: 999px; background: var(--mint-100); color: var(--leaf-600); font-size: 12px; }
.tabs button.active .count { background: var(--lime-400); color: var(--forest-950); }
@media (max-width: 620px) { .tabs { border-radius: 22px; } .tabs button { flex: 1 1 auto; padding: 10px 14px; } }

.svc-rows { display: grid; gap: 20px; margin-top: 50px; }
.svc-row { display: grid; grid-template-columns: 90px 1.1fr 1fr 1.1fr; gap: 34px; align-items: center; background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .5s, transform .5s var(--ease), opacity .4s; }
.svc-row:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-row.hidden { display: none; }
.svc-row .sr-num { font-family: var(--font-display); font-size: 44px; font-style: italic; color: var(--leaf-500); text-align: center; line-height: 1; }
.svc-row .sr-cat { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--leaf-600); margin-bottom: 10px; display: block; }
.svc-row h3 { font-size: clamp(26px, 2.4vw, 34px); margin-bottom: 10px; }
.svc-row p { color: var(--muted); font-size: 15.5px; }
.svc-row .check-list { gap: 9px; font-size: 15px; }
.svc-row .check-list li::before { width: 20px; height: 20px; background-size: 12px; }
.svc-row .sr-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.svc-row .sr-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc-row:hover .sr-img img { transform: scale(1.07); }
@media (max-width: 1060px) { .svc-row { grid-template-columns: 70px 1fr 1fr; } .svc-row .sr-img { grid-column: 2 / -1; grid-row: 1; aspect-ratio: 16/7; } .svc-row .sr-num { grid-row: 1 / span 2; align-self: start; } }
@media (max-width: 680px) { .svc-row { grid-template-columns: 1fr; gap: 18px; } .svc-row .sr-img { grid-column: auto; } .svc-row .sr-num { grid-row: auto; text-align: left; } }

.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); font-size: 15.5px; }
.compare th, .compare td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--forest-900); color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 22px; }
.compare thead th:nth-child(3) { background: var(--leaf-600); }
.compare thead th:nth-child(4) { background: var(--lime-400); color: var(--forest-950); }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; width: 20%; }
.compare tbody tr:hover td { background: var(--mint-50); }
.compare tbody tr:last-child td { border-bottom: 0; }
.yes, .no { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; }
.yes { background: var(--mint-100); color: var(--leaf-600); }
.no { color: rgba(13,31,23,.25); }
.yes svg, .no svg { width: 15px; height: 15px; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }
.table-scroll .compare { min-width: 640px; }

.note-card { display: flex; gap: 22px; align-items: center; background: var(--mint-100); border-radius: var(--radius); padding: 26px 30px; margin-top: 24px; }
.note-card .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--leaf-600); color: #fff; display: grid; place-items: center; flex: none; }
.note-card .ic svg { width: 26px; height: 26px; }
.note-card p { color: var(--ink-2); }
@media (max-width: 620px) { .note-card { flex-direction: column; align-items: flex-start; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border-radius: 20px; box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .4s, background .4s; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-weight: 700; font-size: 17.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--mint-100); position: relative; transition: all .4s var(--ease); }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; background: var(--forest-900); border-radius: 2px; transition: transform .4s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i { background: var(--lime-400); transform: rotate(180deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq .faq-body { padding: 0 28px 26px; color: var(--muted); }
.faq-aside { position: sticky; top: 120px; display: grid; gap: 26px; }
@media (max-width: 960px) { .faq-grid { grid-template-columns: 1fr; } .faq-aside { position: static; } }

/* ---------- About ---------- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.about-collage { position: relative; height: clamp(460px, 48vw, 640px); }
.about-collage .ac { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-collage .ac img { width: 100%; height: 100%; object-fit: cover; }
.about-collage .ac-1 { left: 0; top: 0; width: 62%; height: 72%; }
.about-collage .ac-2 { right: 0; bottom: 0; width: 52%; height: 58%; border: 8px solid var(--cream); }
.about-collage .ac-badge { position: absolute; left: 8%; bottom: 4%; width: 170px; height: 170px; border-radius: 50%; background: var(--forest-900); color: #fff; display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-lg); padding: 20px; }
.about-collage .ac-badge strong { font-family: var(--font-display); font-size: 46px; color: var(--lime-400); line-height: 1; display: block; font-weight: 500; }
.about-collage .ac-badge span { font-size: 13px; line-height: 1.3; }
.sig { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
.sig .leafy { width: 56px; height: 56px; border-radius: 50%; background: var(--forest-900); display: grid; place-items: center; }
.sig .leafy svg { width: 30px; }
.sig strong { font-family: var(--font-display); font-size: 22px; font-style: italic; font-weight: 500; display: block; }
.sig span { font-size: 14px; color: var(--muted); }
@media (max-width: 960px) { .about-intro { grid-template-columns: 1fr; } }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { background: rgba(255,255,255,.04); border-radius: var(--radius); padding: 36px 32px; box-shadow: inset 0 0 0 1px var(--line-light); transition: background .5s, transform .5s var(--ease); position: relative; overflow: hidden; }
.value:hover { background: rgba(159,216,75,.08); transform: translateY(-6px); }
.value .v-letter { font-family: var(--font-display); font-size: 120px; line-height: .8; font-style: italic; color: transparent; -webkit-text-stroke: 1px rgba(159,216,75,.4); position: absolute; right: 20px; top: 20px; }
.value .wi-ic { width: 60px; height: 60px; border-radius: 18px; background: var(--lime-400); color: var(--forest-950); display: grid; place-items: center; margin-bottom: 60px; }
.value .wi-ic svg { width: 28px; height: 28px; }
.value h3 { font-size: 28px; margin-bottom: 10px; }
.value p { color: rgba(255,255,255,.64); font-size: 15.5px; }
@media (max-width: 960px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .values { grid-template-columns: 1fr; } }

.eco { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.eco-media { position: relative; min-height: 460px; }
.eco-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.eco-body { padding: clamp(36px, 5vw, 70px); display: grid; gap: 24px; align-content: center; }
@media (max-width: 860px) { .eco { grid-template-columns: 1fr; } .eco-media { min-height: 300px; } }

.guarantee { text-align: center; max-width: 880px; margin: 0 auto; display: grid; justify-items: center; gap: 26px; }
.seal { width: 150px; height: 150px; position: relative; display: grid; place-items: center; }
.seal svg.ring { position: absolute; inset: 0; animation: spin 20s linear infinite; }
.seal svg.ring text { font-size: 10.5px; font-weight: 800; letter-spacing: 0; fill: var(--forest-800); font-family: var(--font-body); }
.seal .core { width: 84px; height: 84px; border-radius: 50%; background: var(--lime-400); display: grid; place-items: center; color: var(--forest-950); }
.seal .core svg { width: 40px; height: 40px; }

/* ---------- Room checklist planner ---------- */
.planner { display: grid; grid-template-columns: 290px 1fr; gap: 18px; }
.planner-top { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.planner-label { font-weight: 700; color: var(--ink-2); }
.planner-rooms { display: grid; gap: 10px; align-content: start; }
.room-btn { display: flex; align-items: center; gap: 14px; width: 100%; padding: 12px 16px 12px 12px; border: 0; border-radius: 20px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); cursor: pointer; text-align: left; font-weight: 700; font-size: 16px; transition: all .4s var(--ease); }
.room-btn:hover { transform: translateX(4px); box-shadow: inset 0 0 0 1.5px var(--leaf-500); }
.room-btn small { display: block; font-size: 13px; font-weight: 600; color: var(--muted); }
.room-btn .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--mint-100); color: var(--leaf-600); display: grid; place-items: center; flex: none; transition: all .4s; }
.room-btn .ic svg { width: 22px; height: 22px; }
.room-btn.active { background: var(--forest-900); color: #fff; box-shadow: var(--shadow); transform: none; }
.room-btn.active small { color: rgba(255,255,255,.6); }
.room-btn.active .ic { background: var(--lime-400); color: var(--forest-950); }
.planner-panels { position: relative; min-width: 0; }
.planner-panel { display: none; grid-template-columns: .85fr 1.15fr; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow), inset 0 0 0 1px var(--line); min-height: 100%; }
.planner-panel.active { display: grid; animation: stepIn .6s var(--ease); }
.pp-media { position: relative; min-height: 440px; }
.pp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pp-score { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 20px; background: rgba(6,35,26,.66); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: #fff; font-size: 14px; line-height: 1.3; }
.pp-score strong { font-family: var(--font-display); font-weight: 500; font-size: 44px; line-height: 1; color: var(--lime-400); white-space: nowrap; }
.pp-score strong span:last-child { color: rgba(255,255,255,.55); font-size: .55em; }
.pp-score > span { flex: 1; display: grid; gap: 8px; }
.meter { display: block; height: 6px; border-radius: 6px; background: rgba(255,255,255,.18); overflow: hidden; }
.meter span { display: block; height: 100%; width: 0; background: var(--lime-400); border-radius: inherit; transition: width .8s var(--ease); }
.pp-body { padding: clamp(26px, 3.4vw, 46px); display: grid; gap: 22px; align-content: start; }
.pp-body h3 { font-size: clamp(30px, 3vw, 42px); }
.task-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.task { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 500; line-height: 1.45; transition: opacity .45s var(--ease); }
.task i { flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--leaf-500); color: #fff; display: grid; place-items: center; transition: all .45s var(--ease); }
.task i svg { width: 13px; height: 13px; stroke-width: 3.4; transition: transform .45s var(--ease); }
.task b { display: inline-block; margin-left: 4px; padding: 1px 8px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .04em; background: var(--mint-100); color: var(--leaf-600); vertical-align: 1px; white-space: nowrap; }
.task[data-l="3"] b { background: rgba(159,216,75,.3); color: var(--forest-800); }
.task.off { opacity: .38; }
.task.off i { background: transparent; box-shadow: inset 0 0 0 1.5px rgba(13,31,23,.3); }
.task.off i svg { transform: scale(0); }
@media (max-width: 1060px) { .planner-panel { grid-template-columns: 1fr; } .pp-media { min-height: 240px; } }
@media (max-width: 860px) {
  .planner { grid-template-columns: 1fr; }
  .planner-rooms { display: flex; overflow-x: auto; scrollbar-width: none; padding: 4px var(--gutter) 8px; margin: 0 calc(var(--gutter) * -1); }
  .planner-rooms::-webkit-scrollbar { display: none; }
  .room-btn { width: auto; flex: none; }
  .room-btn:hover { transform: none; }
}
@media (max-width: 620px) { .task-list { grid-template-columns: 1fr; } .planner-top .tabs { width: 100%; } }

.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.addon { position: relative; padding: 34px 30px; border-radius: var(--radius); background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line-light); display: grid; gap: 10px; align-content: start; transition: background .5s, transform .5s var(--ease); }
.addon:hover { background: rgba(159,216,75,.08); transform: translateY(-6px); }
.addon .wi-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--lime-400); color: var(--forest-950); display: grid; place-items: center; margin-bottom: 26px; }
.addon .wi-ic svg { width: 26px; height: 26px; }
.addon h3 { font-size: 26px; }
.addon p { color: rgba(255,255,255,.64); font-size: 15.5px; }
.addon-tag { justify-self: start; margin-top: 10px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--lime-400); padding: 6px 12px; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(159,216,75,.35); }
@media (max-width: 960px) { .addons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .addons { grid-template-columns: 1fr; } }

.tips { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.tip { padding: 34px 26px 10px 0; display: grid; gap: 10px; align-content: start; }
.tip + .tip { padding-left: 26px; border-left: 1px solid var(--line); }
.tip-n { font-family: var(--font-display); font-style: italic; font-size: 40px; line-height: 1; color: var(--leaf-500); margin-bottom: 14px; }
.tip h3 { font-size: 24px; }
.tip p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 960px) { .tips { grid-template-columns: 1fr 1fr; } .tip:nth-child(3) { border-left: 0; padding-left: 0; } }
@media (max-width: 560px) { .tips { grid-template-columns: 1fr; } .tip + .tip { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.c-card { display: flex; gap: 18px; align-items: center; background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: inset 0 0 0 1px var(--line); transition: all .45s var(--ease); }
a.c-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.c-card .ic { width: 60px; height: 60px; border-radius: 18px; background: var(--forest-900); color: var(--lime-400); display: grid; place-items: center; flex: none; transition: all .4s; }
a.c-card:hover .ic { background: var(--lime-400); color: var(--forest-950); }
.c-card .ic svg { width: 26px; height: 26px; }
.c-card small { display: block; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.c-card strong { font-size: clamp(18px, 1.8vw, 22px); word-break: break-word; }
.hours { background: var(--forest-900); color: #fff; border-radius: var(--radius); padding: 30px; }
.hours h3 { font-size: 26px; margin-bottom: 18px; }
.hours li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line-light); font-size: 15.5px; }
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { color: var(--lime-400); font-weight: 700; }
.hours .open-now { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; background: rgba(159,216,75,.14); color: var(--lime-400); padding: 7px 14px; border-radius: 999px; margin-bottom: 14px; }

.quote-form { background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 54px); box-shadow: var(--shadow); position: relative; }
.form-progress { display: flex; gap: 8px; margin-bottom: 34px; }
.form-progress span { flex: 1; height: 5px; border-radius: 5px; background: var(--mint-100); position: relative; overflow: hidden; }
.form-progress span::after { content: ""; position: absolute; inset: 0; background: var(--leaf-500); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.form-progress span.done::after { transform: scaleX(1); }
.form-step { display: none; gap: 26px; animation: stepIn .6s var(--ease); }
.form-step.active { display: grid; }
@keyframes stepIn { from { opacity: 0; transform: translateX(24px); } }
.form-step h3 { font-size: clamp(28px, 3vw, 38px); }
.form-step .step-label { font-size: 13px; font-weight: 800; letter-spacing: .14em; color: var(--leaf-600); text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; }
.choice label { display: flex; align-items: center; gap: 12px; padding: 15px 16px; border-radius: 16px; box-shadow: inset 0 0 0 1.5px var(--line); cursor: pointer; font-weight: 600; font-size: 15px; line-height: 1.25; transition: all .3s var(--ease); min-height: 64px; }
.choice label:hover { box-shadow: inset 0 0 0 1.5px var(--leaf-500); }
.choice label .ck { width: 22px; height: 22px; border-radius: 7px; box-shadow: inset 0 0 0 1.5px rgba(13,31,23,.25); flex: none; display: grid; place-items: center; transition: all .3s; }
.choice input[type=radio] + label .ck { border-radius: 50%; }
.choice label .ck svg { width: 13px; height: 13px; color: var(--forest-950); opacity: 0; transform: scale(.4); transition: all .3s var(--ease); }
.choice input:checked + label { background: var(--mint-50); box-shadow: inset 0 0 0 2px var(--leaf-500); }
.choice input:checked + label .ck { background: var(--lime-400); box-shadow: none; }
.choice input:checked + label .ck svg { opacity: 1; transform: none; }
.choice input:focus-visible + label { outline: 3px solid var(--lime-400); outline-offset: 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea { width: 100%; padding: 16px 18px; border-radius: 14px; border: 0; background: var(--cream); box-shadow: inset 0 0 0 1.5px transparent; font-size: 16px; transition: box-shadow .3s, background .3s; appearance: none; -webkit-appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3526' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 44px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; box-shadow: inset 0 0 0 2px var(--leaf-500); }
.field textarea { min-height: 120px; resize: vertical; }
.field .err { font-size: 13px; color: #c0392b; display: none; }
.field.invalid input { box-shadow: inset 0 0 0 2px #e07a6f; }
.field.invalid .err { display: block; }
.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 8px; }
.form-nav .btn-back { background: none; border: 0; font-weight: 700; color: var(--muted); cursor: pointer; display: inline-flex; gap: 8px; align-items: center; padding: 10px 0; }
.form-nav .btn-back:hover { color: var(--ink); }
.form-nav .btn-back svg { width: 18px; }
.form-hint { font-size: 13.5px; color: var(--muted); }
.form-success { display: none; text-align: center; justify-items: center; gap: 20px; padding: 20px 0; }
.form-success.show { display: grid; animation: stepIn .6s var(--ease); }
.form-success .seal .core { width: 100px; height: 100px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 460px; box-shadow: inset 0 0 0 1px var(--line); background: var(--mint-100); position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.7) hue-rotate(-10deg); }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile call bar ---------- */
.call-fab { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: none; align-items: center; gap: 10px; background: var(--lime-400); color: var(--forest-950); padding: 14px 20px 14px 14px; border-radius: 999px; font-weight: 800; box-shadow: 0 16px 40px -10px rgba(6,35,26,.5); transform: translateY(120px); transition: transform .5s var(--ease); }
.call-fab.show { transform: none; }
.call-fab .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--forest-950); color: var(--lime-400); display: grid; place-items: center; }
.call-fab .ic svg { width: 18px; height: 18px; }
@media (max-width: 760px) { .call-fab { display: inline-flex; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }
.split-line { display: block; overflow: hidden; padding: 0 .12em .2em 0; margin: 0 -.12em -.2em 0; }
.split-line > span { display: inline-block; transform: translateY(105%); transition: transform 1.1s var(--ease); }
.in .split-line > span, .split-line.in > span { transform: none; }
.split-line:nth-child(2) > span { transition-delay: .1s; } .split-line:nth-child(3) > span { transition-delay: .2s; }
.img-reveal { clip-path: inset(100% 0 0 0); transition: clip-path 1.4s var(--ease); }
.img-reveal.in { clip-path: inset(0 0 0 0); }

.no-js .reveal, .no-js .split-line > span { opacity: 1; transform: none; }
.no-js .img-reveal { clip-path: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .split-line > span { opacity: 1; transform: none; }
  .img-reveal { clip-path: none; }
}

/* ---------- Utilities ---------- */
.bg-paper { background: var(--paper); }
.bg-mint { background: var(--mint-50); }
.mt-s { margin-top: 20px; } .mt-m { margin-top: 36px; } .mt-l { margin-top: 60px; }
.flex-between { display: flex; justify-content: space-between; align-items: end; gap: 30px; flex-wrap: wrap; }
.rounded-top { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.grain::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
