:root {
  --ink: #17191c;
  --ink-soft: #4a4f57;
  --paper: #ffffff;
  --paper-alt: #f3f2ef;
  --accent: #ff6a1a;
  --accent-dark: #e0530a;
  --border: #e3e1dc;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.05;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 25, 28, 0.92);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 106, 26, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.section .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("images/hero-bg.jpg") center 30% / cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,11,13,0.92) 15%, rgba(10,11,13,0.72) 45%, rgba(10,11,13,0.35) 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 18px;
}

.hero-sub {
  max-width: 560px;
  font-size: 1.15rem;
  color: #e7e7e7;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-trust {
  color: #cfcfcf;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--paper-alt);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* Services grid */
.grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(23,25,28,0.08);
  border-color: var(--accent);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Why us */
.why-inner {
  display: flex;
  justify-content: center;
}

.why-text {
  max-width: 640px;
}

.why-list {
  list-style: none;
  margin: 28px 0 34px;
  display: grid;
  gap: 16px;
}

.why-list li {
  padding-left: 30px;
  position: relative;
  color: var(--ink-soft);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 3px;
}

.why-list strong {
  color: var(--ink);
}

/* Swatches */
.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.swatch-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--border);
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-text .btn {
  margin-right: 14px;
  margin-top: 8px;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(23,25,28,0.12);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #c9c9c9;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

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

/* Responsive */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; background-position: center 20%; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}
