/* ── LUKIS MEDIA — SHARED STYLESHEET ──────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --black:   #0E0E0C;
  --forge:   #1F1F1C;
  --border:  #2A2A27;
  --orange:  #E8651A;
  --orange-light: rgba(232,101,26,0.10);
  --steel:   #8A8880;
  --white:   #F2F0EB;
  --body-bg: #F8F6F2;
  --text:    #1A1816;
  --muted:   #6A6764;
  --bc: 'Barlow Condensed', sans-serif;
  --dm: 'DM Sans', sans-serif;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--dm);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1360px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--bc); font-weight: 700; font-size: 16px; letter-spacing: 0.5px;
  padding: 14px 28px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: all 0.18s ease; white-space: nowrap; text-decoration: none;
}
.btn-primary  { background: var(--orange); color: var(--black); }
.btn-primary:hover  { background: #d45a15; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,101,26,0.35); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover  { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-dark { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 17px 36px; font-size: 18px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ── HEADER ────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }

/* ── MAIN NAV ──────────────────────────────────────────────────────────────── */
.main-nav > ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block; padding: 6px 10px; font-family: var(--bc); font-weight: 600;
  font-size: 13px; letter-spacing: 0.5px; color: rgba(242,240,235,0.80);
  border-radius: 4px; transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--white); }
.main-nav > ul > li.has-dropdown > a::after {
  content: ''; display: inline-block; width: 0; height: 0; margin-left: 6px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; vertical-align: middle; transition: transform 0.15s;
}
.main-nav > ul > li.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Dropdowns */
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--forge); border: 1px solid var(--border); border-radius: 8px;
  min-width: 220px; padding: 8px 0; box-shadow: var(--shadow-lg);
  z-index: 100;
}
.main-nav > ul > li.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 10px 18px; font-size: 14px; color: var(--steel);
  transition: color 0.12s, background 0.12s;
}
.dropdown li a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.dropdown .dropdown-footer { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 4px; }
.dropdown .dropdown-footer a { color: var(--orange); font-weight: 500; }

/* City dropdown — 2 col */
.dropdown--cities { min-width: 360px; }
.dropdown--cities .city-grid {
  display: grid; grid-template-columns: 1fr 1fr; padding: 8px;
}
.dropdown--cities .city-grid li a { padding: 8px 12px; border-radius: 4px; font-size: 13px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { font-family: var(--bc); font-weight: 700; font-size: 16px; letter-spacing: 0.5px; color: var(--white); transition: color 0.15s; }
.header-phone:hover { color: var(--orange); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.2s; }

/* Mobile nav */
.mobile-nav { display: none; background: var(--black); border-top: 1px solid var(--border); padding: 16px 0 24px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav ul li a { display: block; padding: 12px 24px; font-family: var(--bc); font-size: 17px; font-weight: 700; color: rgba(242,240,235,0.80); letter-spacing: 0.5px; }
.mobile-nav ul li a:hover { color: var(--white); }
.mobile-nav .mobile-sub { padding-left: 16px; }
.mobile-nav .mobile-sub li a { font-size: 15px; font-weight: 500; padding: 8px 24px; }
.mobile-nav .mobile-cta { padding: 16px 24px 0; display: flex; flex-direction: column; gap: 10px; }

/* ── SECTIONS ──────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--forge { background: var(--forge); color: var(--white); }
.section--light { background: var(--body-bg); }
.section--white { background: #fff; }
.section--orange { background: var(--orange); color: var(--black); }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

/* Section labels */
.section-eyebrow {
  display: inline-block; font-family: var(--bc); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.section--dark .section-eyebrow, .section--forge .section-eyebrow { color: var(--orange); }

/* Headings */
h1, h2, h3, h4 { font-family: var(--bc); line-height: 1; }
h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 900; letter-spacing: -1.5px; }
h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -1px; }
h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.3px; }
h4, .card-title-sm { font-size: 18px; font-weight: 700; letter-spacing: 0; }

p { font-size: 17px; line-height: 1.75; color: var(--muted); }
.lead { font-size: 20px; line-height: 1.65; }
.section--dark p, .section--forge p { color: var(--steel); }
.section--dark .lead, .section--forge .lead { color: #B8B4AF; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--black); color: var(--white); padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 5px;
  background: var(--orange);
}
.hero-grid { background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 48px 48px; position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--orange); }
.hero .lead { margin-bottom: 36px; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CARDS ─────────────────────────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: 10px; padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #ECEAE6;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card--dark { background: var(--forge); border-color: var(--border); }
.card-icon {
  width: 48px; height: 48px; background: var(--orange-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--orange); font-size: 22px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--bc); font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: 0.5px; margin-top: 20px; transition: gap 0.15s; }
.card-link:hover { gap: 10px; }

/* ── GRID HELPERS ──────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ── PROCESS STEPS ─────────────────────────────────────────────────────────── */
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num { font-family: var(--bc); font-size: 56px; font-weight: 900; color: var(--muted); line-height: 1; flex-shrink: 0; width: 64px; }
.step-body h3 { margin-bottom: 8px; }

/* ── TRUST / STATS ─────────────────────────────────────────────────────────── */
.stat { text-align: center; }
.stat-num { font-family: var(--bc); font-size: 56px; font-weight: 900; color: var(--orange); letter-spacing: -1px; line-height: 1; }
.stat-label { font-size: 14px; color: var(--steel); margin-top: 6px; font-weight: 500; }

/* ── CHECKLIST ─────────────────────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.6; }
.checklist li::before { content: ''; width: 20px; height: 20px; background: var(--orange); border-radius: 50%; flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-7' stroke='%230E0E0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; }

/* ── FORM ──────────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: inherit; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid #DDD9D3; border-radius: var(--radius);
  font-family: var(--dm); font-size: 15px; background: #fff; color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid #ECEAE6; padding: 24px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-family: var(--bc); font-size: 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--orange); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 14px; font-size: 16px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CITY CARDS ────────────────────────────────────────────────────────────── */
.city-card {
  display: block; padding: 20px 22px; background: #fff; border: 1px solid #ECEAE6;
  border-radius: 8px; font-family: var(--bc); font-size: 17px; font-weight: 700;
  color: var(--text); transition: all 0.15s; border-left: 3px solid transparent;
}
.city-card:hover { border-left-color: var(--orange); color: var(--orange); transform: translateX(3px); box-shadow: var(--shadow); }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--black); color: var(--white); padding: 72px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { color: var(--steel); font-size: 14px; line-height: 1.8; margin-top: 20px; max-width: 280px; }
.footer-col h4,
.footer-col .footer-col-label { font-family: var(--bc); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--steel); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--steel); transition: color 0.12s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--steel); margin: 0; }
.footer-phone { font-family: var(--bc); font-size: 20px; font-weight: 800; color: var(--orange); }

/* ── BREADCRUMB ────────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--steel); padding: 16px 0; }
.breadcrumb a { color: var(--steel); transition: color 0.12s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.4; }

/* ── PAGE HERO (inner pages) ───────────────────────────────────────────────── */
.page-hero { background: var(--black); color: var(--white); padding: 72px 0 56px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); }
.page-hero-grid { background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 48px 48px; position: absolute; inset: 0; pointer-events: none; }

/* ── DIVIDER ───────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: #ECEAE6; margin: 0; }
.divider--dark { background: var(--border); }

/* ── MOBILE ────────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero-btns { flex-direction: column; }
  .btn { display: flex !important; width: 100%; justify-content: center; align-items: center; }
}

/* ── UTILITIES ─────────────────────────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
