/* ====== Design tokens (translated from your CSS vars) ====== */
:root{
  --font-size: 16px;

  --background: #ffffff;
  --foreground: #0f0f12;

  --primary: #030213;
  --primary-foreground: #ffffff;

  --muted: #ececf0;
  --muted-foreground: #717182;

  --border: rgba(0,0,0,.1);
  --radius: 0.625rem;

  /* Hero-specific */
  --hero-overlay: rgba(0,0,0,.50);
  --hero-text: #ffffff;
  --hero-sub: rgba(255,255,255,.85);

  /* Buttons */
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
}

*{ box-sizing: border-box; }
html{ font-size: var(--font-size); }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
}

a{ color: inherit; text-decoration: none; }

/* ====== Hero layout (matches your React/Tailwind structure) ====== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: var(--hero-overlay);
}

.hero-inner{
  position: relative;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
}

/* Nav */
.hero-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 24px;
}
.brand{
  color: var(--hero-text);
  font-size: 24px;
  letter-spacing: .08em;
}
.nav-links{
  display:flex;
  gap:16px;
}
.nav-links a{
  color: var(--hero-text);
  transition: color .2s ease;
  display:none; /* hidden on mobile like `hidden md:block` */
}
.nav-links a:hover{
  color: rgba(255,255,255,.85);
}

/* Center content */
.hero-content{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 24px;
}
.hero-copy{
  max-width: 56rem; /* ~max-w-4xl */
  text-align:center;
  color: var(--hero-text);
}
.hero-copy h1{
  margin:0 0 24px;
  font-weight: 600;
  line-height: 1.05;
  font-size: 48px; /* mobile default */
}
.hero-sub{
  margin:0 0 32px;
  font-size: 20px;
  color: var(--hero-sub);
}

/* Meta row */
.hero-meta{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin: 0 0 32px;
}
.meta-item{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.92);
}
.icon{
  width: 20px;
  height: 20px;
}

/* Buttons */
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
  justify-content:center;
}

.btn{
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 32px;
  cursor:pointer;
  border: 2px solid transparent;
  transition: transform .08s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover{
  background: var(--blue-hover);
}

.btn-outline{
  background: transparent;
  border-color: #fff;
  color:#fff;
}
.btn-outline:hover{
  background: #fff;
  color:#000;
}

/* Simple content sections */
.section{
  padding: 64px 24px;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

/* ====== Responsive rules matching Tailwind breakpoints ====== */
@media (min-width: 768px){
  .nav-links a{ display:inline-block; } /* md:block */
  .hero-copy h1{ font-size: 72px; }     /* md:text-7xl */
  .hero-sub{ font-size: 24px; }        /* md:text-2xl */

  .hero-meta{
    flex-direction:row;                 /* sm:flex-row-ish */
    gap:24px;
  }
  .hero-actions{
    flex-direction:row;                 /* sm:flex-row */
  }
  .hero-nav{ padding: 24px 48px; }      /* md:px-12 */
}
/* ===== Services section (vanilla version of your React/Tailwind) ===== */
.services{
  padding: 80px 24px;
  background: #f9fafb; /* ~bg-gray-50 */
  color: #0f0f12;
}

.services .container{
  width: min(1152px, 92vw); /* ~max-w-6xl */
  margin: 0 auto;
}

.services-head{
  text-align: center;
  margin-bottom: 64px;
}

.services-head h2{
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
}

.services-head p{
  margin: 0 auto;
  max-width: 42rem; /* ~max-w-2xl */
  font-size: 20px;
  color: #4b5563; /* ~text-gray-600 */
}

.services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; /* ~gap-8 */
}

.service-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  padding: 24px;
  transition: box-shadow .2s ease, transform .08s ease;
}

.service-card:hover{
  box-shadow: 0 14px 35px rgba(0,0,0,.12); /* ~hover:shadow-lg */
}

