:root {
  --bg: #0f0f11;
  --bg-soft: #17181c;
  --card: #ffffff;
  --text: #111111;
  --text-light: #666b75;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c89b3c;
  --gold-soft: #f0dfb9;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #faf8f3;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0;
  position: relative;
}

.brand-box {
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 1px;
  border: 1px solid #222;
  font-size: 15px;
}
.brand-box.dark { background: #111; color: #fff; }
.brand-box.light { background: #fff; color: #111; border-left: none; }
.brand-sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
  font-size: 11px;
  color: #585858;
  background: #faf8f3;
  padding: 0 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: #262626;
}

.menu-btn {
  display: none;
  border: none;
  background: #111;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 22px;
}

.hero {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.18), transparent 25%),
    linear-gradient(180deg, #faf8f3 0%, #f6f2e8 100%);
}

.hero-grid,
.about-grid,
.contact-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #7a6129;
  border: 1px solid rgba(200, 155, 60, 0.25);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-copy h1,
.section-head h2,
.about h2,
.contact h2 {
  margin: 0 0 14px;
  line-height: 1.05;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -1.8px;
}

.hero-copy h1 span { color: var(--gold); }
.hero-text,
.section-head p,
.about p,
.contact p,
.why-card p,
.service-card p,
.service-card li,
.footer-wrap p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary {
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: #fff;
  color: #111;
  border-color: rgba(17, 17, 17, 0.1);
}
.full { width: 100%; }

.hero-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hero-points div {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 18px;
  padding: 16px 18px;
}
.hero-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.hero-points span { color: var(--text-light); font-size: 15px; }

.hero-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.showcase-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(180deg, #111 0%, #1c1d21 100%);
  color: white;
  border-radius: 34px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  overflow: hidden;
}
.showcase-panel::before {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.55) 0%, rgba(200,155,60,0) 70%);
}
.mini-label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  margin-bottom: 16px;
}
.showcase-panel h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -1.2px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 14px;
}
.metric-box span {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-size: 13px;
}
.metric-box strong {
  font-size: 19px;
}

.dashboard-card {
  position: absolute;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,17,17,0.05);
}
.dashboard-card p {
  margin: 0 0 6px;
  color: var(--text-light);
  font-size: 14px;
}
.dashboard-card strong { font-size: 16px; }
.top-card { top: 40px; left: 0; }
.bottom-card { right: 10px; bottom: 42px; }

.section { padding: 88px 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-head.left { text-align: left; margin: 0 0 32px; }
.section-head h2, .about h2, .contact h2 {
  font-size: clamp(30px, 4.5vw, 52px);
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-grid { grid-template-columns: repeat(4, 1fr); }

.service-card,
.why-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #111;
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}
.service-card h3,
.why-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.service-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}
.service-card li { margin-bottom: 8px; }

.about {
  background: linear-gradient(180deg, #111 0%, #1a1b1f 100%);
}
.about h2,
.about p { color: #fff; }
.about p { color: rgba(255,255,255,0.74); }

.why-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: #7a6129;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-box {
  background: #fff;
  padding: 34px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,17,17,0.06);
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,0.12);
  background: #faf8f3;
  font: inherit;
}
.form-note {
  min-height: 24px;
  margin: 0;
  color: #1c7b3a;
  font-weight: 600;
}

.site-footer {
  padding: 28px 0 40px;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(17,17,17,0.08);
}
.footer-wrap h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-box,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { min-height: auto; }
  .top-card, .bottom-card { position: static; margin: 14px 0; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 18px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav.show { display: flex; }
  .menu-btn { display: inline-grid; place-items: center; }
  .hero-grid,
  .about-grid,
  .contact-box,
  .service-grid,
  .why-grid,
  .metric-row,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero { padding-top: 54px; }
  .showcase-panel { padding: 28px; }
  .section { padding: 66px 0; }
  .contact-box { padding: 24px; }
}
