﻿:root {
  --steel-950: #0b0f13;
  --steel-900: #10161c;
  --steel-850: #141b22;
  --steel-800: #1c2430;
  --steel-700: #2b3846;
  --steel-400: #9aa7b4;
  --steel-200: #e0e6ec;
  --accent: #f47a1f;
  --accent-dark: #c95a12;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", sans-serif;
  color: var(--steel-200);
  background: radial-gradient(circle at top left, #2f3e4e 0%, #141c24 60%, #0f1419 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body.cookie-locked {
  overflow: hidden;
}

body.cookie-locked > *:not(#cookie-banner) {
  pointer-events: none;
  user-select: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 12px);
  pointer-events: none;
  z-index: -1;
}

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

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

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent);
  color: #121212;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: linear-gradient(160deg, rgba(28, 36, 48, 0.75), rgba(12, 16, 20, 0.95));
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--steel-400);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  flex-wrap: wrap;
  background: rgba(11, 15, 19, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.logo-box {
  width: 220px;
  height: 70px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.brand-text span {
  display: block;
  font-weight: 700;
}

.brand-text small {
  color: var(--steel-400);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--steel-200);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: var(--accent);
  color: #141414;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #141414;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(244, 122, 31, 0.5);
  color: var(--accent);
}

.hero {
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--steel-400);
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust {
  display: grid;
  gap: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(244, 122, 31, 0.15);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--steel-400);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-card {
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(28, 36, 48, 0.9), rgba(16, 22, 28, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--steel-400);
  font-size: 0.9rem;
}

.hero-card strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.hero-card.accent {
  border-color: rgba(244, 122, 31, 0.4);
  background: linear-gradient(145deg, rgba(244, 122, 31, 0.18), rgba(28, 36, 48, 0.95));
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-chips a {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--steel-200);
  font-size: 0.85rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: rgba(20, 27, 34, 0.92);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--steel-400);
  margin-bottom: 1rem;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.gallery .card {
  padding: 0;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.9rem 1.2rem 1.2rem;
  color: var(--steel-400);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.nap {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-card {
  display: grid;
  gap: 0.75rem;
  background: rgba(20, 27, 34, 0.92);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-embed {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-sm);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 19, 0.88);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.map-embed.loaded .map-overlay {
  display: none;
}

.map-note {
  color: var(--steel-400);
  font-size: 0.85rem;
}

.text-grid {
  display: grid;
  gap: 1.2rem;
}

.slogan {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

.faq details {
  background: rgba(20, 27, 34, 0.92);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.8rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 0.75rem;
  color: var(--steel-400);
}

.contact-card {
  background: rgba(20, 27, 34, 0.92);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1rem;
}

.contact-line {
  color: var(--steel-400);
}

.form-card {
  background: rgba(20, 27, 34, 0.92);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 600;
}

.field input,
.field textarea {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 18, 0.9);
  color: var(--steel-200);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(224, 230, 236, 0.45);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
}

.checkbox input {
  margin-top: 0.2rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 0.8rem;
  color: var(--steel-400);
  min-height: 1.2rem;
}

.site-footer {
  padding: 2.5rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 18, 0.95);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  color: var(--steel-400);
}

.footer-grid a {
  color: var(--steel-200);
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--accent);
  color: #131313;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  display: none;
  z-index: 1000;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 19, 0.85);
}

.cookie-banner.show {
  display: flex;
}

.cookie-content {
  width: min(760px, 92vw);
  background: rgba(15, 20, 25, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 100%;
}

.cookie-content p {
  color: var(--steel-200);
  font-size: 1.02rem;
}

.cookie-options {
  display: grid;
  gap: 0.6rem;
  flex: 1 1 320px;
}

.cookie-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--steel-200);
  font-weight: 600;
}

.cookie-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-settings {
  background: none;
  border: none;
  color: var(--steel-200);
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .logo-box {
    width: 160px;
    height: 50px;
  }

  .nav-cta {
    display: none;
  }

  .header-inner {
    padding: 0.5rem 0.75rem;
    gap: 0.6rem;
  }

  .floating-call {
    display: inline-flex;
  }

  .cookie-content {
    padding: 1.2rem 1.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .reveal {
    transition: none;
  }
}
