:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --surface-2: #1d1d1d;
  --line: #2b2b2b;
  --text: #f6f6f6;
  --muted: #b8b8b8;
  --gold: #f6b52f;
  --gold-2: #ffd467;
  --dark: #111111;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

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

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(246,181,47,.14), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(246,181,47,.08), transparent 24%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}
.brand img {
  width: min(100%, 520px);
  filter: drop-shadow(0 22px 38px rgba(0,0,0,.32));
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { font-size: clamp(2.45rem, 5vw, 4.85rem); margin-bottom: 22px; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); margin-bottom: 18px; letter-spacing: -.03em; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
.lead { margin: 0 0 10px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: #d7d7d7; max-width: 680px; }
.promise { margin: 0 0 30px; color: var(--gold-2); font-weight: 700; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .94; }
.btn-primary { background: var(--gold); color: #111; }
.btn-secondary { background: #fff; color: #111; }
.btn-ghost { border: 1px solid #404040; background: #1d1d1d; }
.quick-contact { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: .95rem; }
.quick-contact a { text-decoration: none; }
.quick-contact a:hover { color: #fff; }

.section { padding: 94px 0; }
.services { background: #121212; border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f; }
.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  min-height: 265px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(246,181,47,.12);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 34px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.values { background: var(--bg); }
.values-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: start; }
.compact { margin-bottom: 0; }
.value-list { display: grid; gap: 14px; }
.value-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.value-item > span {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 1.1rem;
}
.value-item p { margin: 0; color: var(--muted); }

.cta-section { padding: 0 0 94px; }
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
  border-radius: 26px;
  color: #111;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: var(--shadow);
}
.cta-box .eyebrow { color: #4d3500; }
.cta-box p { margin-bottom: 0; max-width: 620px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }
.btn-dark { background: #111; color: #fff; }
.btn-outline-dark { border: 1px solid rgba(17,17,17,.45); color: #111; }

footer { padding: 34px 0; border-top: 1px solid #222; background: #0a0a0a; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; color: var(--muted); }
.footer-inner strong { display: block; color: #fff; }
.footer-inner span { font-size: .92rem; }
.footer-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: #fff; }

@media (max-width: 920px) {
  .hero { min-height: auto; padding-top: 34px; }
  .hero-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .brand { display: flex; justify-content: center; }
  .brand img { width: min(100%, 440px); }
  .hero-copy { max-width: 760px; margin: 0 auto; }
  .actions, .quick-contact { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; min-width: 0; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-contact { justify-content: center; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero { padding: 24px 0 56px; }
  .brand img { width: min(100%, 350px); }
  h1 { font-size: clamp(2.2rem, 12vw, 3.25rem); }
  .lead { font-size: 1.02rem; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .quick-contact { flex-direction: column; gap: 2px; }
  .quick-contact span { display: none; }
  .section { padding: 68px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .cta-section { padding-bottom: 68px; }
  .cta-box { padding: 30px 22px; }
  .cta-actions { display: grid; grid-template-columns: 1fr; }
}
