:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --dark: #17130f;
  --muted: #675f56;
  --line: #e3ddd3;
  --primary: #b06f28;
  --primary-dark: #8b531b;
  --secondary: #263238;
  --shadow: 0 24px 70px rgba(35, 27, 20, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 221, 211, 0.8);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.logo-fallback {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), #101010);
  color: #fff;
  display: none;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-cta {
  color: #fff !important;
  background: var(--secondary);
  padding: 11px 17px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  margin: 4px auto;
}

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(176, 111, 40, 0.14), transparent 30%),
    linear-gradient(135deg, #f7f4ee 0%, #efe8dc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.section-copy,
.cta-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 630px;
  font-size: 1.16rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(176, 111, 40, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 221, 211, 0.8);
  border-radius: 18px;
  padding: 16px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  background:
    linear-gradient(rgba(23, 19, 15, 0.82), rgba(23, 19, 15, 0.88)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=80") center/cover;
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card h2 {
  font-size: 2.15rem;
  margin-bottom: 10px;
}

.hero-card p,
.hero-card li {
  color: rgba(255, 255, 255, 0.82);
}

.card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
  display: grid;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: #f5b76f;
  margin-right: 10px;
  font-weight: 900;
}

.section {
  padding: 90px 0;
}

.stats-section {
  padding: 36px 0;
  background: var(--secondary);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stats-grid div {
  padding: 18px 0;
}

.stat-number {
  color: #f3bd80;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 2rem;
}

.stats-grid p {
  color: rgba(255, 255, 255, 0.82);
  margin: 4px 0 0;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(35, 27, 20, 0.06);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #f3eadc;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.split-section {
  background: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 60px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: #fff;
  border-radius: 16px;
  font-weight: 900;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.projects-section {
  background: linear-gradient(180deg, var(--bg), #eee5d8);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  min-height: 260px;
  border-radius: 28px;
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  background: linear-gradient(rgba(23,19,15,0.22), rgba(23,19,15,0.82)), url("https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=900&q=80") center/cover;
}

.project-card:nth-child(2) {
  background-image: linear-gradient(rgba(23,19,15,0.22), rgba(23,19,15,0.82)), url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=900&q=80");
}

.project-card:nth-child(3) {
  background-image: linear-gradient(rgba(23,19,15,0.22), rgba(23,19,15,0.82)), url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=900&q=80");
}

.project-card span {
  color: #f5b76f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.project-card h3 {
  font-size: 1.55rem;
  margin: 8px 0 0;
}

.cta-section {
  padding-top: 50px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: center;
  background: var(--secondary);
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
}

.cta-card p {
  color: rgba(255,255,255,0.76);
}

.contact-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 24px;
}

.contact-box p {
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-box > a:not(.btn) {
  display: block;
  color: #f5b76f;
  font-weight: 900;
  word-break: break-word;
  margin-bottom: 18px;
}

.site-footer {
  padding: 60px 0 26px;
  background: #14110e;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-logo {
  display: grid;
  background: var(--primary);
}

.site-footer h3 {
  margin-bottom: 10px;
}

.site-footer a,
.site-footer p {
  color: rgba(255,255,255,0.76);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 22px;
}

.copyright p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .hero-grid,
  .split-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .project-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    min-height: 440px;
  }

  .cta-card {
    padding: 32px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .hero-card,
  .cta-card {
    border-radius: 24px;
    padding: 26px;
  }
}
