/* ===== Perfect Carpet — stylesheet ===== */

:root {
  --ink: #17181a;
  --ink-soft: #3a3c3f;
  --paper: #ffffff;
  --paper-soft: #f4f3f1;
  --paper-mid: #eae8e4;
  --red: #d3242a;
  --red-dark: #a91c21;
  --gray: #6c6e72;
  --border: #e2e0dc;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  --container: 1160px;
  --font-head: "Archivo Black", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 8px 20px rgba(211,36,42,.35); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Top strip */
.call-strip {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: .02em;
  padding: 8px 12px;
}
.call-strip strong { color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .01em; }
.brand-text small { color: var(--gray); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.site-nav { display: flex; gap: 28px; }
.site-nav a { font-weight: 600; font-size: .92rem; position: relative; padding: 4px 0; }
.site-nav a:hover { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.55) 38%, rgba(10,10,10,.72) 78%, rgba(10,10,10,.9) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 24px 90px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: #f3c9c9;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: .01em;
  margin-bottom: .3em;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hero-sub {
  max-width: 620px;
  font-size: 1.15rem;
  color: #f1f1f0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 34px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-badges li {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-left: 22px;
  position: relative;
  color: #fff;
}
.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

/* Section basics */
section { padding: 96px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 10px;
}
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-lead { max-width: 640px; color: var(--gray); font-size: 1.05rem; }

/* Services */
.services { background: var(--paper-soft); }
.service-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--gray); margin: 0; font-size: .95rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.about-logo-badge {
  background: var(--ink);
  border-radius: 24px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: var(--shadow);
}
.about-logo-badge img { width: 100%; filter: invert(1); }
.about-copy p { color: var(--ink-soft); font-size: 1.02rem; }

/* Why us */
.why-us { background: var(--ink); color: #fff; }
.why-us .section-lead, .why-us h2 { color: #fff; }
.why-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 30px;
}
.why-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 8px;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: .35em; }
.why-item p { color: #c9c9cb; font-size: .95rem; margin: 0; }

/* Area */
.area-inner { text-align: center; }
.area-inner .section-lead { margin-left: auto; margin-right: auto; }
.area-list {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-list li {
  background: var(--paper-mid);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  text-align: center;
}
.cta-band-inner h2 { color: #fff; }
.cta-band-inner p { color: rgba(255,255,255,.9); font-size: 1.05rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--red); }
.cta-band .btn-primary:hover { background: #f3f3f3; box-shadow: none; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.contact-details { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.contact-details .icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.contact-details a:hover { color: var(--red); }

.contact-form {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .85rem; font-weight: 700; }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,36,42,.15);
}
.form-note { margin: 12px 0 0; font-size: .88rem; font-weight: 700; color: var(--red-dark); min-height: 1.2em; }

/* Footer */
.site-footer { background: var(--ink); color: #cfcfd1; padding: 56px 0 26px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px 40px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-logo { width: 46px; height: 46px; object-fit: contain; filter: invert(1); flex-shrink: 0; }
.footer-brand strong { color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.footer-brand p { margin: 4px 0 0; font-size: .88rem; color: #b3b3b6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.footer-links a { font-size: .9rem; font-weight: 600; color: #d8d8da; }
.footer-links a:hover { color: var(--red); }
.footer-copy { text-align: center; font-size: .8rem; color: #8c8c8f; margin: 22px 0 0; }

/* Mobile call FAB */
.mobile-call-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
  z-index: 90;
}
.mobile-call-fab .icon { width: 26px; height: 26px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-logo-badge { max-width: 260px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }
  .site-nav, .header-cta { display: none; flex-basis: 100%; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .site-header.nav-open .header-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: 4px;
  }
  .site-header.nav-open .header-cta .btn { flex: 1 1 auto; }
  .hero { min-height: 92vh; }
  .hero-content { padding: 100px 20px 70px; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  section { padding: 66px 0; }
  .mobile-call-fab { display: flex; }
  .call-strip p { font-size: .74rem; }
}
