:root {
  --bg: #090909;
  --bg-2: #111214;
  --ink: #111111;
  --muted: #737373;
  --line: rgba(255,255,255,.14);
  --steel: #c9c9c9;
  --silver: #f4f4f4;
  --accent: #f57c20;
  --accent-2: #c95f10;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.brand-title,
.brand-subtitle {
  display: block;
  color: #111111;
  line-height: 1;
}
.brand-title {
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: .12em;
}
.brand-subtitle {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--accent);
}
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.site-nav a { opacity: .84; transition: opacity .2s ease; }
.site-nav a:hover { opacity: 1; }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  opacity: 1 !important;
}
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,9,.95), rgba(9,9,9,.76), rgba(9,9,9,.38)),
    radial-gradient(circle at 82% 22%, rgba(245,124,32,.24), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 80px),
    url("assets/hero-was-workshop.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: end;
  padding: 130px 0 90px;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}
.hero h1 {
  margin: 0;
  max-width: 830px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: .92;
  letter-spacing: -.06em;
}
.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #111; }
.btn-secondary { border-color: rgba(255,255,255,.36); color: var(--white); }
.hero-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.card-label { color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-card h2 { margin: 14px 0 10px; font-size: 26px; }
.hero-card p { color: rgba(255,255,255,.74); line-height: 1.6; }
.quick-links { display: grid; gap: 10px; margin-top: 22px; }
.quick-links a {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 700;
}

.trust-strip { background: var(--white); margin-top: -44px; position: relative; z-index: 4; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.08);
}
.strip-grid div { padding: 28px; background: var(--white); border-right: 1px solid rgba(0,0,0,.08); }
.strip-grid div:last-child { border-right: 0; }
.strip-grid strong { display: block; font-size: 18px; }
.strip-grid span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }

.hero-visual-repeat {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(9,9,9,.42), rgba(9,9,9,.12), rgba(9,9,9,.28)),
    url("assets/hero-was-workshop.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section { padding: 110px 0; }
.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading h2, .about-grid h2, .contact-info h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-heading p:not(.eyebrow), .contact-info > p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 380px;
  border-radius: 24px;
  background: transparent;
  border: 0;
  perspective: 1100px;
  outline: none;
}
.service-card-inner {
  position: relative;
  min-height: 380px;
  border-radius: 24px;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.2,.75,.22,1), box-shadow .25s ease;
}
.service-card:hover .service-card-inner,
.service-card:focus-within .service-card-inner,
.service-card:focus .service-card-inner { transform: rotateY(180deg); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.service-card-face {
  position: absolute;
  inset: 0;
  min-height: 380px;
  padding: 30px 30px 28px;
  border-radius: 24px;
  backface-visibility: hidden;
  overflow: hidden;
}
.service-card-front {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background: #fbfbfb;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}
.service-card-back {
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  transform: rotateY(180deg);
  border: 1px solid rgba(255,255,255,.12);
  isolation: isolate;
}
.service-card-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--service-img);
  background-size: cover;
  background-position: center;
  filter: brightness(1.34) saturate(1.08) contrast(1.03);
  transform: scale(1.02);
  z-index: -2;
}
.service-card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(0,0,0,.06) 42%, rgba(0,0,0,.28) 100%);
  z-index: -1;
}
.service-card-back > div {
  max-width: 82%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 35px rgba(0,0,0,.16);
}
.service-card-back small {
  display: block;
  margin-bottom: 8px;
  color: #ffd0ad;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-card-back strong {
  display: block;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-shadow: 0 8px 30px rgba(0,0,0,.28);
}
.service-card span { color: var(--accent-2); font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 34px 0 12px; font-size: clamp(21px, 2vw, 23px); line-height: 1.12; letter-spacing: -.02em; }
.service-card p { margin: 0; color: #666; line-height: 1.56; font-size: 18px; }

.dark-section {
  background: var(--bg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(245,124,32,.22), transparent 34%);
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}
.about-copy p { color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.8; margin: 0 0 18px; }
.about-copy strong { color: var(--white); }

.contact-section { background: #f6f6f6; }
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: start;
}
.contact-cards { display: grid; gap: 12px; margin-top: 34px; }
.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
}
.contact-card span { color: var(--muted); }
.contact-card strong { text-align: right; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0,0,0,.08);
}
.contact-form label { display: grid; gap: 8px; font-weight: 700; font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fafafa;
}
textarea { resize: vertical; }
.contact-form .btn { width: 100%; border: 0; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.map-wrap { margin-top: 46px; }
.map-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg);
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
}
.map-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.88), rgba(0,0,0,.68)),
    radial-gradient(circle at 30% 40%, rgba(245,124,32,.32), transparent 32%),
    repeating-linear-gradient(45deg, #232323 0 1px, #1a1a1a 1px 12px);
}
.map-copy span { color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.map-copy strong { display: block; margin-top: 10px; font-size: 28px; line-height: 1.1; }
.map-copy p { color: rgba(255,255,255,.72); line-height: 1.6; }
.map-link {
  width: fit-content;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
}
.map-card iframe { width: 100%; min-height: 420px; display: block; filter: grayscale(12%); }

.site-footer {
  background: #050505;
  color: var(--white);
  padding: 40px 0 86px;
}
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.site-footer p { color: rgba(255,255,255,.62); margin: 8px 0 0; }
.footer-links { display: flex; gap: 22px; color: rgba(255,255,255,.7); font-weight: 700; }
.mobile-contact-bar { display: none; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,.16);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; }
  .nav-cta { text-align: center; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 90px 0 80px; }
  .strip-grid, .services-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.08); }
  .strip-grid div:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero-visual-repeat { min-height: 300px; background-position: 62% center; }
  .brand { gap: 10px; }
  .brand-mark { width: 50px; height: 50px; }
  .brand-title { font-size: 16px; letter-spacing: .08em; }
  .brand-subtitle { font-size: 9px; letter-spacing: .2em; }
  .hero h1 { font-size: 50px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 76px 0; }
  .contact-form { padding: 22px; }
  .service-card, .service-card-inner, .service-card-face { min-height: 330px; }
  .service-card-face { padding: 24px; }
  .service-card h3 { margin-top: 28px; }
  .service-card p { font-size: 17px; }
  .service-card-back > div { max-width: 90%; }
  .contact-card { flex-direction: column; }
  .contact-card strong { text-align: left; word-break: break-word; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(0,0,0,.28);
  }
  .mobile-contact-bar a {
    padding: 12px 8px;
    text-align: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
  }
  .mobile-contact-bar a:nth-child(2) { background: var(--accent); color: #111; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card-inner { transition: none; }
}
