/* ============================================================
   FLASH LAUNDRY EXPRESS — design tokens
   Palet terinspirasi dari "panel mesin cuci": putih busa,
   merah marun (utama), merah flash (aksen), kuning cepat, mint segar.
   ============================================================ */
:root{
  --suds-white:#F6F9FB;
  --panel-white:#FFFFFF;
  --maroon:#450A0A;
  --maroon-soft:#7F1D1D;
  --brand-red:#DC2626;
  --brand-red-dark:#B91C1C;
  --flash-yellow:#FFC53D;
  --mint-fresh:#2FD3B8;
  --steam-grey:#5B6B80;
  --line-grey:#E1E9F0;

  --font-display:"Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body:"Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:28px;
  --shadow-sm:0 2px 10px rgba(69,10,10,.06);
  --shadow-md:0 12px 32px rgba(69,10,10,.10);
  --shadow-lg:0 20px 48px rgba(69,10,10,.16);
  --container:1160px;
  --header-h:76px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 12px); overflow-x:hidden;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--maroon);
  background:var(--suds-white);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
  overflow-x:hidden;
  padding-top:var(--header-h);
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul,ol{margin:0; padding:0; list-style:none;}
h1,h2,h3{font-family:var(--font-display); margin:0 0 .5em; line-height:1.15; letter-spacing:-.01em;}
p{margin:0 0 1em;}
button{font:inherit; background:none; border:none; cursor:pointer; color:inherit;}

.container{max-width:var(--container); margin-inline:auto; padding-inline:20px;}
.container--narrow{max-width:760px;}

.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--maroon); color:#fff; padding:12px 18px; border-radius:8px; z-index:999;
}
.skip-link:focus{left:20px; top:20px;}

:focus-visible{outline:3px solid var(--flash-yellow); outline-offset:2px;}

section{padding:88px 0;}
@media (max-width:720px){ section{padding:64px 0;} }

.eyebrow{
  font-family:var(--font-display); font-weight:600; font-size:.8rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--brand-red);
  margin:0 0 .6em;
}
.eyebrow--center{text-align:center;}
.section-title{font-size:clamp(1.6rem,3vw,2.1rem); max-width:640px;}
.section-title--center{text-align:center; margin-inline:auto; margin-bottom:48px;}

