:root {
  --bg: #070707;
  --bg-soft: #101010;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --accent: #ff2a1a;
  --accent-2: #ff8f1f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1, h2, h3, .eyebrow {
  font-family: 'Barlow', sans-serif;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.3rem;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 42, 26, 0.2), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 143, 31, 0.15), transparent 22%),
    linear-gradient(180deg, #0b0b0b 0%, #040404 100%);
  z-index: -1;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand img {
  width: 260px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: #f1f1f1;
  font-weight: 500;
}

.site-nav a:hover {
  color: white;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid,
.about-grid,
.cta-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-content p {
  max-width: 64ch;
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.8rem 0;
  flex-wrap: wrap;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.25rem 0 0;
}

.hero-points li {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #ececec;
  background: rgba(255,255,255,0.04);
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  padding: 2rem;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(255, 72, 20, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 44px;
  padding: 0.7rem 1.1rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 70ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  padding: 1.5rem;
  min-height: 230px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(255,42,26,0.22), rgba(255,143,31,0.18));
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===== GALERIE ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(135deg, rgba(255,42,26,0.18), rgba(255,143,31,0.10)),
    linear-gradient(135deg, #171717, #090909);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 220px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 35%),
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.06) 100%);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  max-width: calc(100% - 2.4rem);
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #ff8f1f 0%, #ff512f 45%, #ff2a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.about-grid,
.cta-grid,
.footer-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.facts-card {
  padding: 1.6rem;
}

.fact + .fact {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.fact span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4c4c4;
  margin-bottom: 0.35rem;
}

.fact strong,
.fact a {
  color: white;
}

.cta-section {
  background: linear-gradient(180deg, rgba(255,42,26,0.06), rgba(255,255,255,0));
}

.contact-form {
  padding: 1.5rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
  margin-top: 0.9rem;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  width: 230px;
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.legal-page {
  padding: 5rem 0;
}

.legal-card {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.legal-card h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 1.2rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: white;
}

.note-box {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .cta-grid,
  .footer-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(15,15,15,0.98);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-grid,
  .about-grid,
  .cta-grid,
  .footer-grid,
  .service-grid,
  .gallery-grid,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item span {
    font-size: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.5rem 0.8rem;
  }

  .brand img {
    width: 210px;
  }
}