:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --primary: #0f172a;
  --accent: #bfa46f;
  --soft: #f8fafc;
  --soft-2: #f3f4f6;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.topbar {
  background: #0b1220;
  color: #fff;
  font-size: 0.95rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(191,164,111,0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 72px 0 48px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -100px -100px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(191,164,111,0.08);
  filter: blur(10px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(191,164,111,0.12);
  color: #7b6338;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.section-tag.light {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero-text {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
}
.btn-light {
  background: #fff;
  color: var(--primary);
}
.hero-card {
  position: relative;
}
.card-glow {
  position: absolute;
  inset: -20px -10px auto auto;
  width: 180px;
  height: 180px;
  background: rgba(191,164,111,0.2);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-panel {
  position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-panel h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.45rem;
}
.hero-panel ul {
  margin: 0;
  padding-left: 20px;
}
.hero-panel li { margin-bottom: 12px; }

.section { padding: 84px 0; }
.section-heading {
  margin-bottom: 28px;
}
.section-heading.center,
.final-cta-box { text-align: center; }
.section-heading h2,
.final-cta-box h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin: 0;
}
.intro-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--muted);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}
.service-card p,
.contact-card p { margin: 0; color: var(--muted); }

.feature-band {
  background: linear-gradient(135deg, #0f172a 0%, #111827 60%, #1f2937 100%);
  color: #fff;
}
.feature-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.feature-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.feature-band p {
  margin: 0;
  color: rgba(255,255,255,0.86);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: #7b6338;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-value {
  font-size: 1.2rem;
  font-weight: 700;
}
.final-cta {
  padding-top: 24px;
}
.final-cta-box {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 44px 24px;
  box-shadow: var(--shadow);
}
.final-cta-box p {
  max-width: 650px;
  margin: 14px auto 24px;
  color: var(--muted);
}
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer h3,
.footer p { margin: 0; }

@media (max-width: 980px) {
  .hero-grid,
  .cards-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 56px; }
  .hero-grid,
  .cards-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .section { padding: 68px 0; }
  .hero-panel,
  .intro-box,
  .service-card,
  .contact-card,
  .final-cta-box {
    padding: 24px;
  }
}
