* {
  box-sizing: border-box;
}

:root {
  --red: #c51f24;
  --green: #4d8b3d;
  --gold: #e4a53b;
  --ink: #171a1d;
  --muted: #626971;
  --light: #f7f7f4;
  --line: #e6e6df;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 225px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 66px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  transition: .2s ease;
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(197,31,36,.16);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #ad171c;
}

.btn-outline {
  border: 1px solid var(--green);
  color: var(--green);
  background: var(--white);
}

.btn-outline:hover {
  background: #f0f7ed;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(228,165,59,.18), transparent 26%),
    linear-gradient(135deg, #ffffff 0 58%, #f6f0e7 58% 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.hero h1 span {
  color: var(--green);
}

.lead {
  margin: 24px 0 0;
  font-size: 19px;
  color: var(--muted);
  max-width: 690px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #454b50;
}

.hero-panel {
  position: relative;
}

.growth-card {
  min-height: 410px;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(145deg, #16191b, #23282d);
  color: white;
  box-shadow: 0 24px 50px rgba(0,0,0,.18);
}

.growth-card-top {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 800;
  color: #dfe6e0;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #63ad4f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(99,173,79,.14);
}

.chart {
  height: 180px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  border-left: 1px solid #52585d;
  border-bottom: 1px solid #52585d;
  padding: 18px 25px;
  margin-top: 36px;
  position: relative;
}

.bar {
  display: block;
  width: 13%;
  background: linear-gradient(#78b866, #477d39);
  border-radius: 5px 5px 0 0;
}

.b1 { height: 26%; }
.b2 { height: 40%; }
.b3 { height: 56%; }
.b4 { height: 70%; }
.b5 { height: 90%; }

.trend {
  position: absolute;
  right: 12px;
  top: 2px;
  font-size: 72px;
  color: #6dbd59;
  transform: rotate(-8deg);
}

.metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metrics div {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,.05);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
}

.metrics span {
  color: #6dbd59;
  font-size: 16px;
}

.hero-note {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.hero-note strong:nth-child(1) { color: var(--red); }
.hero-note strong:nth-child(2) { color: var(--green); }
.hero-note strong:nth-child(3) { color: var(--gold); }

.section {
  padding: 90px 0;
}

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

.section-heading h2,
.about h2,
.consultation h2,
.contact h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
}

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

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f8f1e8;
  font-size: 25px;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 19px;
}

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


.specialties {
  background: #fffaf4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.specialty-card {
  background: var(--white);
  border: 1px solid #eadfce;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.specialty-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

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

.brand-callout {
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #171a1d, #252a2e);
  color: white;
  display: grid;
  gap: 5px;
  text-align: center;
}

.brand-callout strong {
  color: var(--gold);
  font-size: 22px;
}

.brand-callout span {
  color: #d7dbde;
}


.gallery {
  background: #f9fafb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-copy {
  padding: 22px 22px 24px;
}

.gallery-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.gallery-copy p {
  margin: 0;
  color: var(--muted);
}

.dark-section {
  background: linear-gradient(130deg, #141719, #23272a);
  color: var(--white);
}

.light h2 {
  color: white;
}

.gold {
  color: var(--gold);
}

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

.process-grid article {
  border-top: 1px solid #3a4044;
  padding-top: 24px;
}

.step {
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1.5px;
}

.process-grid h3 {
  margin: 8px 0;
  font-size: 28px;
}

.process-grid p {
  margin: 0;
  color: #c9cdcf;
}

.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.portrait-wrap {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 22px 40px rgba(0,0,0,.12);
  aspect-ratio: 4 / 5;
  background: #ddd;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 23%;
}

.title {
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.title span {
  color: var(--green);
}

.about-copy > p:not(.eyebrow):not(.title) {
  color: #4f565c;
  font-size: 17px;
}

.about-points {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  font-weight: 700;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}

.consultation-grid > div:first-child p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.consult-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.consult-card h3 {
  margin-top: 0;
}

.consult-card ul {
  padding-left: 20px;
  color: #51585d;
}

.full {
  width: 100%;
  margin-top: 12px;
}

.contact {
  background: #15181a;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-grid > div:first-child p:last-child {
  color: #c9cdcf;
  font-size: 18px;
}

.contact-box {
  background: #222629;
  border: 1px solid #343a3f;
  padding: 30px;
  border-radius: 16px;
  display: grid;
  gap: 20px;
}

.contact-box > div {
  display: grid;
  gap: 3px;
}

.contact-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.contact-box a {
  font-size: 20px;
  font-weight: 800;
}

.contact-box small {
  color: #aeb3b7;
}

footer {
  background: #0f1112;
  color: #989ea2;
  padding: 22px 0;
  font-size: 13px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-grid,
  .about-grid,
  .consultation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .cards.six {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
}

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

  .brand {
    width: 180px;
  }

  .hero-grid {
    min-height: auto;
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 68px 0;
  }

  .cards.six {
    grid-template-columns: 1fr;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .growth-card {
    min-height: 360px;
    padding: 24px;
  }

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