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

:root {
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --dark-2: #242424;
  --mid: #3a3a3a;
  --accent: #e63329;
  --accent-dark: #b8251c;
  --white: #ffffff;
  --gray-1: #f5f5f5;
  --gray-2: #e0e0e0;
  --gray-3: #999;
  --text: #1a1a1a;
  --text-light: #555;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-sm {
  padding: 10px 20px;
  font-size: .875rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
}
.btn-sm:hover { background: var(--accent-dark); }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo { display: flex; flex-direction: column; }
.logo-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.logo-sub {
  color: var(--gray-3);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1c1c1c 50%, #2a1010 100%);
  padding: 100px 0 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,51,41,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--gray-3);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(230,51,41,.08);
  box-shadow: 0 0 60px rgba(230,51,41,.2);
}
.badge-years {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.badge-label {
  font-size: .8rem;
  color: var(--gray-3);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* VALUES */
.values {
  background: var(--dark-2);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s;
}
.value-card:hover { border-color: var(--accent); }
.value-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.value-card p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.55;
  font-style: italic;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--white);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.service-card {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .25s;
  background: var(--white);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon { font-size: 2.2rem; margin-bottom: 20px; }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.service-card p {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-list {
  list-style: none;
  margin-bottom: 28px;
}
.service-list li {
  font-size: .875rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-1);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: .8rem;
}
.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.service-link:hover { text-decoration: underline; }

/* Standard services */
.standard-services {
  background: var(--gray-1);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.standard-services h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  letter-spacing: -.01em;
}
.standard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.standard-grid span {
  background: var(--white);
  border: 1px solid var(--gray-2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .875rem;
  color: var(--text-light);
}

/* WHY */
.why {
  background: var(--dark);
  padding: 100px 0;
}
.section-header--light h2,
.section-header--light .section-eyebrow { color: inherit; }
.section-header--light h2 { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--accent); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  margin-top: 56px;
}
.why-item {}
.why-num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.why-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.why-item p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--gray-1);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-eyebrow { margin-bottom: 12px; }
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-3);
}
.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}
a.contact-value { color: var(--accent); }
a.contact-value:hover { text-decoration: underline; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-2);
}
.contact-map iframe { display: block; }

/* FOOTER */
.footer {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { display: flex; flex-direction: column; gap: 4px; }
.footer-tagline { color: var(--gray-3); font-size: .8rem; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,.25); font-size: .8rem; width: 100%; text-align: center; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-badge { order: -1; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.3rem;
  }
  .hero { padding: 60px 0; min-height: unset; }
  .services, .why, .contact { padding: 64px 0; }
  .standard-services { padding: 28px 20px; }
}
