/* ============================================
   DECORLANE — Luxury Interior Design, Kolkata
   Pure HTML5 + CSS3. Vanilla JS only.
   ============================================ */

:root {
  --bg-white: #FFFFFF;
  --bg-off-white: #F9F9F7;
  --bg-light-grey: #F0EFEC;
  --text-charcoal: #1A1A1A;
  --text-muted: #5A5A5A;
  --text-faint: #9A9A9A;
  --accent-orange: #FF6B35;
  --accent-orange-dark: #E5562A;
  --border-delicate: rgba(26, 26, 26, 0.08);
  --border-strong: rgba(26, 26, 26, 0.18);
  --glass-fill: rgba(255, 255, 255, 0.72);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.04);
  --shadow-lift: 0 30px 60px rgba(0, 0, 0, 0.08);
  --shadow-deep: 0 40px 80px rgba(0, 0, 0, 0.12);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1440px;
  --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--accent-orange); color: #fff; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-charcoal);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 300; letter-spacing: -0.02em; color: var(--text-charcoal); }
h1 { font-size: clamp(2.5rem, 5.5vw, 5.25rem); line-height: 1.05; letter-spacing: -0.035em; font-weight: 300; }
h2 { font-size: clamp(1.875rem, 4vw, 3.5rem); line-height: 1.15; letter-spacing: -0.025em; font-weight: 300; }
h3 { font-size: clamp(1.375rem, 2.4vw, 2rem); line-height: 1.25; font-weight: 400; }
h4 { font-size: clamp(1.125rem, 1.6vw, 1.375rem); line-height: 1.3; font-weight: 500; }
p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; }
.lead { font-size: clamp(1.125rem, 1.5vw, 1.3125rem); line-height: 1.65; color: var(--text-muted); max-width: 60ch; }
.overline { display: inline-block; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 600; color: var(--accent-orange); margin-bottom: 1.5rem; }
.serif-italic { font-family: var(--font-heading); font-style: italic; font-weight: 300; }
em.brand-accent { font-style: italic; color: var(--accent-orange); font-weight: 400; }

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 4rem); }
section { padding: clamp(4rem, 9vw, 8.5rem) 0; position: relative; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-header { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .overline, .section-header.center .lead { margin-left: auto; margin-right: auto; }
.bg-off-white { background: var(--bg-off-white); }
.bg-light-grey { background: var(--bg-light-grey); }
.bg-charcoal { background: var(--text-charcoal); color: #fff; }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: #fff; }
.bg-charcoal p { color: rgba(255,255,255,0.7); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.625rem; padding: 1rem 1.75rem; border-radius: 999px; font-family: var(--font-body); font-weight: 500; font-size: 0.9375rem; letter-spacing: -0.005em; transition: var(--transition); cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--text-charcoal); color: #fff; }
.btn-primary:hover { background: var(--accent-orange); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255, 107, 53, 0.32); }
.btn-accent { background: var(--accent-orange); color: #fff; }
.btn-accent:hover { background: var(--accent-orange-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255, 107, 53, 0.4); }
.btn-ghost { background: transparent; color: var(--text-charcoal); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--text-charcoal); color: #fff; border-color: var(--text-charcoal); }
.btn-link { padding: 0; background: transparent; color: var(--text-charcoal); font-weight: 500; border-bottom: 1px solid var(--text-charcoal); border-radius: 0; }
.btn-link:hover { color: var(--accent-orange); border-color: var(--accent-orange); }
.btn .arrow { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* HEADER / NAV */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0.875rem 0; transition: var(--transition-fast); }
.site-header.scrolled { background: var(--glass-fill); backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4); border-bottom: 1px solid var(--border-delicate); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.625rem; font-family: var(--font-heading); font-weight: 500; font-size: 1.375rem; letter-spacing: -0.02em; color: var(--text-charcoal); text-decoration: none; }
.brand-logo { height: 36px; width: auto; display: block; }
.site-header .brand-logo { height: 34px; }
.site-footer .brand-logo { height: 42px; filter: brightness(0) invert(1); opacity: 0.92; }
@media (max-width: 768px) { .site-header .brand-logo { height: 28px; } }
.brand-dot { width: 10px; height: 10px; background: var(--accent-orange); border-radius: 50%; }
.brand em { font-style: italic; font-weight: 300; color: var(--accent-orange); }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: 0.9375rem; font-weight: 500; color: var(--text-charcoal); position: relative; padding: 0.5rem 0; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-orange); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--border-strong); }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--text-charcoal); position: relative; transition: var(--transition-fast); }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--text-charcoal); transition: var(--transition-fast); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* MEGA MENU (services) */
.has-mega { position: relative; }
.mega-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-8px); width: min(720px, 90vw); background: #fff; border: 1px solid var(--border-delicate); border-radius: var(--radius-md); box-shadow: var(--shadow-lift); padding: 1.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; opacity: 0; visibility: hidden; transition: var(--transition-fast); }
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu a { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.875rem 1rem; border-radius: var(--radius-sm); transition: background 0.2s; }
.mega-menu a:hover { background: var(--bg-off-white); }
.mega-menu a strong { font-family: var(--font-heading); font-size: 1rem; font-weight: 500; color: var(--text-charcoal); }
.mega-menu a span { font-size: 0.8125rem; color: var(--text-muted); }
.mega-menu a:hover strong { color: var(--accent-orange); }

