:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --text: #262626;
  --muted: #666666;
  --line: #e7e7e7;
  --brand: #c99600;
  --brand-dark: #8c6900;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding-left: 20px; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--brand-dark);
}
.brand-tag {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav a {
  font-weight: 700;
  color: #444;
}
.nav a:hover { color: var(--brand-dark); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 20px;
}

.hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(201,150,0,0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-block;
  color: var(--brand-dark);
  background: rgba(201,150,0,0.12);
  border: 1px solid rgba(201,150,0,0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
}
.hero-text {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.hero-subtext {
  color: var(--muted);
  max-width: 680px;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #f1c232);
  color: white;
  box-shadow: var(--shadow);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
}
.hero-card {
  background: linear-gradient(135deg, #fff, #faf7ef);
  border: 1px solid rgba(201,150,0,0.18);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero-card img {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  object-fit: contain;
}

.section { padding: 82px 0; }
.section-soft { background: var(--surface-soft); }
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section h2, .section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}
.section-heading p {
  color: var(--muted);
  margin-top: 14px;
}

.stats-grid,
.cards-grid,
.two-col,
.contact-cards {
  display: grid;
  gap: 22px;
}
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.contact-cards { grid-template-columns: repeat(3, 1fr); }

.stat-card,
.info-card,
.panel,
.contact-card,
.project-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.stat-card h3,
.info-card h3,
.panel h2,
.contact-card h3,
.project-item h3 {
  margin-top: 0;
}
.info-card.tall p:last-child { margin-bottom: 0; }
.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.project-item p,
.contact-card p,
.stat-card p,
.info-card p,
.panel p { color: var(--muted); }
.contact-box {
  display: grid;
  gap: 28px;
}
.footer {
  background: #101010;
  color: #f2f2f2;
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .stats-grid,
  .cards-grid.three,
  .cards-grid.four,
  .two-col,
  .contact-cards,
  .project-list {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .stats-grid,
  .cards-grid.three,
  .cards-grid.four,
  .two-col,
  .contact-cards,
  .project-list {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
  .topbar-inner { min-height: 76px; }
  .brand-name { font-size: 0.95rem; }
  .brand-tag { font-size: 0.82rem; }
}
