/* ═══════════════════════════════════════════════════════════════
   LEYTON ECO DRYCLEANERS — Premium Design System v2.0
   Apple / Tesla inspired design language
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --red:          #C8102E;
  --red-dark:     #a00d24;
  --black:        #000000;
  --charcoal:     #1a1a1a;
  --dark:         #111111;
  --mid:          #3a3a3a;
  --grey:         #6e6e73;
  --light-grey:   #f5f5f7;
  --border:       #d2d2d7;
  --white:        #ffffff;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:    1200px;
  --section-pad:  96px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}
body{font-family:var(--font);font-size:17px;line-height:1.6;color:var(--charcoal);background:var(--white);overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:var(--font)}
input,select,textarea{font-family:var(--font)}

h1,h2,h3,h4,h5{font-weight:700;line-height:1.1;letter-spacing:-0.02em;color:var(--dark)}
h1{font-size:clamp(2.4rem,5vw,4rem)}
h2{font-size:clamp(1.8rem,3.5vw,2.8rem)}
h3{font-size:clamp(1.05rem,2vw,1.3rem);font-weight:600}
h4{font-size:1rem;font-weight:600;letter-spacing:0}
p{color:var(--grey);line-height:1.7}

.eyebrow{display:inline-block;font-size:.72rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--red);margin-bottom:.75rem}
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.section-pad{padding:var(--section-pad) 0}
.section-pad-sm{padding:64px 0}
.section-header{text-align:center;max-width:640px;margin:0 auto 64px}
.section-header p{margin-top:16px;font-size:1.05rem}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.btn{display:inline-flex;align-items:center;gap:8px;padding:13px 28px;border-radius:980px;font-size:.875rem;font-weight:600;letter-spacing:.01em;transition:all var(--transition);white-space:nowrap;cursor:pointer;border:2px solid transparent}
.btn svg{width:16px;height:16px;flex-shrink:0}
.btn-primary{background:var(--red);color:var(--white);border-color:var(--red)}
.btn-primary:hover{background:var(--red-dark);border-color:var(--red-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(200,16,46,.35)}
.btn-outline{background:transparent;color:var(--white);border-color:rgba(255,255,255,.55)}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:var(--white);transform:translateY(-1px)}
.btn-outline-dark{background:transparent;color:var(--dark);border-color:var(--border)}
.btn-outline-dark:hover{background:var(--light-grey);border-color:var(--mid);transform:translateY(-1px)}
.btn-white{background:var(--white);color:var(--red);border-color:var(--white);font-weight:700}
.btn-white:hover{background:var(--light-grey);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}

.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,.88);backdrop-filter:saturate(180%) blur(20px);-webkit-backdrop-filter:saturate(180%) blur(20px);border-bottom:1px solid rgba(0,0,0,.07);transition:background var(--transition),box-shadow var(--transition)}
.site-header.scrolled{background:rgba(255,255,255,.96);box-shadow:0 1px 20px rgba(0,0,0,.08)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:78px;gap:32px}
.header-logo img{height:66px;width:auto;transition:opacity var(--transition)}
.header-logo:hover img{opacity:.8}
.site-nav{display:flex;align-items:center;gap:2px}
.site-nav a{font-size:.85rem;font-weight:500;color:var(--charcoal);padding:6px 12px;border-radius:8px;transition:all var(--transition)}
.site-nav a:hover{color:var(--red);background:rgba(200,16,46,.06)}
.site-nav a.active{color:var(--red);font-weight:600}
.header-cta{flex-shrink:0}
.header-cta .btn{padding:9px 20px;font-size:.82rem}

.mobile-menu-toggle{display:none;flex-direction:column;gap:5px;padding:8px;border-radius:8px;transition:background var(--transition)}
.mobile-menu-toggle:hover{background:var(--light-grey)}
.mobile-menu-toggle span{display:block;width:22px;height:2px;background:var(--charcoal);border-radius:2px;transition:all var(--transition)}
.mobile-menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-menu-toggle.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.mobile-menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-nav{display:none;flex-direction:column;padding:16px 24px 24px;border-top:1px solid var(--border);background:rgba(255,255,255,.98);backdrop-filter:blur(20px);gap:4px}
.mobile-nav.open{display:flex}
.mobile-nav a{font-size:1rem;font-weight:500;color:var(--charcoal);padding:12px 16px;border-radius:10px;transition:all var(--transition)}
.mobile-nav a:hover{background:var(--light-grey);color:var(--red)}
.mobile-nav .btn{margin-top:8px;justify-content:center;border-radius:12px}

.hero{position:relative;height:100vh;min-height:640px;max-height:920px;overflow:hidden;background:var(--dark);margin-top:78px}
.hero-slides{position:relative;width:100%;height:100%}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s ease;display:flex;align-items:center}
.hero-slide.active{opacity:1;z-index:1}
.hero-slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.05);transition:transform 7s ease}
.hero-slide.active .hero-slide-bg{transform:scale(1)}
.hero-slide-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(0,0,0,.75) 0%,rgba(0,0,0,.45) 55%,rgba(0,0,0,.12) 100%)}
.hero-slide-content{position:relative;z-index:2;max-width:680px;padding:0 24px;margin-left:max(24px,calc((100vw - var(--max-width)) / 2 + 24px))}
.hero-slide-content .eyebrow{color:rgba(255,255,255,.6);font-size:.68rem;letter-spacing:.16em}
.hero-slide-content h1{color:var(--white);font-size:clamp(2.2rem,5vw,3.8rem);line-height:1.06;letter-spacing:-.03em;margin-bottom:20px;text-shadow:0 2px 20px rgba(0,0,0,.3)}
.hero-slide-content p{color:rgba(255,255,255,.8);font-size:clamp(.95rem,1.5vw,1.1rem);line-height:1.65;margin-bottom:36px;max-width:520px}
.hero-slide-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-nav{position:absolute;bottom:36px;left:50%;transform:translateX(-50%);z-index:10;display:flex;gap:8px;align-items:center}
.hero-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.35);border:none;cursor:pointer;transition:all var(--transition);padding:0}
.hero-dot.active{background:var(--white);width:24px;border-radius:4px}
.hero-scroll-cue{position:absolute;bottom:36px;right:48px;z-index:10;display:flex;flex-direction:column;align-items:center;gap:6px;color:rgba(255,255,255,.4);font-size:.65rem;letter-spacing:.12em;text-transform:uppercase}
.hero-scroll-cue::after{content:'';display:block;width:1px;height:40px;background:linear-gradient(to bottom,rgba(255,255,255,.4),transparent);animation:scrollLine 2s ease-in-out infinite}
@keyframes scrollLine{0%,100%{opacity:.4;transform:scaleY(1)}50%{opacity:1;transform:scaleY(.6)}}

.collection-section{background:var(--light-grey);padding:var(--section-pad) 0}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--border);border-radius:var(--radius-lg);overflow:hidden;margin-top:56px}
.step-card{background:var(--white);padding:48px 40px;text-align:center;position:relative;transition:background var(--transition)}
.step-card:hover{background:#fafafa}
.step-icon{width:64px;height:64px;border-radius:18px;background:var(--light-grey);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;transition:all var(--transition)}
.step-card:hover .step-icon{background:rgba(200,16,46,.08)}
.step-icon svg{width:28px;height:28px;stroke:var(--red);fill:none;stroke-width:1.75}
.step-number-badge{position:absolute;top:20px;right:24px;font-size:.65rem;font-weight:700;letter-spacing:.08em;color:var(--border)}
.step-card h3{font-size:1.05rem;margin-bottom:10px;color:var(--dark)}
.step-card p{font-size:.875rem}

.why-section{background:var(--white)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:56px}
.why-card{padding:36px 32px;border-radius:var(--radius);border:1px solid var(--border);transition:all var(--transition);background:var(--white)}
.why-card:hover{border-color:rgba(200,16,46,.2);box-shadow:var(--shadow);transform:translateY(-4px)}
.why-icon{width:52px;height:52px;border-radius:14px;background:rgba(200,16,46,.07);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.why-icon svg{width:24px;height:24px;stroke:var(--red);fill:none;stroke-width:1.75}
.why-card h3{font-size:.95rem;margin-bottom:8px;color:var(--dark)}
.why-card p{font-size:.85rem;line-height:1.6}

.services-section{background:var(--light-grey)}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--border);border-radius:var(--radius-lg);overflow:hidden;margin-top:56px}
.service-card{background:var(--white);padding:40px 36px;transition:background var(--transition);display:flex;flex-direction:column;gap:14px}
.service-card:hover{background:#fafafa}
.service-icon{width:52px;height:52px;border-radius:14px;background:rgba(200,16,46,.07);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.service-icon svg{width:24px;height:24px;stroke:var(--red);fill:none;stroke-width:1.75}
.service-card h3{font-size:1rem;color:var(--dark);margin:0}
.service-card p{font-size:.85rem;line-height:1.6;flex:1}
.service-link{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:600;color:var(--red);transition:gap var(--transition);margin-top:auto}
.service-link:hover{gap:10px}
.service-link svg{width:14px;height:14px;stroke:var(--red);fill:none}
.services-footer{text-align:center;margin-top:48px;display:flex;gap:16px;justify-content:center}

.services-tiles-section{background:var(--light-grey)}
.services-tiles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--border);border-radius:var(--radius-lg);overflow:hidden;margin-top:0}
.service-tile{background:var(--white);padding:44px 40px;display:flex;flex-direction:column;gap:16px;transition:background var(--transition);position:relative}
.service-tile:hover{background:#fafafa}
.service-tile-icon{width:56px;height:56px;border-radius:16px;background:rgba(200,16,46,.07);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--transition)}
.service-tile:hover .service-tile-icon{background:rgba(200,16,46,.13)}
.service-tile-icon svg{width:26px;height:26px;stroke:var(--red);fill:none;stroke-width:1.75}
.service-tile h3{font-size:1.05rem;color:var(--dark);margin:0;line-height:1.3}
.service-tile p{font-size:.875rem;line-height:1.65;flex:1;color:var(--grey)}
.service-tile .service-link{margin-top:auto;padding-top:4px}
.service-tile-cta{background:var(--light-grey)}
.service-tile-cta:hover{background:#ebebef}
.service-tile-icon-light{background:rgba(0,0,0,.05)}
.service-tile-icon-light svg{stroke:var(--mid)}

.offer-section{background:var(--red);padding:80px 0;position:relative;overflow:hidden}
.offer-section::before{content:'';position:absolute;top:-50%;right:-10%;width:600px;height:600px;border-radius:50%;background:rgba(255,255,255,.04);pointer-events:none}
.offer-section::after{content:'';position:absolute;bottom:-40%;left:-5%;width:400px;height:400px;border-radius:50%;background:rgba(255,255,255,.04);pointer-events:none}
.offer-inner{display:flex;align-items:center;justify-content:space-between;gap:48px}
.offer-text .eyebrow{color:rgba(255,255,255,.55)}
.offer-text h2{color:var(--white);font-size:clamp(2rem,4vw,3rem);letter-spacing:-.03em;margin-bottom:8px}
.offer-price{font-size:1rem;color:rgba(255,255,255,.7);margin-bottom:16px}
.offer-price strong{font-size:2.2rem;color:var(--white);font-weight:800}
.offer-text p{color:rgba(255,255,255,.65);max-width:480px;font-size:.95rem}
.offer-cta{flex-shrink:0}

.about-section{background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.about-image{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/3;box-shadow:var(--shadow-lg)}
.about-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.about-image:hover img{transform:scale(1.04)}
.about-content h2{margin-bottom:20px}
.about-content p{margin-bottom:16px;font-size:.95rem}
.about-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin:36px 0;padding:32px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.stat-item{text-align:center}
.stat-value{display:block;font-size:2rem;font-weight:800;color:var(--red);letter-spacing:-.03em;line-height:1;margin-bottom:6px}
.stat-label{font-size:.7rem;color:var(--grey);font-weight:500;letter-spacing:.05em;text-transform:uppercase}

.reviews-section{background:var(--light-grey)}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:56px}
.review-card{background:var(--white);border-radius:var(--radius);padding:36px 32px;box-shadow:var(--shadow-sm);transition:all var(--transition);display:flex;flex-direction:column;gap:16px}
.review-card:hover{box-shadow:var(--shadow);transform:translateY(-4px)}
.review-stars{display:flex;gap:3px}
.review-stars svg{width:15px;height:15px;fill:#f5a623;stroke:none}
.review-text{font-size:.9rem;line-height:1.75;color:var(--mid);font-style:italic;flex:1}
.review-author{display:flex;align-items:center;gap:12px}
.review-avatar{width:40px;height:40px;border-radius:50%;background:rgba(200,16,46,.1);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.875rem;color:var(--red);flex-shrink:0}
.review-name{font-size:.85rem;font-weight:600;color:var(--dark)}
.review-location{font-size:.75rem;color:var(--grey)}

.cta-section{background:var(--dark);padding:96px 0;text-align:center}
.cta-section h2{color:var(--white);font-size:clamp(1.8rem,3.5vw,2.8rem);margin-bottom:16px}
.cta-section p{color:rgba(255,255,255,.55);font-size:1.05rem;margin-bottom:40px;max-width:500px;margin-left:auto;margin-right:auto}
.cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

.site-footer{background:var(--black);color:rgba(255,255,255,.6);padding:72px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,.07)}
.footer-brand img{height:38px;margin-bottom:20px;opacity:.9}
.footer-brand p{font-size:.85rem;line-height:1.7;color:rgba(255,255,255,.45);max-width:280px;margin-bottom:24px}
.footer-phones{display:flex;flex-direction:column;gap:8px}
.footer-phone-link{display:inline-flex;align-items:center;gap:8px;font-size:.875rem;font-weight:600;color:rgba(255,255,255,.8);transition:color var(--transition)}
.footer-phone-link:hover{color:var(--white)}
.footer-phone-link svg{width:14px;height:14px;stroke:var(--red);fill:none}
.footer-col h4{font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:20px}
.footer-links{display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:.85rem;color:rgba(255,255,255,.5);transition:color var(--transition)}
.footer-links a:hover{color:var(--white)}
.footer-hours p{font-size:.85rem;color:rgba(255,255,255,.5);margin-bottom:10px;line-height:1.5}
.footer-hours strong{color:rgba(255,255,255,.75)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:24px 0;font-size:.78rem;color:rgba(255,255,255,.28)}

.page-hero{background:var(--dark);padding:120px 0 64px;text-align:center}
.page-hero h1{color:var(--white);margin-bottom:16px}
.page-hero p{color:rgba(255,255,255,.55);max-width:560px;margin:0 auto;font-size:1.05rem}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;font-size:.78rem;color:rgba(255,255,255,.35);margin-bottom:20px}
.breadcrumb a{color:rgba(255,255,255,.35);transition:color var(--transition)}
.breadcrumb a:hover{color:rgba(255,255,255,.75)}
.breadcrumb-sep{color:rgba(255,255,255,.18)}

.services-list{padding:var(--section-pad) 0}
.service-item{display:grid;grid-template-columns:80px 1fr;gap:32px;padding:48px 0;border-bottom:1px solid var(--border);align-items:start}
.service-item:last-child{border-bottom:none}
.service-item-icon{width:64px;height:64px;border-radius:18px;background:rgba(200,16,46,.07);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.service-item-icon svg{width:28px;height:28px;stroke:var(--red);fill:none;stroke-width:1.75}
.service-item-content h3{margin-bottom:12px;font-size:1.25rem}
.service-item-content p{font-size:.95rem;line-height:1.75}
.service-item-content p+p{margin-top:12px}

.prices-section{padding:var(--section-pad) 0}
.prices-intro{max-width:640px;margin:0 auto 56px;text-align:center}
.prices-intro p{font-size:.95rem}
.prices-table-wrap{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow-sm)}
.prices-table{width:100%;border-collapse:collapse}
.prices-table thead tr{background:var(--dark)}
.prices-table thead th{padding:18px 28px;text-align:left;font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.45)}
.prices-table thead th:last-child{text-align:right}
.prices-table tbody tr{border-bottom:1px solid var(--border);transition:background var(--transition)}
.prices-table tbody tr:last-child{border-bottom:none}
.prices-table tbody tr:hover{background:var(--light-grey)}
.prices-table td{padding:20px 28px;font-size:.95rem;color:var(--charcoal)}
.prices-table td:first-child{font-weight:600;color:var(--dark)}
.prices-table td:nth-child(2){color:var(--grey);font-size:.875rem}
.prices-table td:last-child{text-align:right;font-weight:700;color:var(--red);font-size:1rem}
.prices-note{background:var(--light-grey);border-radius:var(--radius);padding:24px 32px;margin-top:32px;display:flex;align-items:flex-start;gap:16px}
.prices-note-icon{width:40px;height:40px;border-radius:10px;background:rgba(200,16,46,.08);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.prices-note-icon svg{width:20px;height:20px;stroke:var(--red);fill:none}
.prices-note p{font-size:.875rem;line-height:1.6}
.prices-note a{color:var(--red);font-weight:600}

.faq-section{padding:var(--section-pad) 0}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:2px;background:var(--border);border-radius:var(--radius-lg);overflow:hidden}
.faq-item{background:var(--white)}
.faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;padding:24px 32px;text-align:left;font-size:.95rem;font-weight:600;color:var(--dark);gap:16px;transition:background var(--transition)}
.faq-question:hover{background:var(--light-grey)}
.faq-question.open{color:var(--red)}
.faq-icon{width:28px;height:28px;border-radius:50%;background:var(--light-grey);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--transition)}
.faq-icon svg{width:14px;height:14px;stroke:var(--grey);fill:none;transition:transform var(--transition)}
.faq-question.open .faq-icon{background:rgba(200,16,46,.1)}
.faq-question.open .faq-icon svg{stroke:var(--red);transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.4,0,.2,1)}
.faq-answer.open{max-height:400px}
.faq-answer-inner{padding:0 32px 28px;font-size:.9rem;line-height:1.8;color:var(--grey)}
.faq-answer-inner a{color:var(--red);font-weight:600}

.contact-section{padding:var(--section-pad) 0}
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:64px;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:32px}
.contact-phone-block h3{font-size:1.05rem;margin-bottom:12px;display:flex;align-items:center;gap:10px}
.contact-phone-block h3 svg{width:20px;height:20px;stroke:var(--red);fill:none}
.contact-phone-block p{font-size:.875rem;margin-bottom:16px}
.phone-link{display:flex;align-items:center;gap:12px;padding:16px 20px;border-radius:var(--radius);border:1px solid var(--border);font-size:1.05rem;font-weight:700;color:var(--dark);transition:all var(--transition);margin-bottom:10px}
.phone-link:hover{border-color:var(--red);background:rgba(200,16,46,.04);color:var(--red);transform:translateX(4px)}
.phone-link svg{width:18px;height:18px;stroke:var(--red);fill:none}
.map-placeholder{border-radius:var(--radius);overflow:hidden;height:220px;border:1px solid var(--border)}
.map-placeholder iframe{width:100%;height:100%;border:none;display:block}
.contact-detail-block h4{font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--grey);margin-bottom:12px}
.contact-detail-block p{font-size:.875rem;line-height:1.7}
.hours-table{width:100%;border-collapse:collapse}
.hours-table td{padding:8px 0;font-size:.85rem;color:var(--charcoal);border-bottom:1px solid var(--border)}
.hours-table td:first-child{font-weight:500;color:var(--dark)}
.hours-table td:last-child{text-align:right;color:var(--grey)}
.hours-table tr:last-child td{border-bottom:none}
.contact-form-wrap{background:var(--white);border-radius:var(--radius-lg);padding:48px;border:1px solid var(--border);box-shadow:var(--shadow)}
.contact-form-wrap h3{font-size:1.35rem;margin-bottom:8px}
.contact-form-wrap>p{font-size:.85rem;margin-bottom:32px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-group label{font-size:.78rem;font-weight:600;color:var(--mid);letter-spacing:.02em}
.form-group input,.form-group select,.form-group textarea{padding:13px 16px;border:1.5px solid var(--border);border-radius:var(--radius-sm);font-size:.9rem;color:var(--dark);background:var(--white);transition:border-color var(--transition),box-shadow var(--transition);outline:none;-webkit-appearance:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(200,16,46,.1)}
.form-group textarea{min-height:120px;resize:vertical}
.form-group select{cursor:pointer}
.form-submit{width:100%;justify-content:center;padding:16px;font-size:.95rem;border-radius:var(--radius-sm);margin-top:8px}
.form-success{display:none;margin-top:16px;padding:16px 20px;background:rgba(34,197,94,.08);border:1px solid rgba(34,197,94,.2);border-radius:var(--radius-sm);color:#16a34a;font-size:.875rem;font-weight:500}
.form-success.visible{display:block}
.form-label-hint{font-weight:400;color:var(--grey);font-size:.72rem;letter-spacing:0;text-transform:none}

/* ── Multi-Select Service Picker ── */
.multi-select{position:relative;user-select:none}
.multi-select-display{display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:48px;padding:8px 14px 8px 12px;border:1.5px solid var(--border);border-radius:var(--radius-sm);background:var(--white);cursor:pointer;transition:border-color var(--transition),box-shadow var(--transition)}
.multi-select-display:focus,.multi-select.open .multi-select-display{border-color:var(--red);box-shadow:0 0 0 3px rgba(200,16,46,.1);outline:none}
.multi-select-chips{display:flex;flex-wrap:wrap;gap:6px;flex:1;min-height:28px;align-items:center}
.multi-select-placeholder{font-size:.9rem;color:#aaa}
.multi-select-chip{display:inline-flex;align-items:center;gap:5px;background:var(--red);color:var(--white);font-size:.75rem;font-weight:600;padding:4px 10px 4px 10px;border-radius:980px;white-space:nowrap}
.multi-select-chip-remove{display:flex;align-items:center;justify-content:center;width:14px;height:14px;border-radius:50%;background:rgba(255,255,255,.25);cursor:pointer;flex-shrink:0;transition:background var(--transition);border:none;padding:0;color:var(--white)}
.multi-select-chip-remove:hover{background:rgba(255,255,255,.45)}
.multi-select-chip-remove svg{width:8px;height:8px;stroke:var(--white);fill:none;stroke-width:3}
.multi-select-arrow{width:16px;height:16px;stroke:var(--grey);fill:none;flex-shrink:0;transition:transform var(--transition)}
.multi-select.open .multi-select-arrow{transform:rotate(180deg)}
.multi-select-dropdown{display:none;position:absolute;top:calc(100% + 4px);left:0;right:0;background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-sm);box-shadow:var(--shadow-lg);z-index:200;overflow:hidden;max-height:320px;overflow-y:auto}
.multi-select.open .multi-select-dropdown{display:block}
.multi-select-option{display:flex;align-items:center;gap:12px;padding:13px 16px;font-size:.875rem;color:var(--charcoal);cursor:pointer;transition:background var(--transition)}
.multi-select-option:hover{background:var(--light-grey)}
.multi-select-option.selected{color:var(--red);font-weight:600;background:rgba(200,16,46,.04)}
.multi-select-check{width:20px;height:20px;border-radius:6px;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--transition)}
.multi-select-check svg{width:11px;height:11px;stroke:var(--white);fill:none;opacity:0;transition:opacity var(--transition)}
.multi-select-option.selected .multi-select-check{background:var(--red);border-color:var(--red)}
.multi-select-option.selected .multi-select-check svg{opacity:1}