/* MOBILE NAV DRAWER */
.mobile-drawer { display: none; }
.mobile-drawer.open {
  display: flex;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--bg-white);
  z-index: 999;
  padding: 5rem 5vw 3rem;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  animation: drawerIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes drawerIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
.mobile-drawer a { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 300; letter-spacing: -0.02em; color: var(--text-charcoal); padding: 0.5rem 0; border-bottom: 1px solid var(--border-delicate); }
.mobile-drawer a:hover { color: var(--accent-orange); }
.mobile-drawer .btn { align-self: flex-start; font-size: 0.9375rem; margin-top: 1rem; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { z-index: 1000; background: var(--bg-white); }
body.menu-open .site-header.scrolled { background: var(--bg-white); }

/* HERO */
.hero { padding-top: 9rem; padding-bottom: 5rem; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.hero h1 { margin-bottom: 1.75rem; }
.hero h1 .accent-line { display: block; color: var(--accent-orange); font-style: italic; font-weight: 300; }
.hero-meta { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border-delicate); }
.hero-meta-item strong { font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; color: var(--text-charcoal); display: block; line-height: 1; }
.hero-meta-item span { font-size: 0.8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 0.5rem; display: block; }
.hero-actions { display: flex; gap: 0.875rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-deep); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.hero-visual:hover img { transform: scale(1.04); }
.hero-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: var(--glass-fill); backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4); padding: 1.25rem 1.5rem; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.5); display: flex; align-items: center; gap: 1rem; }
.hero-badge .icon { width: 44px; height: 44px; background: var(--accent-orange); border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; flex-shrink: 0; }
.hero-badge .text { min-width: 0; flex: 1; }
.hero-badge strong { display: block; font-family: var(--font-heading); font-size: 1rem; font-weight: 500; color: var(--text-charcoal); }
.hero-badge span { font-size: 0.8125rem; color: var(--text-muted); }