.service-icon{
  width: 48px;
  height: 48px;
  border-radius: 12px; /* ~rounded-lg */
  background: #2563eb; /* ~bg-blue-600 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.service-card .icon{
  width: 24px;
  height: 24px;
}

.service-card h3{
  margin: 0 0 10px;
  font-size: 24px; /* ~text-2xl */
  font-weight: 600;
}

.service-card p{
  margin: 0;
}

.service-card .muted{
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.service-price{
  margin-top: 16px;
  color: #2563eb; /* ~text-blue-600 */
  font-weight: 600;
}

.services-includes{
  margin-top: 48px;
  padding: 32px;
  background: #eff6ff; /* ~bg-blue-50 */
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.12);
}

.services-includes h3{
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
}

.includes-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  color: #374151; /* ~text-gray-700 */
}

.includes-grid li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check{
  color: #2563eb;
  margin-top: 2px;
  font-weight: 700;
}

/* md breakpoint */
@media (min-width: 768px){
  .services{ padding: 80px 48px; } /* md:px-12 vibe */
  .services-head h2{ font-size: 48px; } /* md:text-5xl */
  .services-grid{ grid-template-columns: 1fr 1fr; }
  .includes-grid{ grid-template-columns: 1fr 1fr; }
}
/* ===== Testimonials ===== */
.testimonials{
  padding: 80px 24px;
  background: #f9fafb; /* bg-gray-50 */
}

.testimonials .container{
  width: min(1152px, 92vw); /* max-w-6xl */
  margin: 0 auto;
}

.testimonials-head{
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-head h2{
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 600;
}

.testimonials-head p{
  margin: 0;
  font-size: 20px;
  color: #4b5563; /* text-gray-600 */
}

.testimonials-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.testimonial-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 24px;
}

.stars{
  color: #facc15; /* yellow-400 */
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151; /* text-gray-700 */
}

.testimonial-name{
  margin: 0;
  font-size: 14px;
  color: #6b7280; /* text-gray-500 */
}

