@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&display=swap");

:root {
  --ink: #0f1113;
  --muted: #5a5a5a;
  --cream: #f3ebe3;
  --mist: #efe1d2;
  --teal: #1f3b3c;
  --copper: #c26b33;
  --burnt: #a64d1f;
  --sand: #f6e1c7;
  --shadow: 0 24px 60px rgba(15, 17, 19, 0.24);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff3e4 0%, #f7dcc0 40%, #f1c08a 100%);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 17, 19, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 28px;
  line-height: 1;
  display: grid;
  gap: 4px;
  color: #fff;
}

.logo span:last-child {
  color: var(--copper);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
}

.call-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(194, 107, 51, 0.35);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 12px;
  display: inline-block;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}

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

.primary,
.secondary {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary {
  background: var(--burnt);
  color: #fff;
  box-shadow: 0 16px 26px rgba(166, 77, 31, 0.35);
}

.secondary {
  border: 1px solid rgba(15, 17, 19, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
}

.hero-highlights {
  display: grid;
  gap: 16px;
}

.hero-highlights div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 17, 19, 0.08);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 4px;
}

.hero-card {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% 40% auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(194, 107, 51, 0.5), transparent 70%);
}

.card-top h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  margin-top: 6px;
}

.card-body {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.info-row span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.65);
}

.info-row a,
.info-row p {
  margin-top: 6px;
  display: block;
  font-weight: 600;
}

.full {
  width: 100%;
}

section {
  padding: 80px 32px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
}

.services {
  background: linear-gradient(135deg, #f5c78b 0%, #f2dfc8 100%);
}

.service-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-grid article {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(15, 17, 19, 0.1);
  border: 1px solid rgba(15, 17, 19, 0.08);
}

.service-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-card {
  background: #fff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.about-card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--muted);
}

.about-stats {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.about-stats strong {
  font-size: 22px;
  display: block;
}

.about-panel {
  background: var(--teal);
  color: #fff;
  padding: 32px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.about-panel h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
}

.about-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.about-panel li::before {
  content: "•";
  margin-right: 10px;
  color: #f2c89d;
}

.areas {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.areas-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.areas-grid div {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 17, 19, 0.08);
  text-align: center;
  font-weight: 600;
}

.cta {
  max-width: 1100px;
  margin: 0 auto 80px;
  border-radius: 32px;
  background: linear-gradient(120deg, #0f1113, #31211b 60%, #5a2f1e);
  color: #fff;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
}

.footer {
  background: #0b1517;
  color: #d6e0df;
  padding: 60px 32px;
  display: grid;
  gap: 32px;
}

.footer .logo {
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
}

.footer-info {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-info h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .hero {
    padding-top: 60px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 16px 20px;
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 50px 20px 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    padding: 36px 24px;
  }
}