/* CARDS / GRIDS */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card { background: #fff; border: 1px solid var(--border-delicate); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(26,26,26,0.14); }
.card .icon-circle { width: 56px; height: 56px; border-radius: 999px; background: var(--bg-off-white); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: var(--transition-fast); color: var(--text-charcoal); }
.card:hover .icon-circle { background: var(--accent-orange); color: #fff; }
.card h3 { margin-bottom: 0.75rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-weight: 500; font-size: 0.9375rem; color: var(--text-charcoal); }
.card .card-link .arrow { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.card:hover .card-link { color: var(--accent-orange); }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* SERVICE CARD WITH IMAGE */
.service-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-delicate); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.service-card .image { aspect-ratio: 4/3; overflow: hidden; }
.service-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.service-card:hover .image img { transform: scale(1.06); }
.service-card .body { padding: 1.75rem 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.service-card .body h3 { margin-bottom: 0.625rem; }
.service-card .body p { font-size: 0.9375rem; }
.service-card .card-link { margin-top: auto; padding-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.875rem; color: var(--text-charcoal); text-transform: uppercase; letter-spacing: 0.12em; }
.service-card:hover .card-link { color: var(--accent-orange); }

/* WHY CHOOSE US (bento) */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.bento .tile { background: #fff; border: 1px solid var(--border-delicate); border-radius: var(--radius-lg); padding: 2.25rem; transition: var(--transition); }
.bento .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.bento .tile.large { grid-column: span 7; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; background: var(--text-charcoal); color: #fff; }
.bento .tile.large h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2.125rem); font-weight: 300; line-height: 1.2; }
.bento .tile.large p { color: rgba(255,255,255,0.7); }
.bento .tile.med { grid-column: span 5; }
.bento .tile.sm { grid-column: span 4; }
.bento .tile.sm-wide { grid-column: span 8; background: var(--accent-orange); color: #fff; }
.bento .tile.sm-wide h3, .bento .tile.sm-wide p { color: #fff; }
.bento .tile .num { font-family: var(--font-heading); font-size: 3rem; font-weight: 300; color: var(--accent-orange); line-height: 1; margin-bottom: 1rem; }
.bento .tile.large .num, .bento .tile.sm-wide .num { color: #fff; opacity: 0.4; }

/* DESIGN PROCESS / TIMELINE */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; }
.timeline::before { content: ''; position: absolute; top: 28px; left: 5%; right: 5%; height: 1px; background: var(--border-delicate); z-index: 0; }
.process-step { position: relative; z-index: 1; }
.process-step .num-circle { width: 56px; height: 56px; border-radius: 999px; background: #fff; border: 1px solid var(--border-delicate); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.125rem; font-weight: 500; color: var(--text-charcoal); margin-bottom: 1.5rem; transition: var(--transition); }
.process-step:hover .num-circle { background: var(--accent-orange); color: #fff; border-color: var(--accent-orange); transform: scale(1.08); }
.process-step h4 { margin-bottom: 0.5rem; font-size: 1.125rem; font-weight: 500; }
.process-step p { font-size: 0.9375rem; }

/* PORTFOLIO MASONRY */
.masonry { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 140px; gap: 1.25rem; }
.masonry .item { overflow: hidden; border-radius: var(--radius-lg); position: relative; cursor: pointer; }
.masonry .item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.masonry .item:hover img { transform: scale(1.05); }
.masonry .item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%); opacity: 0; transition: opacity 0.4s; }
.masonry .item:hover::after { opacity: 1; }
.masonry .item .label { position: absolute; bottom: 1.25rem; left: 1.5rem; color: #fff; opacity: 0; transform: translateY(8px); transition: var(--transition); z-index: 2; }
.masonry .item .label strong { display: block; font-family: var(--font-heading); font-size: 1.125rem; font-weight: 500; }
.masonry .item .label span { font-size: 0.8125rem; opacity: 0.85; letter-spacing: 0.08em; text-transform: uppercase; }
.masonry .item:hover .label { opacity: 1; transform: translateY(0); }
.masonry .a { grid-column: span 7; grid-row: span 3; }
.masonry .b { grid-column: span 5; grid-row: span 2; }
.masonry .c { grid-column: span 5; grid-row: span 2; }
.masonry .d { grid-column: span 4; grid-row: span 2; }
.masonry .e { grid-column: span 4; grid-row: span 2; }
.masonry .f { grid-column: span 4; grid-row: span 2; }

/* ROOM-WISE */
.rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.room-card { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.room-card:hover img { transform: scale(1.06); }
.room-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%); }
.room-card .label { position: absolute; left: 1.25rem; bottom: 1.25rem; right: 1.25rem; color: #fff; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.room-card .label strong { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; }
.room-card .label .arrow-pill { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,0.16); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.room-card:hover .arrow-pill { background: var(--accent-orange); transform: translateX(2px); }

/* STYLES CHIPS */
.style-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.style-chip { padding: 1.5rem; border: 1px solid var(--border-delicate); border-radius: var(--radius-md); background: #fff; transition: var(--transition); cursor: pointer; text-align: left; }
.style-chip:hover { background: var(--text-charcoal); color: #fff; border-color: var(--text-charcoal); transform: translateY(-3px); }
.style-chip h4 { font-size: 1.0625rem; margin-bottom: 0.25rem; transition: inherit; }
.style-chip:hover h4 { color: #fff; }
.style-chip span { font-size: 0.8125rem; color: var(--text-muted); }
.style-chip:hover span { color: rgba(255,255,255,0.7); }

/* AREAS WE SERVE */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem 2rem; list-style: none; }
.areas-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border-delicate); font-size: 0.9375rem; display: flex; align-items: center; gap: 0.625rem; font-weight: 500; }
.areas-list li::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--accent-orange); flex-shrink: 0; }
.areas-visual { aspect-ratio: 5/4; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-deep); }
.areas-visual img { width: 100%; height: 100%; object-fit: cover; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial { background: #fff; border: 1px solid var(--border-delicate); border-radius: var(--radius-lg); padding: 2.25rem; transition: var(--transition); }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.testimonial .stars { color: var(--accent-orange); letter-spacing: 0.2em; margin-bottom: 1.25rem; font-size: 0.875rem; }
.testimonial blockquote { font-family: var(--font-heading); font-size: 1.1875rem; font-weight: 300; line-height: 1.45; color: var(--text-charcoal); margin-bottom: 1.75rem; letter-spacing: -0.01em; }
.testimonial .author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial .avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--bg-off-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 500; font-size: 1rem; color: var(--text-charcoal); }
.testimonial .author strong { display: block; font-size: 0.9375rem; font-weight: 500; }
.testimonial .author span { font-size: 0.8125rem; color: var(--text-muted); }

/* FAQ ACCORDION */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-delicate); }
.faq-q { width: 100%; text-align: left; padding: 1.75rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; font-family: var(--font-heading); font-size: clamp(1.0625rem, 1.6vw, 1.3125rem); font-weight: 400; color: var(--text-charcoal); letter-spacing: -0.01em; transition: color 0.3s; }
.faq-q:hover { color: var(--accent-orange); }
.faq-q .plus { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition-fast); position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--text-charcoal); transition: var(--transition-fast); }
.faq-q .plus::before { width: 12px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-q { color: var(--accent-orange); }
.faq-item.open .faq-q .plus { background: var(--accent-orange); border-color: var(--accent-orange); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: #fff; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-a-inner { padding: 0 0 1.75rem; max-width: 80ch; }
.faq-a-inner p { font-size: 1rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-card .image { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; }
.blog-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.blog-card:hover .image img { transform: scale(1.05); }
.blog-card .meta { display: flex; gap: 0.875rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 600; }
.blog-card .meta .tag { color: var(--accent-orange); }
.blog-card h3 { font-size: 1.25rem; font-weight: 500; line-height: 1.35; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--accent-orange); }
.blog-card p { font-size: 0.9375rem; }

/* CONTACT CTA STRIP */
.cta-strip { background: var(--text-charcoal); color: #fff; border-radius: var(--radius-xl); padding: clamp(3rem, 6vw, 5.5rem); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -50%; right: -10%; width: 480px; height: 480px; border-radius: 999px; background: var(--accent-orange); filter: blur(120px); opacity: 0.3; }
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; font-size: clamp(1.75rem, 3.6vw, 3rem); }
.cta-strip h2 em { color: var(--accent-orange); font-style: italic; font-weight: 300; }
.cta-strip p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; margin-top: 1rem; }
.cta-strip .btn-primary { background: var(--accent-orange); }
.cta-strip .btn-primary:hover { background: #fff; color: var(--text-charcoal); }
.cta-strip .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-strip .btn-ghost:hover { background: #fff; color: var(--text-charcoal); border-color: #fff; }
.cta-strip .actions { display: flex; gap: 0.875rem; justify-content: flex-end; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--text-charcoal); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr; gap: 3rem; margin-bottom: 4rem; }
.site-footer .brand { color: #fff; font-size: 1.5rem; margin-bottom: 1.25rem; }
.site-footer h4 { color: #fff; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.5rem; font-weight: 600; font-family: var(--font-body); }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.site-footer a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; transition: color 0.3s; }
.site-footer a:hover { color: var(--accent-orange); }
.site-footer p.tagline { font-size: 0.9375rem; max-width: 320px; line-height: 1.65; }
.footer-contact { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-contact a { display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 1rem; }
.socials { display: flex; gap: 0.625rem; }
.socials a { width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.socials a:hover { background: var(--accent-orange); border-color: var(--accent-orange); color: #fff; }

/* CONTACT PAGE FORM */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: flex-start; }
.contact-info { position: sticky; top: 7rem; }
.contact-info .info-item { padding: 1.25rem 0; border-bottom: 1px solid var(--border-delicate); }
.contact-info .info-item .overline { margin-bottom: 0.5rem; font-size: 0.75rem; }
.contact-info .info-item strong { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 400; color: var(--text-charcoal); display: block; }
.contact-info .info-item p { font-size: 0.9375rem; margin-top: 0.25rem; }
form.inquiry { background: #fff; border: 1px solid var(--border-delicate); border-radius: var(--radius-xl); padding: clamp(1.75rem, 3.5vw, 3rem); display: flex; flex-direction: column; gap: 1.25rem; }
form.inquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { position: relative; }
.field label { display: block; font-size: 0.8125rem; font-weight: 500; color: var(--text-charcoal); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.field input, .field select, .field textarea { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border-delicate); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9375rem; color: var(--text-charcoal); background: var(--bg-off-white); transition: var(--transition-fast); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-orange); background: #fff; box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-status { font-size: 0.875rem; padding: 0.875rem 1rem; border-radius: var(--radius-sm); display: none; }
.form-status.success { display: block; background: rgba(34, 197, 94, 0.08); color: #15803d; border: 1px solid rgba(34, 197, 94, 0.2); }
.form-status.error { display: block; background: rgba(239, 68, 68, 0.08); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.2); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tier { background: #fff; border: 1px solid var(--border-delicate); border-radius: var(--radius-xl); padding: 2.5rem; display: flex; flex-direction: column; transition: var(--transition); }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.tier.featured { background: var(--text-charcoal); color: #fff; border-color: var(--text-charcoal); transform: translateY(-12px); box-shadow: var(--shadow-lift); position: relative; }
.tier.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent-orange); color: #fff; font-size: 0.75rem; padding: 0.375rem 0.875rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.tier h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.5rem; }
.tier.featured h3 { color: #fff; }
.tier .price { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 300; margin: 1.5rem 0 0.5rem; letter-spacing: -0.02em; line-height: 1; }
.tier .price .currency { font-size: 1.25rem; vertical-align: top; margin-right: 0.25rem; color: var(--text-muted); }
.tier.featured .price .currency { color: rgba(255,255,255,0.6); }
.tier .price-unit { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.tier.featured .price-unit { color: rgba(255,255,255,0.6); }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; flex: 1; }
.tier li { font-size: 0.9375rem; display: flex; align-items: flex-start; gap: 0.625rem; color: var(--text-muted); }
.tier.featured li { color: rgba(255,255,255,0.8); }
.tier li::before { content: ''; width: 18px; height: 18px; border-radius: 999px; background: var(--accent-orange); flex-shrink: 0; margin-top: 2px; display: inline-block; position: relative; }
.tier li::after { content: ''; position: absolute; width: 5px; height: 9px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg) translate(-2px, -5px); margin-left: 6px; margin-top: 4px; }
.tier .btn { width: 100%; justify-content: center; margin-top: auto; }
.tier.featured .btn-primary { background: var(--accent-orange); }
.tier.featured .btn-primary:hover { background: #fff; color: var(--text-charcoal); }

/* PAGE HERO (smaller variant for inner pages) */
.page-hero { padding-top: 9rem; padding-bottom: 4rem; }
.page-hero .breadcrumbs { display: flex; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.page-hero .breadcrumbs a:hover { color: var(--accent-orange); }
.page-hero .breadcrumbs span.sep { color: var(--text-faint); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 1.5rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-visual { aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.about-stats .stat { padding: 1.5rem; background: var(--bg-off-white); border-radius: var(--radius-md); }
.about-stats .stat strong { font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; display: block; line-height: 1; }
.about-stats .stat span { font-size: 0.8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.5rem; display: block; }

/* SERVICE DETAIL PAGE */
.service-detail-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.service-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.feature-pill { padding: 1.25rem 1.5rem; background: var(--bg-off-white); border-radius: var(--radius-md); border: 1px solid var(--border-delicate); }
.feature-pill strong { font-family: var(--font-heading); font-size: 1rem; font-weight: 500; display: block; margin-bottom: 0.25rem; }
.feature-pill span { font-size: 0.875rem; color: var(--text-muted); }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem 1.5rem; list-style: none; margin-top: 1.5rem; }
.includes-list li { padding: 0.625rem 0; border-bottom: 1px solid var(--border-delicate); font-size: 0.9375rem; display: flex; align-items: center; gap: 0.625rem; }
.includes-list li::before { content: '+'; color: var(--accent-orange); font-weight: 500; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* WHATSAPP FLOATING BUBBLE */
.wa-fab { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 95; display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.875rem 1.125rem 0.875rem 0.875rem; border-radius: 999px; background: #25D366; color: #fff; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.12); font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; letter-spacing: -0.005em; transition: var(--transition); text-decoration: none; }
.wa-fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 0, 0, 0.15); color: #fff; }
.wa-fab .wa-icon { width: 28px; height: 28px; border-radius: 999px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-fab .wa-icon svg { width: 18px; height: 18px; fill: #25D366; display: block; }
.wa-fab .wa-label { line-height: 1; }
.wa-fab .wa-pulse { position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: waPulse 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite; pointer-events: none; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); } 70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@media (max-width: 480px) { .wa-fab { right: 1rem; bottom: 1rem; padding: 0.75rem 0.875rem; font-size: 0.875rem; } .wa-fab .wa-label { display: none; } }

/* GOOGLE MAP EMBED */
.map-embed { aspect-ratio: 16/9; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border-delicate); margin-top: 3rem; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* BLOG POST ARTICLE */
.post-hero { padding-top: 9rem; padding-bottom: 3rem; }
.post-hero .post-meta { display: flex; gap: 1rem; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); font-weight: 600; margin-bottom: 1.5rem; }
.post-hero .post-meta .tag { color: var(--accent-orange); }
.post-hero h1 { max-width: 22ch; }
.post-hero .post-lead { font-size: clamp(1.125rem, 1.5vw, 1.375rem); line-height: 1.55; color: var(--text-muted); margin-top: 1.5rem; max-width: 65ch; }
.post-cover { aspect-ratio: 16/9; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 3.5rem; box-shadow: var(--shadow-soft); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body { max-width: 740px; margin: 0 auto; }
.post-body h2 { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 400; margin: 3rem 0 1.25rem; letter-spacing: -0.02em; }
.post-body h3 { font-size: 1.375rem; font-weight: 500; margin: 2.25rem 0 1rem; }
.post-body p { font-size: 1.0625rem; line-height: 1.75; color: var(--text-charcoal); margin-bottom: 1.25rem; }
.post-body p.muted { color: var(--text-muted); }
.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.25rem; padding-left: 0.5rem; }
.post-body li { font-size: 1.0625rem; line-height: 1.7; color: var(--text-charcoal); margin-bottom: 0.625rem; }
.post-body blockquote { border-left: 3px solid var(--accent-orange); padding: 0.25rem 1.5rem; margin: 2rem 0; font-family: var(--font-heading); font-size: 1.375rem; font-weight: 300; line-height: 1.5; color: var(--text-charcoal); font-style: italic; letter-spacing: -0.01em; }
.post-body figure { margin: 2.5rem 0; }
.post-body figure img { border-radius: var(--radius-lg); width: 100%; }
.post-body figcaption { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }
.post-body strong { color: var(--text-charcoal); font-weight: 600; }
.author-card { display: flex; align-items: center; gap: 1rem; padding: 2rem 0; border-top: 1px solid var(--border-delicate); border-bottom: 1px solid var(--border-delicate); margin: 3rem 0; }
.author-card .avatar { width: 56px; height: 56px; border-radius: 999px; background: var(--bg-off-white); overflow: hidden; }
.author-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-card .who strong { display: block; font-size: 1rem; font-weight: 500; color: var(--text-charcoal); }
.author-card .who span { font-size: 0.875rem; color: var(--text-muted); }
.related-posts { background: var(--bg-off-white); padding: clamp(4rem, 8vw, 6rem) 0; margin-top: 4rem; }

/* SERVICE PAGE — Ken-Burns hero media */
.hero-media { aspect-ratio: 16/9; border-radius: var(--radius-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-lift); margin-top: 2rem; background: var(--bg-off-white); }
.hero-media img, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media img.kb { animation: kenBurns 22s ease-in-out infinite alternate; }
@keyframes kenBurns { 0% { transform: scale(1.03) translate(0, 0); } 100% { transform: scale(1.15) translate(-2%, -1.5%); } }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%); pointer-events: none; }
.hero-media .play-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--glass-fill); backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4); padding: 0.875rem 1.25rem; border-radius: 999px; display: inline-flex; align-items: center; gap: 0.75rem; border: 1px solid rgba(255,255,255,0.55); z-index: 2; }
.hero-media .play-badge .p-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--accent-orange); flex-shrink: 0; box-shadow: 0 0 0 0 rgba(255,107,53,0.7); animation: kbPulse 1.8s infinite; }
@keyframes kbPulse { 0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.6); } 70% { box-shadow: 0 0 0 12px rgba(255,107,53,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); } }
.hero-media .play-badge strong { display: block; font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 500; color: var(--text-charcoal); line-height: 1.15; }
.hero-media .play-badge span { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); font-weight: 600; }
@media (max-width: 640px) { .hero-media .play-badge { bottom: 1rem; left: 1rem; padding: 0.625rem 1rem; gap: 0.5rem; } .hero-media .play-badge strong { font-size: 0.8125rem; } .hero-media .play-badge span { font-size: 0.625rem; letter-spacing: 0.12em; } }

/* GLOBAL */
.site-header { padding-top: 0.875rem; padding-bottom: 0.875rem; }

/* ============================================
   LEAD-GEN LANDING PAGE (/get-quote)
   High-intent, fast-closure. Reuses design system.
   ============================================ */
.lp-header { position: absolute; top: 0; left: 0; right: 0; z-index: 20; padding: 1.25rem 0; }
.lp-header .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lp-header .brand-logo { height: 34px; }
.lp-trust-line { display: flex; align-items: center; gap: 1rem; font-size: 0.8125rem; color: var(--text-charcoal); font-weight: 500; }
.lp-trust-line strong { color: var(--accent-orange); }
.lp-trust-line .divider { width: 1px; height: 16px; background: var(--border-strong); }
.lp-trust-line .stars { color: var(--accent-orange); letter-spacing: 0.15em; }
.lp-trust-line a { color: var(--text-charcoal); display: inline-flex; align-items: center; gap: 0.375rem; font-weight: 600; }
.lp-trust-line a:hover { color: var(--accent-orange); }
@media (max-width: 768px) { .lp-trust-line .divider, .lp-trust-line .rating-badge, .lp-trust-line .homes-badge { display: none; } .lp-trust-line { font-size: 0.75rem; } }

.lp-hero { position: relative; padding: 8rem 0 4.5rem; background: var(--bg-off-white); overflow: hidden; }
.lp-hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 620px; height: 620px; border-radius: 999px; background: radial-gradient(circle, rgba(255,107,53,0.16), transparent 60%); pointer-events: none; }
.lp-hero .container { position: relative; z-index: 1; }
.lp-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.lp-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.875rem; background: #fff; border: 1px solid var(--border-delicate); border-radius: 999px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-orange); margin-bottom: 1.75rem; }
.lp-badge .pulse-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent-orange); box-shadow: 0 0 0 0 rgba(255,107,53,0.7); animation: lpPulse 1.8s infinite; }
@keyframes lpPulse { 0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.6); } 70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); } }
.lp-hero h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); line-height: 1.03; letter-spacing: -0.03em; font-weight: 300; margin-bottom: 1.25rem; }
.lp-hero h1 em { font-style: italic; color: var(--accent-orange); font-weight: 300; }
.lp-hero .lp-sub { font-size: clamp(1rem, 1.4vw, 1.1875rem); line-height: 1.6; color: var(--text-muted); max-width: 52ch; margin-bottom: 1.75rem; }
.lp-hero .lp-usps { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.lp-hero .lp-usps li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--text-charcoal); font-weight: 500; }
.lp-hero .lp-usps li::before { content: ''; width: 22px; height: 22px; border-radius: 999px; background: var(--accent-orange); flex-shrink: 0; position: relative; }
.lp-hero .lp-usps li { position: relative; padding-left: 0; }
.lp-hero .lp-usps li .tick { position: absolute; left: 6px; top: 50%; transform: translateY(-50%); color: #fff; font-size: 0.75rem; line-height: 1; font-weight: 700; }

.lp-form { background: #fff; border-radius: var(--radius-xl); box-shadow: 0 30px 60px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04); padding: 2.25rem; border: 1px solid var(--border-delicate); position: relative; }
.lp-form::before { content: 'Free Consultation'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent-orange); color: #fff; font-size: 0.6875rem; padding: 0.375rem 0.875rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; white-space: nowrap; }
.lp-form h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 500; margin-bottom: 0.375rem; }
.lp-form p.lead-line { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.lp-form .field { margin-bottom: 1rem; }
.lp-form .field input, .lp-form .field select, .lp-form .field textarea { width: 100%; padding: 0.9375rem 1.125rem; border: 1.5px solid var(--border-delicate); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9375rem; background: var(--bg-off-white); transition: var(--transition-fast); }
.lp-form .field input:focus, .lp-form .field select:focus, .lp-form .field textarea:focus { outline: none; border-color: var(--accent-orange); background: #fff; box-shadow: 0 0 0 4px rgba(255,107,53,0.14); }
.lp-form .btn-submit { width: 100%; justify-content: center; padding: 1.125rem 1.5rem; font-size: 1rem; font-weight: 600; background: var(--accent-orange); color: #fff; border-radius: var(--radius-sm); box-shadow: 0 10px 24px rgba(255,107,53,0.28); }
.lp-form .btn-submit:hover { background: var(--accent-orange-dark); transform: translateY(-2px); box-shadow: 0 18px 32px rgba(255,107,53,0.36); }
.lp-form .btn-submit:disabled { opacity: 0.7; transform: none; cursor: wait; }
.lp-form .privacy { font-size: 0.6875rem; color: var(--text-faint); text-align: center; margin-top: 0.875rem; letter-spacing: 0.02em; }
.lp-form .lp-or { display: flex; align-items: center; gap: 0.75rem; margin: 1.25rem 0; }
.lp-form .lp-or::before, .lp-form .lp-or::after { content: ''; flex: 1; height: 1px; background: var(--border-delicate); }
.lp-form .lp-or span { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-faint); font-weight: 600; }
.lp-form .lp-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.lp-form .lp-quick a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; transition: var(--transition-fast); }
.lp-form .lp-quick .call { background: var(--text-charcoal); color: #fff; }
.lp-form .lp-quick .call:hover { background: #000; transform: translateY(-2px); }
.lp-form .lp-quick .wa { background: #25D366; color: #fff; }
.lp-form .lp-quick .wa:hover { background: #1fb958; transform: translateY(-2px); }
.lp-form .lp-quick svg { width: 16px; height: 16px; }

.lp-social-strip { background: var(--text-charcoal); color: #fff; padding: 1.5rem 0; overflow: hidden; }
.lp-social-strip .container { display: flex; align-items: center; justify-content: space-around; gap: 1rem; flex-wrap: wrap; }
.lp-social-strip .item { display: flex; align-items: center; gap: 0.75rem; }
.lp-social-strip strong { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; color: #fff; line-height: 1; }
.lp-social-strip span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); }

.lp-steps { padding: 5rem 0; }
.lp-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lp-step { background: var(--bg-off-white); border-radius: var(--radius-lg); padding: 2rem; }
.lp-step .n { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 300; color: var(--accent-orange); line-height: 1; margin-bottom: 0.75rem; }
.lp-step h4 { font-size: 1.125rem; font-weight: 500; margin-bottom: 0.5rem; }
.lp-step p { font-size: 0.9375rem; }

.lp-guarantees { background: var(--bg-off-white); padding: 4rem 0; }
.lp-guarantees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.lp-gtile { background: #fff; padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--border-delicate); text-align: center; }
.lp-gtile strong { display: block; font-family: var(--font-heading); font-size: 1.375rem; font-weight: 400; color: var(--text-charcoal); margin-bottom: 0.375rem; }
.lp-gtile span { font-size: 0.8125rem; color: var(--text-muted); }

.lp-testimonial { padding: 5rem 0; }
.lp-t-wrap { max-width: 780px; margin: 0 auto; text-align: center; }
.lp-t-wrap blockquote { font-family: var(--font-heading); font-size: clamp(1.375rem, 2.2vw, 1.75rem); line-height: 1.5; font-weight: 300; color: var(--text-charcoal); letter-spacing: -0.015em; margin-bottom: 1.75rem; }
.lp-t-wrap .stars { color: var(--accent-orange); font-size: 1rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.lp-t-wrap .who { display: flex; align-items: center; justify-content: center; gap: 0.875rem; }
.lp-t-wrap .who .avatar { width: 48px; height: 48px; border-radius: 999px; background: var(--bg-off-white); overflow: hidden; }
.lp-t-wrap .who .avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-t-wrap .who strong { display: block; font-size: 0.9375rem; font-weight: 500; text-align: left; }
.lp-t-wrap .who span { font-size: 0.8125rem; color: var(--text-muted); text-align: left; }

.lp-final-cta { background: var(--text-charcoal); color: #fff; padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.lp-final-cta::before { content: ''; position: absolute; top: 30%; left: 50%; width: 480px; height: 480px; border-radius: 999px; background: var(--accent-orange); filter: blur(140px); opacity: 0.35; transform: translateX(-50%); }
.lp-final-cta .container { position: relative; z-index: 1; }
.lp-final-cta h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 300; letter-spacing: -0.025em; margin-bottom: 1rem; }
.lp-final-cta h2 em { color: var(--accent-orange); font-style: italic; font-weight: 300; }
.lp-final-cta p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; margin-bottom: 2rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
.lp-final-cta .cta-row { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }
.lp-final-cta .btn-accent { background: var(--accent-orange); color: #fff; padding: 1.125rem 2rem; font-weight: 600; box-shadow: 0 12px 28px rgba(255,107,53,0.35); }
.lp-final-cta .btn-accent:hover { background: #fff; color: var(--text-charcoal); }
.lp-final-cta .btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); padding: 1.125rem 2rem; }
.lp-final-cta .btn-outline:hover { background: #fff; color: var(--text-charcoal); border-color: #fff; }

/* Mobile sticky CTA bar */
.lp-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--border-delicate); box-shadow: 0 -8px 24px rgba(0,0,0,0.10); padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom, 0px)); z-index: 900; display: none; }
.lp-sticky-cta .container { padding-left: 0.5rem; padding-right: 0.5rem; max-width: 100%; }
.lp-sticky-cta .row { display: grid; grid-template-columns: 1fr 1fr 1.35fr; gap: 0.375rem; width: 100%; }
.lp-sticky-cta a { display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem; padding: 0 0.5rem; min-height: 48px; border-radius: 999px; font-size: 0.875rem; font-weight: 600; line-height: 1; text-decoration: none; -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease; will-change: transform; cursor: pointer; user-select: none; }
.lp-sticky-cta a:active { transform: scale(0.96); }
.lp-sticky-cta .call { background: var(--text-charcoal); color: #fff; }
.lp-sticky-cta .call:active { background: #000; }
.lp-sticky-cta .wa { background: #25D366; color: #fff; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28); }
.lp-sticky-cta .wa:active { background: #1fb958; }
.lp-sticky-cta .quote { background: var(--accent-orange); color: #fff; box-shadow: 0 4px 12px rgba(255, 107, 53, 0.32); }
.lp-sticky-cta .quote:active { background: var(--accent-orange-dark); }
.lp-sticky-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 380px) {
  .lp-sticky-cta a { font-size: 0.8125rem; padding: 0 0.375rem; gap: 0.25rem; }
  .lp-sticky-cta svg { width: 13px; height: 13px; }
  .lp-sticky-cta .row { gap: 0.25rem; }
}
@media (max-width: 900px) {
  .lp-sticky-cta { display: block; }
  body.lp-page { padding-bottom: 5.75rem; }
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-steps-grid { grid-template-columns: 1fr; }
  .lp-hero { padding-top: 6.5rem; }
}
body.lp-page .wa-fab { display: none !important; }

.lp-form .form-status { margin-top: 1rem; font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); display: none; }
.lp-form .form-status.success { display: block; background: rgba(34,197,94,0.08); color: #15803d; border: 1px solid rgba(34,197,94,0.22); }
.lp-form .form-status.error { display: block; background: rgba(239,68,68,0.08); color: #b91c1c; border: 1px solid rgba(239,68,68,0.22); }


/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .areas-grid, .about-grid, .contact-layout, .service-detail-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .bento .tile.large, .bento .tile.med, .bento .tile.sm, .bento .tile.sm-wide { grid-column: span 12; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .masonry { grid-auto-rows: 100px; }
  .masonry .a { grid-column: span 12; grid-row: span 3; }
  .masonry .b, .masonry .c { grid-column: span 6; grid-row: span 2; }
  .masonry .d, .masonry .e, .masonry .f { grid-column: span 6; grid-row: span 2; }
}
@media (max-width: 768px) {
  .site-header { padding-top: 0.625rem; padding-bottom: 0.625rem; }
  .nav-inner { gap: 0.75rem; }
  .brand { font-size: 1.125rem; }
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; width: 42px; height: 42px; flex-shrink: 0; }
  body.menu-open .nav-toggle span { background: transparent; }
  body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
  body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
  .hero { padding-top: 7rem; }
  .hero-badge { padding: 0.875rem 1rem; gap: 0.625rem; }
  .hero-badge .icon { width: 36px; height: 36px; flex-shrink: 0; }
  .hero-badge strong { font-size: 0.875rem; }
  .hero-badge span { font-size: 0.75rem; }
  .page-hero { padding-top: 7rem; }
  .timeline { grid-template-columns: 1fr; }
  form.inquiry .row { grid-template-columns: 1fr; }
  .cta-strip { grid-template-columns: 1fr; padding: 2.5rem; }
  .cta-strip .actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { flex-wrap: wrap; gap: 1.5rem; }
  .areas-list, .includes-list { grid-template-columns: 1fr; }
  .masonry .b, .masonry .c, .masonry .d, .masonry .e, .masonry .f { grid-column: span 12; }
}
