:root {
  --bg: #070707;
  --bg-soft: #111111;
  --bg-panel: #171717;
  --surface: #ffffff;
  --surface-alt: #f6f6f6;
  --surface-dark: #111111;
  --text: #171717;
  --muted: #626262;
  --line: #e7e7e7;
  --white: #ffffff;
  --primary: #ff101d;
  --primary-dark: #d80b18;
  --primary-soft: #ffe6e8;
  --secondary: #f4a000;
  --secondary-soft: #fff1d5;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1140px, 92%); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 2000;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  text-decoration: none;
}
.brand-logo {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  filter: brightness(1.14) contrast(1.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.72);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-copy strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.brand-copy span {
  color: #d8d8d8;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  color: #ebebeb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav a:hover,
.nav a:focus-visible { color: var(--secondary); }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 28px;
}
.header-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--primary);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  box-shadow: 0 10px 24px rgba(255,16,29,0.22);
}
.btn:hover,
.btn:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-small { padding: 11px 16px; font-size: 12px; }
.btn-outline,
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.72);
  box-shadow: none;
}
.btn-outline:hover,
.btn-outline:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(255,16,29,0.20), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(244,160,0,0.14), transparent 25%),
    linear-gradient(135deg, #000000 0%, #0a0a0a 45%, #171717 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04), rgba(0,0,0,0.22));
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
}
.hero-orbit-one {
  width: 560px;
  height: 560px;
  right: -170px;
  top: 70px;
}
.hero-orbit-two {
  width: 360px;
  height: 360px;
  right: 20px;
  top: 165px;
  border-width: 42px;
  border-color: rgba(255,16,29,0.08);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: center;
  min-height: 740px;
  padding: 86px 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 14px;
}
.eyebrow.dark { color: var(--primary); }
.hero-copy h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
  max-width: 760px;
}
.hero-copy h1 span { color: var(--secondary); }
.hero-copy p {
  max-width: 720px;
  font-size: 18px;
  color: #e5e5e5;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #efefef;
  font-size: 13px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 44px rgba(0,0,0,0.20);
}
.hero-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.1;
}
.hero-card p { color: #ededed; margin-bottom: 22px; }
.hero-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-contact-list a {
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
}
.hero-card-note {
  margin-top: 22px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section { padding: 92px 0; }
.section-heading { max-width: 770px; margin-bottom: 48px; }
.section-heading h2,
.about-grid h2,
.contact-grid h2,
.cta-grid h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 16px;
}
.section-heading p,
.contact-grid p { color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 220px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255,16,29,0.35);
}
.service-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 26px;
  margin-bottom: 16px;
}
.service-card h3 { margin: 0 0 10px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.section-dark {
  background: linear-gradient(180deg, #090909 0%, #141414 100%);
  color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.about-grid p { color: #dfdfdf; }
.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 34px;
}
.about-card h3 { margin-top: 0; }
.about-card ul { padding-left: 18px; margin: 0; color: #f0f0f0; }
.about-card li { margin: 12px 0; }
.motto {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
}

.project-slideshow {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
}
.project-slides { position: relative; }
.project-slide { display: none; }
.project-slide.is-active {
  display: block;
  animation: slideshowFade 0.45s ease;
}
.project-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--white);
  position: relative;
  background-size: cover;
  background-position: center;
}
.project-photo-before { background: linear-gradient(135deg, #393939, #101010 72%); }
.project-photo-progress { background: linear-gradient(135deg, #431217, #111 72%); }
.project-photo-after { background: linear-gradient(135deg, #171717, #000 60%, #6b0b12); }
.project-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 14px;
}
.project-placeholder::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 22px solid rgba(255,16,29,0.15);
  right: -45px;
  bottom: -60px;
}
.project-placeholder span {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
}
.project-placeholder small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #e2e2e2;
  font-size: 15px;
}
.slideshow-button {
  position: absolute;
  top: calc(50% - 58px);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.slideshow-button:hover,
.slideshow-button:focus-visible { background: var(--accent); }
.slideshow-prev { left: 18px; }
.slideshow-next { right: 18px; }
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 16px 20px 4px;
}
.slideshow-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c9c9;
  cursor: pointer;
}
.slideshow-dot.is-active { background: var(--accent); }
.project-slideshow-copy { padding: 10px 26px 26px; text-align: center; }
.project-slideshow-copy h3 { margin: 6px 0 8px; }
.project-slideshow-copy p { margin: 0; color: var(--muted); }
@keyframes slideshowFade {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.cta-band {
  background: linear-gradient(90deg, #ff101d 0%, #d80b18 70%, #b60814 100%);
  color: var(--white);
  padding: 58px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}
.cta-grid .eyebrow { color: rgba(255,255,255,0.82); }
.cta-grid h2 { margin-bottom: 8px; color: var(--white); }
.cta-grid p { margin: 0; color: rgba(255,255,255,0.92); }
.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: #111111;
  box-shadow: none;
}
.btn-light:hover,
.btn-light:focus-visible {
  background: #f4f4f4;
  border-color: #f4f4f4;
}
.btn-outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  box-shadow: none;
}
.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: var(--white);
  color: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.contact-list a {
  text-decoration: none;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.contact-list a:hover { border-color: rgba(255,16,29,0.32); }
.contact-form {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  font: inherit;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255,16,29,0.18);
  border-color: var(--primary);
}
.form-note { font-size: 12px; color: var(--muted); margin-bottom: 0; }

footer {
  background: #000000;
  color: #ededed;
  padding: 34px 0;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer-grid a { color: #ededed; text-decoration: none; }
.footer-logo { width: 120px; height: auto; border-radius: 50%; object-fit: contain; }

@media (max-width: 980px) {
  .services-grid,
  .project-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-grid,
  .about-grid,
  .cta-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .cta-actions { justify-content: flex-start; }
  .desktop-cta { display: none; }

  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 4%;
    flex-direction: column;
    gap: 16px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 720px) {
  .brand-copy { display: none; }
  .brand-logo { width: 82px; height: 82px; }
  .header-actions { display: none; }
  .hero-grid { min-height: auto; padding: 70px 0; }
  .hero-card { padding: 24px; }
  .section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .services-grid,
  .project-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-row { flex-direction: column; gap: 8px; }
}

.project-photo {
  display: block;
  width: 100%;
  height: min(68vh, 720px);
  min-height: 420px;
  object-fit: contain;
  object-position: center;
  background: #101010;
}
@media (max-width: 600px) {
  .project-photo {
    height: 62vh;
    min-height: 360px;
  }
  .slideshow-button {
    width: 42px;
    height: 42px;
  }
}


/* Unified Call or Text controls */
.contact-combo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 700;
}
.contact-combo-label { font-weight: 800; }
.contact-combo a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}
.contact-combo .contact-action {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  border: 0;
}
.contact-combo-header {
  padding: 7px 9px 7px 13px;
  border: 1px solid rgba(255,255,255,0.72);
  color: var(--white);
  font-size: 12px;
  border-radius: 999px;
}
.hero-contact-list .contact-combo {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.hero-contact-list .contact-combo a,
.contact-list .contact-combo a {
  padding: 6px 11px;
  border-radius: 999px;
  border: 0;
}
.contact-list .contact-combo {
  background: var(--surface);
  border: 1px solid var(--line);
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
.footer-contact a:last-child {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
}
