/* ==========================================================================
   PROJECT POWER — Stylesheet
   Design tokens
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Work+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --black:      #120E0C;
  --black-2:    #1C1613;
  --black-3:    #262019;
  --red:        #D62828;
  --red-dark:   #8C1C1C;
  --red-bright: #F03A3A;
  --cream:      #E9E4DA;
  --cream-dim:  #B9B2A6;
  --steel:      #6E6A65;
  --white:      #FAFAF7;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1160px;
  --radius: 2px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  background:var(--black);
  color:var(--cream);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }

a{ color:inherit; text-decoration:none; }

ul{ list-style:none; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:400;
  line-height:1.05;
  letter-spacing:0.5px;
  color:var(--white);
}

h1{ font-size:clamp(2.6rem, 6vw, 5rem); }
h2{ font-size:clamp(2rem, 4vw, 3.1rem); }
h3{ font-size:1.4rem; letter-spacing:0.3px; }

p{ color:var(--cream-dim); max-width:62ch; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

section{ padding:96px 0; position:relative; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--red-bright);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.eyebrow{
  color:var(--red);
  font-weight:700;
  font-size:0.82rem;
  letter-spacing:1.5px;
}

.stripe{
  width:56px;
  height:6px;
  background:var(--red);
  margin:14px 0 20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:0.98rem;
  border:2px solid var(--red);
  color:var(--white);
  background:transparent;
  cursor:pointer;
  transition:background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:hover{ background:var(--red); transform:translateY(-2px); }

.btn-solid{
  background:var(--red);
  border-color:var(--red);
}
.btn-solid:hover{ background:var(--red-bright); border-color:var(--red-bright); }

.btn-ghost{
  border-color:var(--steel);
  color:var(--cream);
}
.btn-ghost:hover{ background:var(--white); border-color:var(--white); color:var(--black); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(18,14,12,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(233,228,218,0.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 24px;
  max-width:var(--container);
  margin:0 auto;
}

.brand{
  font-family:var(--font-display);
  font-size:1.5rem;
  color:var(--white);
  display:flex;
  align-items:baseline;
  gap:6px;
}
.brand span{ color:var(--red); }

.nav-links{
  display:flex;
  gap:36px;
  align-items:center;
}
.nav-links a{
  font-weight:600;
  font-size:0.95rem;
  color:var(--cream-dim);
  position:relative;
  padding:6px 0;
  transition:color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--white); }
.nav-links a.active::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:100%; height:2px;
  background:var(--red);
}

.nav-cta{ display:flex; align-items:center; gap:20px; }
.nav-cta .btn{ padding:11px 22px; font-size:0.88rem; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--white); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  padding:80px 0 60px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:-10%; right:-8%;
  width:520px; height:520px;
  background:radial-gradient(circle, rgba(214,40,40,0.16) 0%, rgba(214,40,40,0) 70%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.85fr;
  gap:60px;
  align-items:center;
}
.hero-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--red);
  font-weight:700;
  font-size:0.85rem;
  letter-spacing:1.2px;
  margin-bottom:18px;
}
.hero-eyebrow .dot{ width:8px; height:8px; background:var(--red); border-radius:50%; }

.hero h1{ margin-bottom:22px; }
.hero h1 em{ font-style:normal; color:var(--red); }

.hero p.lead{
  font-size:1.15rem;
  max-width:46ch;
  margin-bottom:34px;
  color:var(--cream-dim);
}

.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }

.hero-stats{
  display:flex;
  gap:40px;
  padding-top:28px;
  border-top:1px solid rgba(233,228,218,0.12);
}
.hero-stats .stat b{
  display:block;
  font-family:var(--font-display);
  font-size:2rem;
  color:var(--white);
}
.hero-stats .stat span{ font-size:0.85rem; color:var(--cream-dim); }

/* Hero visual — CSS-built, no stock imagery */
.hero-visual{
  position:relative;
  aspect-ratio:4/5;
  background:var(--black-2);
  border:1px solid rgba(233,228,218,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  clip-path:polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}
.hero-visual .plate{
  width:64%;
  aspect-ratio:1;
  border-radius:50%;
  border:14px solid var(--red);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual .plate::after{
  content:'';
  width:38%;
  aspect-ratio:1;
  border-radius:50%;
  background:var(--black);
  border:2px solid rgba(233,228,218,0.15);
}
.hero-visual .bar{
  position:absolute;
  top:50%; left:-6%;
  width:112%; height:14px;
  background:linear-gradient(90deg, var(--steel), var(--cream-dim), var(--steel));
  transform:translateY(-50%);
  z-index:-1;
}
.hero-visual .tag{
  position:absolute;
  bottom:22px; left:22px;
  font-family:var(--font-display);
  font-size:0.95rem;
  color:var(--cream-dim);
  letter-spacing:1px;
}

/* ==========================================================================
   Section headers
   ========================================================================== */
.sec-head{ max-width:640px; margin-bottom:56px; }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:rgba(233,228,218,0.1);
  border:1px solid rgba(233,228,218,0.1);
}
.service-card{
  background:var(--black);
  padding:38px 30px;
  transition:background 0.25s ease;
}
.service-card:hover{ background:var(--black-2); }
.service-card .icon{ width:44px; height:44px; margin-bottom:24px; color:var(--red); }
.service-card h3{ margin-bottom:12px; }
.service-card p{ font-size:0.94rem; }

/* ==========================================================================
   Why / features (asymmetric two column)
   ========================================================================== */
.why{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:start;
}
.why-list{ display:flex; flex-direction:column; gap:0; }
.why-item{
  display:flex;
  gap:20px;
  padding:26px 0;
  border-top:1px solid rgba(233,228,218,0.1);
}
.why-item:last-child{ border-bottom:1px solid rgba(233,228,218,0.1); }
.why-item .num{
  font-family:var(--font-display);
  color:var(--red);
  font-size:1rem;
  min-width:28px;
}
.why-item h4{ font-family:var(--font-body); font-weight:700; color:var(--white); margin-bottom:6px; }
.why-item p{ font-size:0.92rem; margin:0; }

/* ==========================================================================
   Stat strip
   ========================================================================== */
.stat-strip{
  background:var(--red);
  padding:52px 0;
}
.stat-strip .container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
}
.stat-strip .stat{ color:var(--white); }
.stat-strip .stat b{
  display:block;
  font-family:var(--font-display);
  font-size:2.6rem;
}
.stat-strip .stat span{ font-size:0.88rem; color:rgba(250,250,247,0.85); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.testi-card{
  background:var(--black-2);
  border-left:3px solid var(--red);
  padding:30px;
}
.testi-card .stars{ color:var(--red); font-size:0.9rem; margin-bottom:16px; letter-spacing:2px; }
.testi-card p{ font-size:0.95rem; color:var(--cream); margin-bottom:20px; }
.testi-card .who{ font-size:0.85rem; color:var(--cream-dim); font-weight:600; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background:var(--black-2);
  border-top:1px solid rgba(233,228,218,0.1);
  border-bottom:1px solid rgba(233,228,218,0.1);
  padding:80px 0;
  text-align:center;
}
.cta-band h2{ margin-bottom:18px; }
.cta-band p{ margin:0 auto 34px; }
.cta-band .hero-actions{ justify-content:center; margin-bottom:0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  padding:70px 0 30px;
  border-top:1px solid rgba(233,228,218,0.1);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:50px;
}
.footer-grid h4{
  font-family:var(--font-body);
  font-size:0.85rem;
  letter-spacing:0.8px;
  color:var(--white);
  margin-bottom:18px;
}
.footer-grid ul li{ margin-bottom:10px; }
.footer-grid ul li a{ font-size:0.92rem; color:var(--cream-dim); transition:color 0.2s ease; }
.footer-grid ul li a:hover{ color:var(--white); }
.footer-grid p{ font-size:0.92rem; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding-top:26px;
  border-top:1px solid rgba(233,228,218,0.08);
  font-size:0.82rem;
  color:var(--steel);
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero{
  padding:64px 0 50px;
  border-bottom:1px solid rgba(233,228,218,0.08);
}
.page-hero .crumb{ font-size:0.85rem; color:var(--cream-dim); margin-bottom:16px; }
.page-hero .crumb a{ color:var(--cream-dim); }
.page-hero .crumb a:hover{ color:var(--red); }
.page-hero .crumb .sep{ margin:0 8px; color:var(--steel); }

/* ==========================================================================
   About page
   ========================================================================== */
.about-split{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.about-visual{
  background:var(--black-2);
  border:1px solid rgba(233,228,218,0.1);
  aspect-ratio:1/1;
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
}
.about-visual .cell{
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(233,228,218,0.08);
}
.about-visual .cell.fill{ background:var(--red); }
.about-visual svg{ width:38%; color:var(--white); }

.timings-table{ width:100%; border-collapse:collapse; margin-top:10px; }
.timings-table td{ padding:12px 0; border-bottom:1px solid rgba(233,228,218,0.1); font-size:0.95rem; }
.timings-table td:first-child{ color:var(--white); font-weight:600; width:46%; }
.timings-table td:last-child{ color:var(--cream-dim); }

/* ==========================================================================
   Services page detail
   ========================================================================== */
.service-detail{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:30px;
  padding:44px 0;
  border-top:1px solid rgba(233,228,218,0.1);
  align-items:start;
}
.service-detail:last-child{ border-bottom:1px solid rgba(233,228,218,0.1); }
.service-detail .icon-box{
  width:80px; height:80px;
  background:var(--black-2);
  border:1px solid rgba(233,228,218,0.1);
  display:flex; align-items:center; justify-content:center;
}
.service-detail .icon-box svg{ width:36px; height:36px; color:var(--red); }
.service-detail h3{ margin-bottom:10px; }
.service-detail .tags{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.service-detail .tags span{
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.4px;
  color:var(--cream-dim);
  border:1px solid rgba(233,228,218,0.18);
  padding:6px 12px;
}

/* ==========================================================================
   Gallery page
   ========================================================================== */
.gallery-note{
  background:var(--black-2);
  border-left:3px solid var(--red);
  padding:20px 24px;
  margin-bottom:50px;
  font-size:0.92rem;
  color:var(--cream-dim);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
}
.gallery-tile{
  aspect-ratio:1/1;
  background:var(--black-2);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  border:1px solid rgba(233,228,218,0.06);
  transition:background 0.2s ease;
}
.gallery-tile:hover{ background:var(--red); }
.gallery-tile:hover svg{ color:var(--white); }
.gallery-tile svg{ width:46px; height:46px; color:var(--red); transition:color 0.2s ease; }
.gallery-tile span{ font-size:0.85rem; font-weight:600; color:var(--cream-dim); text-align:center; padding:0 16px; }
.gallery-tile:hover span{ color:var(--white); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:70px;
  align-items:start;
}
.contact-info-list{ margin-top:30px; display:flex; flex-direction:column; gap:26px; }
.contact-info-item{ display:flex; gap:18px; }
.contact-info-item .icon-box{
  width:52px; height:52px; min-width:52px;
  background:var(--black-2);
  border:1px solid rgba(233,228,218,0.1);
  display:flex; align-items:center; justify-content:center;
}
.contact-info-item .icon-box svg{ width:24px; height:24px; color:var(--red); }
.contact-info-item h4{ font-family:var(--font-body); color:var(--white); font-size:0.98rem; margin-bottom:4px; }
.contact-info-item p{ font-size:0.92rem; margin:0; }

.map-embed{
  margin-top:34px;
  border:1px solid rgba(233,228,218,0.1);
  filter:grayscale(1) invert(0.92) contrast(0.9);
  aspect-ratio:16/10;
  width:100%;
}

.form-panel{
  background:var(--black-2);
  border:1px solid rgba(233,228,218,0.1);
  padding:44px;
}
.form-row{ margin-bottom:22px; }
.form-row label{
  display:block;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.4px;
  color:var(--cream-dim);
  margin-bottom:9px;
}
.form-row input, .form-row select, .form-row textarea{
  width:100%;
  background:var(--black);
  border:1px solid rgba(233,228,218,0.18);
  color:var(--white);
  padding:13px 14px;
  font-family:var(--font-body);
  font-size:0.95rem;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  border-color:var(--red);
  outline:none;
}
.form-row textarea{ resize:vertical; min-height:100px; }
.form-note{ font-size:0.82rem; color:var(--steel); margin-top:16px; }
.form-status{ font-size:0.88rem; margin-top:16px; color:var(--red-bright); display:none; }

/* ==========================================================================
   FAQ (contact page)
   ========================================================================== */
.faq-item{ border-top:1px solid rgba(233,228,218,0.1); }
.faq-item:last-child{ border-bottom:1px solid rgba(233,228,218,0.1); }
.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  color:var(--white);
  font-family:var(--font-body);
  font-weight:700;
  font-size:1rem;
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.faq-q .plus{ font-family:var(--font-display); color:var(--red); font-size:1.3rem; transition:transform 0.2s ease; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.25s ease;
}
.faq-a p{ padding-bottom:22px; font-size:0.94rem; }

/* WhatsApp float */
.wa-float{
  position:fixed;
  bottom:24px; right:24px;
  width:56px; height:56px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  box-shadow:0 6px 18px rgba(0,0,0,0.4);
  transition:transform 0.2s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; color:#fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero-grid, .why, .about-split, .contact-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:420px; margin:0 auto; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .testimonials{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 760px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .nav.open .nav-links{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%; left:0; right:0;
    background:var(--black);
    padding:24px;
    gap:18px;
    border-bottom:1px solid rgba(233,228,218,0.1);
  }
  section{ padding:64px 0; }
  .hero{ padding:50px 0 40px; }
  .services-grid{ grid-template-columns:1fr; }
  .stat-strip .container{ justify-content:flex-start; gap:36px 50px; }
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
  .gallery-grid{ grid-template-columns:1fr 1fr; }
  .form-panel{ padding:28px; }
  .service-detail{ grid-template-columns:60px 1fr; }
}
