/* ============================================================
   WUI Services — Design System
   murynmukha adapted: Confident. Editorial. Quiet. Human. Precise.
   Brand: Wildland Urban Interface Services
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --text:           #181212;
  --text-body:      #211B1C;
  --text-muted:     #837D7D;
  --border:         #E5E5E5;
  --bg:             #FFFFFF;
  --fire:           #8B1A1A;
  --fire-hover:     #6d1414;
  --fire-light:     #F5E8E8;
  --accent:         #E0465C;
  --accent-100:     #FFCED1;
  --accent-25:      #FFE6E8;
  --neutral-25:     #F5F0F0;
  --neutral-50:     #E8E3E3;
  --neutral-100:    #CDC8C8;
  --neutral-200:    #B4AFAF;
  --neutral-300:    #9B9596;
  --neutral-400:    #837D7D;
  --neutral-500:    #6B6666;
  --neutral-600:    #554F4F;
  --neutral-700:    #3F393A;
  --neutral-800:    #2B2525;
  --neutral-900:    #181212;
  --btn-blue:       #2D80FD;
  --btn-blue-hover: #1a6fd4;
  --btn-blue-glow:  rgba(45, 128, 253, 0.22);
  --content-max:    1100px;
  --header-h:       80px;
  --section-pad:    112px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease-spring:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-quart-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out:    cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-body); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--content-max); margin: 0 auto; padding: 0 60px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--text); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); height: var(--header-h); }
.header-inner { position: relative; max-width: var(--content-max); margin: 0 auto; padding: 0 60px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; text-decoration: none; }
.logo-flame { overflow: visible; flex-shrink: 0; }
.logo-image { height: 85px; width: auto; flex-shrink: 0; }
.logo-wordmark { font-size: 15px; font-weight: 800; letter-spacing: -0.4px; color: var(--text); line-height: 1.15; }
.logo-wordmark small { display: block; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: #ffffff; border-radius: 2px; transition: all 0.3s ease; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
.site-nav-wrapper { display: flex; align-items: center; flex: 1; }
.site-nav { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; justify-content: center; }
.site-nav a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 600; color: #ffffff; border-radius: 8px; letter-spacing: -0.1px; transition: color 0.2s var(--ease-spring), background 0.2s var(--ease-spring); }
.site-nav a:hover, .site-nav a.active { color: #ffffff; background: rgba(255,255,255,0.1); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { font-size: 14px; font-weight: 700; color: #ffffff; letter-spacing: -0.2px; transition: color 0.2s; }
.header-phone:hover { color: var(--fire); }
.header-phone-icon { display: none; width: 32px; height: 32px; border-radius: 8px; background: none; border: none; cursor: pointer; align-items: center; justify-content: center; color: #ffffff; transition: color 0.2s; padding: 0; }
.header-phone-icon:hover { color: var(--fire); }
.logo-image { display: block; }
.logo-image-mobile { display: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 100px; font-family: var(--font); font-size: 14px; font-weight: 700; letter-spacing: -0.2px; border: none; cursor: pointer; transition: all 0.25s var(--ease-spring); text-decoration: none; white-space: nowrap; line-height: 1; }
.btn-primary { background: var(--btn-blue); color: #fff; box-shadow: 0 2px 16px var(--btn-blue-glow); }
.btn-primary:hover { background: var(--btn-blue-hover); transform: translateY(-2px); box-shadow: 0 8px 28px var(--btn-blue-glow); }
.btn-fire { background: var(--fire); color: #fff; box-shadow: 0 2px 16px rgba(139,26,26,0.22); }
.btn-fire:hover { background: var(--fire-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,26,26,0.28); }
.btn-secondary { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { background: var(--neutral-25); border-color: var(--neutral-100); }
.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { background: var(--neutral-25); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.65); border: 1.5px solid rgba(255,255,255,0.18); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-header { background: var(--fire); color: #fff; padding: 10px 18px; font-size: 13px; }
.btn-header:hover { background: var(--fire-hover); transform: translateY(-1px); }
.btn-lg { padding: 17px 34px; font-size: 16px; }

/* TYPOGRAPHY */
h1 { font-size: clamp(44px, 6vw, 72px); font-weight: 800; line-height: 1.04; letter-spacing: -3px; color: var(--text); }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.06; letter-spacing: -2px; color: var(--text); }
h3 { font-size: 21px; font-weight: 700; line-height: 1.3; letter-spacing: -0.7px; color: var(--text); }
h4 { font-size: 15px; font-weight: 700; letter-spacing: -0.2px; color: var(--text); }
.body-lg { font-size: 19px; font-weight: 500; line-height: 1.65; letter-spacing: -0.3px; color: var(--text-muted); }
.body-md { font-size: 16px; font-weight: 500; line-height: 1.7; color: var(--text-body); }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--fire); margin-bottom: 18px; }
.section-kicker::before { content: ''; display: block; width: 20px; height: 2px; background: var(--fire); flex-shrink: 0; }

