:root {
  --black: #0a0a0b;
  --black-soft: #141416;
  --card: #18181b;
  --gold: #D4AF37;
  --gold-bright: #E9C767;
  --gold-dim: #8a742a;
  --text: #F2EFE9;
  --text-muted: #b3aea3;
  --border: #2a2a2d;
  --max-width: 1120px;
  --radius: 14px;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo { width: 34px; height: 34px; }

.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--gold-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.brand { flex-shrink: 0; }
.nav-actions { flex-shrink: 0; }

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--gold-bright) !important;
}

.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.lang-toggle:hover { border-color: var(--gold); color: var(--gold-bright); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 90px 0 100px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin: 0 0 12px;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: var(--text);
  letter-spacing: 1px;
}

.hero-slogan {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin: 18px 0 10px;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-block { width: 100%; }

/* ---------- SECTIONS ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--black-soft); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  color: var(--text);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 14px auto 50px;
}

/* ---------- PROBLEM CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.card-icon { font-size: 1.8rem; margin-bottom: 14px; }

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gold-bright);
}

.card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ---------- OFFERS ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}

.offer-card-b { border-color: var(--gold-dim); }

.offer-tag {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.offer-card p { color: var(--text-muted); margin: 0; }

.offer-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
}

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

.about-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px var(--black-soft), 0 10px 28px rgba(0, 0, 0, 0.45);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold-bright);
  margin: 6px 0 2px;
}

.about-role {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}

.about-text { color: var(--text-muted); font-size: 1.05rem; margin-top: 0; }

/* ---------- SERVICE AREA ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.area-map { width: 100%; max-width: 460px; height: auto; margin: 0 auto; display: block; }

.other-state {
  fill: var(--card);
  stroke: #4a4a4d;
  stroke-width: 1.2;
  transition: fill 0.2s;
}

.il-highlight {
  fill: var(--gold);
  fill-opacity: 0.85;
  stroke: var(--gold-bright);
  stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
}

.state-label {
  fill: var(--text-muted);
  opacity: 0.7;
  font-size: 9px;
  font-family: var(--sans);
  pointer-events: none;
}

.il-label {
  fill: var(--black);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--serif);
  pointer-events: none;
}

.il-city circle {
  fill: var(--gold);
  stroke: var(--black);
  stroke-width: 1;
}

.il-city text {
  fill: var(--text);
  font-size: 8.5px;
  font-family: var(--sans);
  font-weight: 600;
  pointer-events: none;
}

.il-city-capital .il-star { fill: var(--gold-bright); stroke: var(--black); stroke-width: 0.6; }
.il-city-capital text { fill: var(--black); font-weight: 700; font-size: 9px; }

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-list li {
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ---------- CONTACT ---------- */
.contact-inner { max-width: 620px; }

.contact-form { margin-top: 20px; }

.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }

.form-row-split {
  flex-direction: row;
  gap: 20px;
}

.form-row-split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin: -2px 0 2px;
  line-height: 1.5;
}

.form-error {
  font-size: 0.82rem;
  color: #e07a7a;
  margin: -2px 0 2px;
  display: none;
}

input, textarea, select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23b3aea3'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%23b3aea3' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.2em;
  color: var(--gold-bright);
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 24px;
  background: var(--black-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-bright);
}

.footer-logo { width: 30px; height: 30px; }

.footer-contact p, .footer-social p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.footer-contact a:last-child { margin-bottom: 0; }
.footer-contact a:hover { color: var(--gold-bright); }

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-icons { display: flex; gap: 14px; }
.social-icons a {
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s;
}
.social-icons a:hover { color: var(--gold-bright); border-color: var(--gold); }

.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-photo-wrap { margin: 0 auto; }
  .area-wrap { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-arrow { transform: rotate(90deg); }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row-split { flex-direction: column; }
  .hero { padding: 60px 0 70px; }
  .section { padding: 60px 0; }
}