/* md breakpoint */
@media (min-width: 768px){
  .testimonials{ padding: 80px 48px; }
  .testimonials-head h2{ font-size: 48px; }
  .testimonials-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ===== About section ===== */
.about{
  padding: 80px 24px;
}

.about .container{
  width: min(1152px, 92vw); /* max-w-6xl */
  margin: 0 auto;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px; /* gap-12 */
  align-items: center;
}

.about-copy h2{
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 600;
}

.about-copy p{
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563; /* text-gray-600 */
}

.about-stats{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-value{
  font-size: 36px; /* text-4xl */
  font-weight: 600;
  color: #2563eb; /* text-blue-600 */
  margin-bottom: 4px;
}

.stat-label{
  font-size: 16px;
  color: #4b5563;
}

.about-media{
  position: relative;
}

.about-media img{
  width: 100%;
  height: 384px; /* h-96 */
  object-fit: cover;
  border-radius: 14px; /* rounded-lg */
  box-shadow: 0 20px 45px rgba(0,0,0,.18); /* shadow-xl */
  display: block;
}

/* md breakpoint */
@media (min-width: 768px){
  .about{ padding: 80px 48px; } /* md:px-12 */
  .about-copy h2{ font-size: 48px; } /* md:text-5xl */
  .about-grid{
    grid-template-columns: 1fr 1fr;
  }
}
/* ===== FAQ section ===== */
.faq {
  padding: 80px 24px;
  background: #f9fafb; /* matches .services and .testimonials */
  color: #0f0f12;
}
.faq .container {
  width: min(800px, 92vw);
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.faq-head h2 {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 600;
}
.faq-head p {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 20px;
  color: #4b5563;
}
.faq details {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 18px 24px;
  transition: box-shadow .2s ease;
}
.faq details[open] {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
.faq summary {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}
.faq p {
  margin: 12px 0 0 0;
  color: #374151;
  font-size: 16px;
}
@media (min-width: 768px) {
  .faq { padding: 80px 48px; }
  .faq-head h2 { font-size: 48px; }
}
/* ===== Contact ===== */
.contact{
  padding: 80px 24px;
}

.contact .container{
  width: min(1152px, 92vw); /* max-w-6xl */
  margin: 0 auto;
}

.contact-head{
  text-align: center;
  margin-bottom: 64px;
}

.contact-head h2{
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 600;
}

.contact-head p{
  margin: 0;
  font-size: 20px;
  color: #4b5563; /* text-gray-600 */
}

/* 1 col mobile, 3 cols desktop */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-side{
  display: grid;
  gap: 24px; /* space-y-6 */
}

/* Card */
.c-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
}

.c-card-head{
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.c-card-head h3{
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.c-card-body{
  padding: 24px;
}

.c-pad-top{
  padding-top: 24px; /* pt-6 */
}

/* Form */
.form{
  display: grid;
  gap: 18px; /* space-y-6 vibe */
}

.field{
  display: grid;
  gap: 8px;
}

.field label{
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.field input,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: #111827;
  font-size: 16px;
}

.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

/* Buttons (reuse your existing .btn if you already have one) */
.btn-full{ width: 100%; }

/* If you already defined .btn/.btn-primary in hero styles, you can skip these.
   Otherwise keep them for consistency: */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .08s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: #2563eb;
  color: #fff;
}
.btn-primary:hover{ background: #1d4ed8; }

.btn-outline-blue{
  background: transparent;
  border-color: #2563eb;
  color: #2563eb;
}
.btn-outline-blue:hover{
  background: #2563eb;
  color: #fff;
}

/* Info rows */
.info-row{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.info-row:last-child{ margin-bottom: 0; }

.info-icon{
  color: #2563eb;
  margin-top: 3px; /* mt-1 */
}
.icon{
  width: 20px;
  height: 20px;
}

.info-label{
  font-size: 12px;
  color: #6b7280; /* text-gray-500 */
  margin-bottom: 4px;
}
.info-value{
  color: #111827;
}
.info-value a{
  color: inherit;
  text-decoration: none;
}
.info-hours{
  font-size: 14px;
  color: #111827;
}

/* Emergency panel */
.emergency{
  padding: 24px;
  background: #eff6ff; /* bg-blue-50 */
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.12);
}

.emergency h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.emergency p{
  margin: 0 0 12px;
  font-size: 14px;
  color: #4b5563;
}

/* md breakpoint (3 columns, form spans 2) */
@media (min-width: 768px){
  .contact{ padding: 80px 48px; } /* md:px-12 */
  .contact-head h2{ font-size: 48px; } /* md:text-5xl */

  .contact-grid{
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .contact-form{
    grid-column: span 2;
  }
}
/* ===== Footer ===== */
.site-footer{
  background: #111827; /* bg-gray-900 */
  color: #fff;
  padding: 48px 24px;
}

.site-footer .container{
  width: min(1152px, 92vw); /* max-w-6xl */
  margin: 0 auto;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

/* Brand */
.footer-brand h3{
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: .08em;
}

.footer-brand p{
  margin: 0 0 16px;
  color: #9ca3af; /* text-gray-400 */
  max-width: 28rem;
}

.footer-social{
  display: flex;
  gap: 16px;
}

.footer-social a{
  color: #9ca3af;
  transition: color .2s ease;
}

.footer-social a:hover{
  color: #60a5fa; /* blue-400 */
}

.footer-social .icon{
  width: 20px;
  height: 20px;
}

/* Links & contact */
.footer-links h4,
.footer-contact h4{
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li{
  margin-bottom: 8px;
  color: #9ca3af;
}

.footer-links a,
.footer-contact a{
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover{
  color: #fff;
}

/* Bottom */
.footer-bottom{
  border-top: 1px solid #1f2937; /* border-gray-800 */
  padding-top: 32px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

/* md breakpoint */
@media (min-width: 768px){
  .site-footer{ padding: 48px 48px; }

  .footer-grid{
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }

  .footer-brand{
    grid-column: span 2;
  }
}