/* buttons */
.btn{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  font-weight:600; font-size:.95rem; padding:13px 24px; border-radius:999px;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn--primary{background:var(--brand-red); color:#fff; box-shadow:var(--shadow-sm);}
.btn--primary:hover{background:var(--brand-red-dark); transform:translateY(-2px); box-shadow:var(--shadow-md);}
.btn--ghost{background:transparent; color:var(--maroon); border:2px solid var(--line-grey);}
.btn--ghost:hover{border-color:var(--brand-red); color:var(--brand-red); transform:translateY(-2px);}
.btn--outline{background:transparent; color:var(--brand-red); border:2px solid var(--brand-red);}
.btn--outline:hover{background:var(--brand-red); color:#fff; transform:translateY(-2px);}
.btn--lg{padding:16px 30px; font-size:1.02rem;}
.btn--sm{padding:12px 16px; font-size:.85rem;}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed; top:0; left:0; right:0; width:100%; z-index:100;
  background:rgba(246,249,251,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.site-header.is-scrolled{
  background:rgba(246,249,251,.97);
  border-color:var(--line-grey);
  box-shadow:var(--shadow-sm);
}
.header-inner{
  height:var(--header-h); display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand img{height:34px; width:auto;}
.main-nav{display:flex; align-items:center; gap:26px; flex-wrap:wrap;}
.main-nav a{
  font-size:.92rem; font-weight:500; color:var(--maroon-soft);
  padding-block:4px; border-bottom:2px solid transparent; transition:color .15s ease, border-color .15s ease;
}
.main-nav a:hover, .main-nav a.is-active{color:var(--brand-red); border-color:var(--brand-red);}
.header-actions{display:flex; align-items:center; gap:14px;}

.nav-toggle{display:none; flex-direction:column; gap:5px; padding:13px; min-width:44px; min-height:44px; align-items:center; justify-content:center; }
.nav-toggle span{width:22px; height:2px; background:var(--maroon); border-radius:2px; transition:transform .2s ease, opacity .2s ease;}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:900px){
  .main-nav{
    position:fixed; inset:var(--header-h) 0 0 0; height:calc(100vh - var(--header-h));
    background:var(--suds-white); flex-direction:column; align-items:flex-start; justify-content:flex-start;
    padding:28px 24px; gap:6px; transform:translateX(100%); transition:transform .25s ease;
    overflow-y:auto;
  }
  .main-nav.is-open{transform:translateX(0);}
  .main-nav a{width:100%; padding:14px 4px; font-size:1.05rem; border-bottom:1px solid var(--line-grey);}
  .nav-toggle{display:flex;}
}

/* ============================================================
   HERO + DIAL
   ============================================================ */
.hero{padding-top:64px;}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;}
.hero-sub{font-size:1.08rem; color:var(--steam-grey); max-width:52ch;}
.hero h1{font-size:clamp(2.1rem,4.4vw,3.2rem);}
.hero h1 .hl{color:var(--brand-red); position:relative; white-space:nowrap;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 34px;}

.trust-strip{display:flex; gap:28px; flex-wrap:wrap;}
.trust-strip li{font-size:.9rem; color:var(--steam-grey);}
.trust-strip strong{
  font-family:var(--font-display); color:var(--maroon); font-size:1.3rem; margin-right:4px;
}

.hero-visual{position:relative; display:flex; align-items:center; justify-content:center; min-height:380px;}
.hero-photo{
  width:280px; height:280px; border-radius:44% 56% 61% 39% / 45% 40% 60% 55%;
  overflow:hidden; box-shadow:var(--shadow-lg); position:relative;
}
.hero-photo img{width:100%; height:100%; object-fit:cover;}
.dial{position:absolute; right:-6px; bottom:-18px; filter:drop-shadow(0 10px 24px rgba(69,10,10,.18));}
.dial-ticks .tick{stroke:var(--line-grey); stroke-linecap:round;}
.tick--major{stroke:var(--maroon-soft); stroke-width:3;}
.tick--minor{stroke-width:2;}
.dial-track{fill:var(--panel-white); stroke:var(--line-grey); stroke-width:10;}
.dial-progress{
  fill:none; stroke:var(--flash-yellow); stroke-width:10; stroke-linecap:round;
  transform:rotate(-90deg); transform-origin:110px 110px;
  stroke-dasharray:100; stroke-dashoffset:100;
  animation:dialFill 1.8s .3s cubic-bezier(.34,1.2,.4,1) forwards;
}
.dial-num{font-family:var(--font-display); font-weight:700; font-size:2.6rem; fill:var(--maroon);}
.dial-label{font-family:var(--font-display); font-weight:600; font-size:.62rem; letter-spacing:.12em; fill:var(--brand-red);}

@keyframes dialFill{ to{ stroke-dashoffset:6; } }

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr; gap:40px;}
  .hero-visual{order:-1; min-height:260px;}
  .hero-photo{width:220px; height:220px;}
  .dial{width:170px; height:170px;}
  .hero-ctas{justify-content:center;}
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;}
.about-copy p{color:var(--steam-grey); max-width:56ch;}
.about-stats{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.stat-card{
  background:var(--panel-white); border:1px solid var(--line-grey); border-radius:var(--radius-md);
  padding:24px 20px; text-align:center; box-shadow:var(--shadow-sm);
}
.stat-card strong{display:block; font-family:var(--font-display); font-size:2.1rem; color:var(--brand-red);}
.stat-card span{font-size:.85rem; color:var(--steam-grey);}

.press-mention{
  display:flex; align-items:flex-start; gap:8px; font-size:.88rem; color:var(--steam-grey);
  margin:-8px 0 22px;
}
.press-mention svg{flex-shrink:0; margin-top:2px; color:var(--brand-red);}
.press-mention a{color:var(--brand-red); font-weight:600;}
.press-mention a:hover{text-decoration:underline;}

@media (max-width:900px){
  .about-grid{grid-template-columns:1fr;}
  .about-copy .btn{display:flex; width:max-content; margin-inline:auto;}
}

/* ============================================================
   AREA LAYANAN (SEO lokal)
   ============================================================ */
.areas-caption{
  text-align:center; max-width:56ch; margin:0 auto 32px; color:var(--steam-grey);
}
.area-chips{
  display:flex; flex-wrap:wrap; justify-content:center; gap:12px; padding:0; margin:0; list-style:none;
}
.area-chips li{
  background:var(--panel-white); border:1px solid var(--line-grey); border-radius:999px;
  padding:10px 22px; font-weight:600; font-size:.92rem; color:var(--maroon);
  box-shadow:var(--shadow-sm);
}

/* ============================================================
   WHY US — control panel
   ============================================================ */
.why{background:var(--maroon); color:#fff;}
.why .eyebrow{color:var(--flash-yellow);}
.why .section-title{color:#fff;}
.panel{
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
  background:rgba(255,255,255,.08); border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.panel-switch{
  background:var(--maroon-soft); padding:34px 26px; position:relative;
  display:flex; flex-direction:column; align-items:flex-start; gap:10px;
}
.knob{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.06); border:2px solid rgba(255,255,255,.18); color:var(--flash-yellow);
}
.led{
  position:absolute; top:28px; right:26px; width:9px; height:9px; border-radius:50%;
  background:rgba(255,255,255,.2); transition:background .3s ease, box-shadow .3s ease;
}
.panel-switch.is-active .led{background:var(--mint-fresh); box-shadow:0 0 10px 2px rgba(47,211,184,.7);}
.switch-label{
  font-family:var(--font-display); font-weight:600; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase;
}
.panel-switch p{font-size:.9rem; color:rgba(255,255,255,.68); margin:0;}

@media (max-width:900px){ .panel{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .panel{grid-template-columns:1fr;} }

/* ============================================================
   PROCESS — sequence
   ============================================================ */
.process-steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px; counter-reset:step; position:relative;
}
.process-steps li{
  background:var(--panel-white); border:1px solid var(--line-grey); border-radius:var(--radius-md);
  padding:32px 26px; box-shadow:var(--shadow-sm);
}
.step-no{
  display:inline-block; font-family:var(--font-display); font-weight:700; font-size:.85rem;
  color:var(--brand-red); background:rgba(220,38,38,.09); padding:4px 12px; border-radius:999px; margin-bottom:14px;
}
.process-steps h3{font-size:1.2rem;}
.process-steps p{color:var(--steam-grey); margin:0;}

@media (max-width:800px){ .process-steps{grid-template-columns:1fr;} }

/* ============================================================
   VIDEO
   ============================================================ */
.video-caption{
  text-align:center; max-width:56ch; margin:0 auto 40px; color:var(--steam-grey);
}
.video-embed{
  position:relative; max-width:760px; margin:0 auto; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:16/9; background:var(--maroon);
}
.video-play-facade{
  position:relative; width:100%; height:100%; display:block; padding:0; border:0; cursor:pointer;
}
.video-play-facade img{ width:100%; height:100%; object-fit:cover; display:block; }
.video-play-icon{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:72px; height:72px; border-radius:50%; background:var(--brand-red); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md);
  transition:transform .2s ease, background-color .2s ease;
}
.video-play-facade:hover .video-play-icon{ transform:translate(-50%,-50%) scale(1.08); background:var(--brand-red-dark); }
.video-iframe{ width:100%; height:100%; border:0; display:block; }

.video-placeholder{
  max-width:760px; margin:0 auto; aspect-ratio:16/9; border-radius:var(--radius-lg);
  border:2px dashed var(--line-grey); background:var(--panel-white);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  color:var(--steam-grey); text-align:center; padding:24px;
}
.video-placeholder-icon{ color:var(--brand-red); opacity:.45; }
.video-placeholder p{ margin:0; font-size:.95rem; }

/* Varian vertikal untuk video YouTube Shorts (9:16) — lebar dibatasi lebih
   sempit supaya tingginya tetap wajar, tidak memenuhi layar. */
.video-embed.video--portrait,
.video-placeholder.video--portrait{
  max-width:380px; aspect-ratio:9/16;
}

@media (max-width:600px){
  .video-play-icon{ width:58px; height:58px; }
  .video-embed.video--portrait,
  .video-placeholder.video--portrait{ max-width:300px; }
}

/* ============================================================
   PACKAGES
   ============================================================ */
.package-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:stretch;}
.package-card{
  background:var(--panel-white); border:1px solid var(--line-grey); border-radius:var(--radius-lg);
  padding:34px 30px; display:flex; flex-direction:column; position:relative; box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease;
}
.package-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.package-card--featured{
  background:var(--maroon); color:#fff; border-color:var(--maroon); transform:scale(1.03);
  box-shadow:var(--shadow-md);
}
.package-card--featured:hover{transform:scale(1.03) translateY(-6px);}
.package-badge{
  position:absolute; top:-14px; left:30px; background:var(--flash-yellow); color:var(--maroon);
  font-size:.75rem; font-weight:700; padding:5px 14px; border-radius:999px; letter-spacing:.03em;
}
.package-card h3{font-size:1.3rem;}
.package-desc{color:var(--steam-grey); font-size:.92rem;}
.package-card--featured .package-desc{color:rgba(255,255,255,.72);}
.package-list{margin:6px 0 26px; display:flex; flex-direction:column; gap:10px;}
.package-list li{
  font-size:.92rem; padding-left:22px; position:relative;
}
.package-list li::before{
  content:""; position:absolute; left:0; top:.5em; width:8px; height:8px; border-radius:50%; background:var(--mint-fresh);
}
.package-card .btn{margin-top:auto; align-self:flex-start;}

@media (max-width:900px){
  .package-grid{grid-template-columns:1fr; max-width:440px; margin-inline:auto;}
  .package-card--featured{transform:none;}
  .package-card--featured:hover{transform:translateY(-6px);}
  .package-card .btn{align-self:center;}
}

/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.testimonial-slider{
  position:relative; max-width:720px; margin:0 auto 48px;
  background:var(--panel-white); border:1px solid var(--line-grey); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); overflow:hidden;
}
.testimonial-track{ display:flex; transition:transform .55s cubic-bezier(.65,0,.35,1); }
.testimonial-slide{
  flex:0 0 100%; box-sizing:border-box; padding:48px 64px 38px; text-align:center;
}
.testimonial-tag{
  display:inline-block; font-family:var(--font-display); font-size:.7rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; color:var(--maroon-soft);
  background:rgba(69,10,10,.07); padding:5px 14px; border-radius:999px; margin-bottom:20px;
}
.testimonial-quote{
  font-family:var(--font-display); font-size:1.15rem; line-height:1.6; color:var(--maroon); margin:0 0 24px;
}
.testimonial-author{ display:flex; align-items:center; justify-content:center; gap:12px; }
.testimonial-avatar{
  width:40px; height:40px; border-radius:50%; background:var(--brand-red); color:#fff; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:.95rem;
}
.testimonial-role{ font-size:.88rem; color:var(--steam-grey); font-weight:600; }

.testimonial-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%;
  background:var(--panel-white); border:1px solid var(--line-grey); color:var(--maroon);
  display:flex; align-items:center; justify-content:center; font-size:1rem; box-shadow:var(--shadow-sm);
  transition:background .15s ease, color .15s ease, border-color .15s ease;
}
.testimonial-arrow:hover{ background:var(--brand-red); color:#fff; border-color:var(--brand-red); }
.testimonial-arrow--prev{ left:14px; }
.testimonial-arrow--next{ right:14px; }

.testimonial-dots{ display:flex; justify-content:center; gap:8px; padding-bottom:24px; }
.testimonial-dot{
  width:8px; height:8px; border-radius:50%; background:var(--line-grey);
  padding:8px; background-clip:content-box; /* dot visual tetap 8px, area tap jadi 24px */
  transition:background .2s ease, transform .2s ease;
}
.testimonial-dot.is-active{ background:var(--brand-red); transform:scale(1.35); }

@media (max-width:640px){
  .testimonial-slide{ padding:40px 20px 30px; }
  .testimonial-arrow{ display:none; }
  .testimonial-quote{ font-size:1.05rem; }
}

/* ============================================================
   REVIEWS + GALLERY
   ============================================================ */
.reviews-cta{
  text-align:center; max-width:520px; margin:0 auto 46px; display:flex; flex-direction:column;
  align-items:center; gap:8px;
}
.stars{display:flex; gap:4px; color:var(--flash-yellow);}
.reviews-cta p{color:var(--steam-grey); margin:2px 0 14px;}
.gallery{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
.gallery-item{
  border-radius:var(--radius-md); overflow:hidden; aspect-ratio:1/1; box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover{transform:translateY(-4px); box-shadow:var(--shadow-md);}
.gallery-item img{width:100%; height:100%; object-fit:cover;}

@media (max-width:800px){ .gallery{grid-template-columns:1fr 1fr;} }

/* lightbox */
.lightbox{
  position:fixed; inset:0; background:rgba(69,10,10,.88); display:none; align-items:center; justify-content:center;
  z-index:1000; padding:24px;
}
.lightbox.is-open{display:flex;}
.lightbox img{max-width:min(90vw,720px); max-height:85vh; border-radius:var(--radius-md); box-shadow:var(--shadow-lg);}
.lightbox-close{
  position:absolute; top:24px; right:24px; width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.12); color:#fff; font-size:1.4rem; display:flex; align-items:center; justify-content:center;
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.accordion-item{border-bottom:1px solid var(--line-grey);}
.accordion-trigger{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:20px 4px; text-align:left; font-weight:600; font-size:1.02rem;
}
.accordion-icon{font-family:var(--font-display); color:var(--brand-red); transition:transform .2s ease; font-size:1.3rem;}
.accordion-trigger[aria-expanded="true"] .accordion-icon{transform:rotate(45deg);}
.accordion-panel{
  max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s ease;
}
.accordion-panel p{color:var(--steam-grey); padding:0 4px 0 4px; margin:0 0 20px;}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:start;}
.contact-details{margin-top:28px; display:flex; flex-direction:column; gap:16px;}
.contact-details dt{font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:var(--steam-grey);}
.contact-details dd{margin:2px 0 0; font-weight:600; font-size:1.02rem;}
.contact-details dd a:hover{color:var(--brand-red);}

.branch-panel{background:var(--panel-white); border:1px solid var(--line-grey); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm);}
.branch-tabs{display:flex; border-bottom:1px solid var(--line-grey);}
.branch-tab{flex:1; padding:16px; font-weight:600; font-size:.9rem; color:var(--steam-grey); border-bottom:3px solid transparent;}
.branch-tab.is-active{color:var(--brand-red); border-color:var(--brand-red); background:rgba(220,38,38,.05);}
.branch-view{padding:24px;}
.branch-view[hidden]{display:none;}
.branch-address{font-style:normal; font-size:1rem; font-weight:600; margin-bottom:8px; display:block;}
.branch-maplink{color:var(--brand-red); font-weight:600; font-size:.9rem;}
.branch-embed{margin-top:16px; border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--line-grey);}
.branch-embed iframe{width:100%; height:260px; border:0; display:block;}