/* IMAGE PLACEHOLDERS */
.img-placeholder { background: var(--neutral-25); border-radius: 44px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.placeholder-label { font-size: 12px; font-weight: 600; color: var(--neutral-300); letter-spacing: 0.8px; text-align: center; padding: 24px; pointer-events: none; user-select: none; line-height: 1.6; }

/* HERO */
.hero { padding: 48px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--fire); margin-bottom: 22px; }
.hero-eyebrow::before { content: ''; display: block; width: 22px; height: 2px; background: var(--fire); }
.hero h1 { margin-bottom: 22px; }
.hero .body-lg { margin-bottom: 38px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-phone { font-size: 14px; font-weight: 700; color: var(--text-muted); transition: color 0.2s; }
.hero-phone:hover { color: var(--text); }
.hero .img-placeholder { height: 480px; }

/* TRUST BAR */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--fire); flex-shrink: 0; }

/* WHY THIS MATTERS */
.why-section { background: var(--neutral-25); padding: var(--section-pad) 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-content .section-kicker { margin-bottom: 14px; }
.why-content h2 { margin-bottom: 22px; }
.why-content p { font-size: 17px; font-weight: 500; line-height: 1.78; color: var(--text-muted); margin-bottom: 16px; }
.why-stats { display: flex; flex-direction: column; gap: 18px; }
.stat-card { padding: 26px 30px; background: #fff; border-radius: 22px; border: 1px solid var(--border); }
.stat-num { font-size: 50px; font-weight: 800; letter-spacing: -3px; color: var(--fire); line-height: 1; margin-bottom: 6px; }
.stat-desc { font-size: 14px; font-weight: 600; color: var(--text-muted); line-height: 1.5; }

/* TESTIMONIAL */
.testimonial-section { padding: var(--section-pad) 0; }
.testimonial-card { max-width: 800px; margin: 0 auto; padding: 60px 72px; background: var(--neutral-25); border-radius: 48px; text-align: center; }
.testimonial-mark { font-size: 72px; line-height: 0.8; color: var(--fire); opacity: 0.3; font-family: Georgia, serif; margin-bottom: 18px; display: block; }
.testimonial-quote { font-size: 22px; font-weight: 600; line-height: 1.55; letter-spacing: -0.7px; color: var(--text); margin-bottom: 30px; }
.testimonial-byline { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.testimonial-byline strong { color: var(--fire); font-weight: 800; }

/* SERVICES HOME */
.services-home { padding: var(--section-pad) 0; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 40px; }
.section-header-left .section-kicker { margin-bottom: 10px; }
.services-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { padding: 38px; background: var(--neutral-25); border-radius: 32px; border: 1px solid transparent; transition: all 0.3s var(--ease-spring); cursor: pointer; }
.service-card:hover { background: #fff; border-color: var(--border); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(24,18,18,0.06); }
.service-icon { width: 52px; height: 52px; background: var(--fire-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15px; font-weight: 500; line-height: 1.7; color: var(--text-muted); }

/* GALLERY */
.gallery-section { padding: 80px 0; background: var(--neutral-25); }
.gallery-header { margin-bottom: 36px; }
.gallery-header .section-kicker { margin-bottom: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { background: var(--neutral-50); border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

/* PROCESS STEPS */
.process-section { padding: var(--section-pad) 0; }
.process-steps { margin-top: 56px; border-top: 1px solid var(--border); }
.step-row { display: grid; grid-template-columns: 88px 1fr; gap: 40px; padding: 44px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step-num { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--fire); padding-top: 4px; }
.step-body h3 { margin-bottom: 8px; }
.step-body p { font-size: 16px; font-weight: 500; line-height: 1.7; color: var(--text-muted); max-width: 600px; }

/* CTA SECTION */
.cta-section { background: var(--text); padding: var(--section-pad) 0; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner .section-kicker { color: rgba(255,255,255,0.35); justify-content: center; margin-bottom: 18px; }
.cta-inner .section-kicker::before { background: rgba(255,255,255,0.2); }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.48); margin-bottom: 42px; letter-spacing: -0.3px; line-height: 1.65; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); }
.page-hero .section-kicker { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); max-width: 680px; margin-bottom: 18px; }
.page-hero .body-lg { max-width: 560px; }

/* SERVICES PAGE */
.position-statement { padding: 72px 0; border-bottom: 1px solid var(--border); }
.position-text { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; line-height: 1.48; letter-spacing: -0.8px; color: var(--text); max-width: 840px; }
.position-text em { font-style: normal; color: var(--fire); }
.service-detail { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; margin-top: 44px; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail h3 { font-size: 26px; margin-bottom: 12px; }
.service-detail > .body-md { margin-bottom: 24px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.service-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text-body); line-height: 1.55; }
.service-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--fire); margin-top: 8px; flex-shrink: 0; }
.service-note { padding: 16px 20px; background: var(--fire-light); border-left: 3px solid var(--fire); border-radius: 0 12px 12px 0; font-size: 14px; font-weight: 600; font-style: italic; color: var(--text); line-height: 1.6; }
.service-visual { background: var(--neutral-25); border-radius: 32px; min-height: 320px; display: flex; align-items: center; justify-content: center; padding: 32px; text-align: center; overflow: hidden; }
.zone-stack { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.zone-row { padding: 14px 18px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; }
.zone-row.z0 { background: rgba(139,26,26,0.14); }
.zone-row.z1 { background: rgba(139,26,26,0.08); }
.zone-row.z2 { background: rgba(139,26,26,0.04); }
.zone-lbl { font-size: 13px; font-weight: 700; color: var(--text); }
.zone-range { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.process-cards-section { padding: 80px 0; background: var(--neutral-25); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.process-card { padding: 30px 26px; background: #fff; border-radius: 28px; border: 1px solid var(--border); transition: all 0.3s var(--ease-spring); }
.process-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(24,18,18,0.06); }
.process-step-num { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--fire); margin-bottom: 18px; }
.process-card h3 { font-size: 17px; margin-bottom: 10px; }
.process-card p { font-size: 14px; font-weight: 500; line-height: 1.65; color: var(--text-muted); }

/* ABOUT PAGE */
.about-lead { padding: 80px 0; border-bottom: 1px solid var(--border); }
.about-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-lead-text p { font-size: 18px; font-weight: 500; line-height: 1.8; color: var(--text-muted); margin-bottom: 22px; }
.about-lead-text p:last-child { margin-bottom: 0; }
.about-lead-text strong { color: var(--text); font-weight: 700; }
.differentiators { display: flex; flex-direction: column; gap: 14px; }
.diff-item { padding: 22px 26px; background: var(--neutral-25); border-radius: 20px; }
.diff-item h4 { margin-bottom: 6px; }
.diff-item p { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.6; }
.about-philosophy { padding: 80px 0; background: var(--neutral-25); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pull-quote blockquote { font-size: 24px; font-weight: 700; line-height: 1.42; letter-spacing: -0.8px; color: var(--text); border-left: 3px solid var(--fire); padding-left: 26px; margin-bottom: 18px; }
.pull-quote cite { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); font-style: normal; padding-left: 26px; }
.philosophy-text p { font-size: 17px; font-weight: 500; line-height: 1.8; color: var(--text-muted); margin-bottom: 18px; }
.about-img-placeholder { background: var(--neutral-50); border-radius: 32px; min-height: 340px; display: flex; align-items: center; justify-content: center; }

/* RESOURCES PAGE */
.resource-article { padding: 80px 0; border-bottom: 1px solid var(--border); }
.resource-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; margin-top: 40px; }
.resource-grid.reverse { direction: rtl; }
.resource-grid.reverse > * { direction: ltr; }
.resource-article h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 18px; }
.resource-article p { font-size: 16px; font-weight: 500; line-height: 1.78; color: var(--text-muted); margin-bottom: 16px; }
.resource-visual { background: var(--neutral-25); border-radius: 28px; min-height: 280px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; padding: 28px; gap: 0; }
.checklist-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.checklist-items li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: #fff; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text-body); line-height: 1.4; }
.check-box { width: 17px; height: 17px; border-radius: 5px; border: 2px solid var(--fire); background: var(--fire-light); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--fire); font-weight: 900; }

/* CONTACT PAGE */
.contact-wrap { padding: 80px 0 120px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: 32px; margin-bottom: 12px; }
.contact-info .body-md { color: var(--text-muted); margin-bottom: 44px; }
.contact-methods { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.contact-method { display: flex; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.method-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--fire-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.method-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.method-value { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.method-value a { transition: color 0.2s; }
.method-value a:hover { color: var(--fire); }
.expect-card { margin-top: 40px; padding: 26px 30px; background: var(--neutral-25); border-radius: 20px; }
.expect-card h4 { margin-bottom: 8px; }
.expect-card p { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.65; }
.form-card { background: var(--neutral-25); border-radius: 44px; padding: 52px 48px; }
.form-card h3 { margin-bottom: 6px; }
.form-card .body-md { color: var(--text-muted); margin-bottom: 34px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; padding: 13px 16px; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--text); outline: none; transition: border-color 0.2s var(--ease-spring), box-shadow 0.2s var(--ease-spring); -webkit-appearance: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--btn-blue); box-shadow: 0 0 0 4px rgba(45,128,253,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--neutral-200); font-weight: 400; }
.form-textarea { height: 120px; resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 8px; padding: 16px; }
#form-status { display: none; margin-top: 14px; padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 600; text-align: center; line-height: 1.5; }
#form-status.success { display: block; background: #e8f5e9; color: #2e7d32; }
#form-status.error { display: block; background: #fbe9e7; color: #c62828; }

/* THANK YOU */
.thankyou-wrap { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.thankyou-inner { max-width: 560px; text-align: center; }
.thankyou-mark { width: 72px; height: 72px; border-radius: 50%; background: var(--fire-light); margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.thankyou-inner h1 { font-size: clamp(36px, 5vw, 54px); margin-bottom: 16px; }
.thankyou-inner p { font-size: 18px; font-weight: 500; line-height: 1.65; color: var(--text-muted); margin-bottom: 40px; }
.thankyou-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--text); color: rgba(255,255,255,0.9); padding: 80px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 56px; margin-bottom: 56px; }
.footer-logo-wrap .logo-wordmark { color: #fff; }
.footer-logo-wrap .logo-wordmark small { color: rgba(255,255,255,0.3); }
.footer-tagline { font-size: 14px; font-weight: 500; line-height: 1.65; color: rgba(255,255,255,0.38); max-width: 230px; margin-top: 14px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-contact-row { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-val { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.58); display: block; }
.footer-contact-val a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-contact-val a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.22); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* RESPONSIVE */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }
  .container, .header-inner { padding: 0 28px; }
  .hero-grid, .why-grid, .about-lead-grid, .philosophy-grid, .resource-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse, .resource-grid.reverse { direction: ltr; }
  .services-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero .img-placeholder { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-bar-inner { gap: 20px; flex-wrap: wrap; justify-content: flex-start; }
  .testimonial-card { padding: 44px 36px; }
  .form-card { padding: 36px 28px; }
  h1 { letter-spacing: -2px; }
  h2 { letter-spacing: -1.5px; }
}

@media (max-width: 700px) {
  .header-inner { gap: 0; }
  .header-cta { margin-left: auto; gap: 12px; margin-right: 16px; }
  .mobile-menu-btn { display: flex; }
  .header-phone-icon { display: flex; }
  .btn-header { display: none; }
  .site-nav-wrapper { position: fixed; top: var(--header-h); right: 0; background: var(--text); flex-direction: column; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; z-index: 99; width: 280px; }
  .site-nav-wrapper.active { max-height: 600px; }
  .site-nav { flex-direction: column; width: 100%; justify-content: flex-start; gap: 0; }
  .site-nav a { padding: 12px 18px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 13px; }
  .header-phone { display: none; }
  .nav-mobile-divider { display: block; height: 1px; background: rgba(255,255,255,0.1); margin: 0; }
  .nav-mobile-phone { display: flex; align-items: center; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-mobile-phone a { color: #ffffff; font-weight: 600; font-size: 13px; text-decoration: none; }
  .nav-mobile-phone a:hover { color: var(--fire); }
  .nav-mobile-cta { display: block; padding: 12px 18px; }
  .nav-mobile-cta a { display: block; width: 100%; background: var(--fire); color: #fff; padding: 10px 14px; border-radius: 6px; text-align: center; font-weight: 700; font-size: 12px; text-decoration: none; transition: background 0.2s; }
  .nav-mobile-cta a:hover { background: var(--fire-hover); }
  .process-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .step-row { grid-template-columns: 64px 1fr; gap: 20px; }
  .trust-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
  .about-img-placeholder { background: transparent; }
  .hero-phone { display: none; }
}

@media (min-width: 701px) {
  .nav-mobile-divider { display: none; }
  .nav-mobile-phone { display: none; }
  .nav-mobile-cta { display: none; }
}

/* ── CONTACT PAGE EXTENDED ─────────────────── */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.contact-form-wrap { }
.contact-form { }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; color: var(--text); margin-bottom: 8px; }
.req { color: var(--fire); }
.form-group input,
.form-group textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--text); background: var(--bg); outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--fire); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #C0B8B4; font-weight: 400; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-error-msg { margin-top: 16px; padding: 16px 20px; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 10px; font-size: 14px; font-weight: 500; color: #991B1B; line-height: 1.6; }
.form-error-msg a { color: #991B1B; font-weight: 700; text-decoration: underline; }

.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-method:first-child { border-top: 1px solid var(--border); }
.contact-method-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--neutral-25); display: flex; align-items: center; justify-content: center; color: var(--fire); flex-shrink: 0; }
.contact-method-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin: 0 0 4px; }
.contact-method-val { font-size: 17px; font-weight: 700; color: var(--text); text-decoration: none; display: block; }
a.contact-method-val:hover { color: var(--fire); }

.expect-cards { margin-top: 40px; }
.expect-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.expect-card { display: flex; gap: 18px; align-items: flex-start; padding: 20px; background: var(--neutral-25); border-radius: 14px; margin-bottom: 12px; }
.expect-num { font-size: 12px; font-weight: 800; color: var(--fire); letter-spacing: 1px; min-width: 24px; margin-top: 2px; }
.expect-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.expect-card p { font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.6; margin: 0; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