.about-story{padding:var(--section-pad) 0}
.about-story-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;margin-bottom:80px}
.about-story-image{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/3;box-shadow:var(--shadow-lg)}
.about-story-image img{width:100%;height:100%;object-fit:cover}
.about-story-content h2{margin-bottom:20px}
.about-story-content p{font-size:.95rem;line-height:1.8;margin-bottom:16px}
.values-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:56px}
.value-card{padding:32px;border-radius:var(--radius);border:1px solid var(--border);transition:all var(--transition)}
.value-card:hover{border-color:rgba(200,16,46,.2);box-shadow:var(--shadow);transform:translateY(-3px)}
.value-icon{width:48px;height:48px;border-radius:12px;background:rgba(200,16,46,.07);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.value-icon svg{width:22px;height:22px;stroke:var(--red);fill:none}
.value-card h3{font-size:.95rem;margin-bottom:8px}
.value-card p{font-size:.85rem}

.fade-up{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}
.fade-up:nth-child(2){transition-delay:.1s}
.fade-up:nth-child(3){transition-delay:.2s}
.fade-up:nth-child(4){transition-delay:.3s}
.fade-up:nth-child(5){transition-delay:.4s}
.fade-up:nth-child(6){transition-delay:.5s}

@media(max-width:1024px){
  :root{--section-pad:72px}
  .why-grid,.services-grid{grid-template-columns:repeat(2,1fr)}
  .steps-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .about-grid,.about-story-grid{grid-template-columns:1fr;gap:40px}
  .contact-grid{grid-template-columns:1fr}
  .offer-inner{flex-direction:column;text-align:center}
  .offer-text p{margin:0 auto 24px}
}
@media(max-width:768px){
  :root{--section-pad:56px}
  .site-nav,.header-cta{display:none}
  .mobile-menu-toggle{display:flex}
  .hero{height:85vh;min-height:560px}
  .hero-slide-content{margin-left:0;padding:0 24px}
  .hero-scroll-cue{display:none}
  .why-grid,.services-grid,.reviews-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .contact-form-wrap{padding:28px 24px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .values-grid{grid-template-columns:1fr}
  .cta-actions{flex-direction:column;align-items:center}
  .service-item{grid-template-columns:1fr}
  .hero-slide-content h1{font-size:2rem}
}
@media(max-width:480px){
  .hero-slide-actions{flex-direction:column}
  .hero-slide-actions .btn{justify-content:center}
  .about-stats{grid-template-columns:1fr}
}