@media (max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
  .contact-info .btn{display:flex; width:max-content; margin-inline:auto;}
}

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.fab-wa{
  position:fixed; right:22px; bottom:22px; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); z-index:90; transition:transform .2s ease;
}
.fab-wa:hover{transform:scale(1.08);}
.back-to-top{
  position:fixed; right:22px; bottom:90px; width:44px; height:44px; border-radius:50%;
  background:var(--panel-white); border:1px solid var(--line-grey); color:var(--maroon);
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-sm);
  opacity:0; visibility:hidden; transform:translateY(10px); transition:all .25s ease; z-index:90;
}
.back-to-top.is-visible{opacity:1; visibility:visible; transform:translateY(0);}

@media (max-width:600px){
  .fab-wa{right:16px; bottom:16px; width:52px; height:52px;}
  .back-to-top{right:16px; bottom:78px;}
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--maroon); color:rgba(255,255,255,.75); padding-top:64px;}
.footer-inner{display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.12);}
.footer-brand{max-width:340px;}
.footer-brand p{font-size:.92rem;}
.footer-social{display:flex; gap:10px;}
.footer-social a{
  width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; font-size:.78rem; font-weight:700; letter-spacing:.02em;
}
.footer-social a:hover{background:var(--brand-red);}
.footer-nav{display:flex; flex-direction:column; gap:12px; font-size:.92rem;}
.footer-nav a:hover{color:#fff;}
.footer-legal{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  padding-block:24px; font-size:.82rem; color:rgba(255,255,255,.5);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease;}
.reveal.is-visible{opacity:1; transform:translateY(0);}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1; transform:none; transition:none;}
  .dial-progress{animation:none; stroke-dashoffset:6;}
  *{transition-duration:.01ms !important; animation-duration:.01ms !important;}
}
