:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --text: #1d252c;
  --muted: #66717c;
  --primary: #18364a;
  --primary-light: #24516f;
  --accent: #c89b3c;
  --accent-soft: #f2e5c6;
  --border: #e9e2d5;
  --shadow: 0 24px 70px rgba(24, 54, 74, 0.12);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

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

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f5f0 45%, #edf3f5 100%);
  overflow: hidden;
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border: 1px solid var(--border);
}

.brand strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.nav-links a:not(.nav-button) {
  position: relative;
}

.nav-links a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-button {
  background: var(--primary);
  color: #fff;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 34px rgba(24, 54, 74, 0.22);
}

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

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

.btn-light {
  background: #fff;
  color: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 84px 0 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.cta h2 {
  color: var(--primary);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  max-width: 760px;
}

.hero-text {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 650px;
}

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

.hero-info {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}

.hero-info strong {
  color: var(--primary);
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 44px 34px;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(200, 155, 60, 0.28);
  border-radius: 28px;
  pointer-events: none;
}

.logo-main {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.official-name {
  text-align: center;
  color: var(--primary);
}

.official-name p {
  font-weight: 800;
  font-size: 1.12rem;
}

.official-name span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about,
.services,
.cta,
.contact {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p:not(.eyebrow),
.cta p,
.contact p {
  color: var(--muted);
  margin-top: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(24, 54, 74, 0.07);
}

.about-text {
  padding: 34px;
  font-size: 1.04rem;
}

.about-text p + p {
  margin-top: 18px;
}

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

.highlight {
  padding: 26px;
}

.icon,
.service-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.highlight h3,
.service-card h3,
.map-placeholder h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.highlight p,
.service-card li,
.map-placeholder p {
  color: var(--muted);
}

.services {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card {
  padding: 34px;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.service-card li {
  position: relative;
  padding-left: 28px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--primary), #2d5f7d);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box p {
  opacity: 0.84;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-grid .section-heading {
  margin-bottom: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-item {
  padding: 22px;
  display: grid;
  gap: 6px;
}

.contact-item.full {
  grid-column: 1 / -1;
}

.contact-item span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.contact-item strong {
  color: var(--primary);
  word-break: break-word;
}

.map-card {
  grid-column: 1 / -1;
  overflow: hidden;
}

.map-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    repeating-linear-gradient(45deg, #edf3f5 0, #edf3f5 12px, #fff 12px, #fff 24px);
}

.map-placeholder span {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.map-placeholder .btn {
  margin-top: 18px;
}

.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0;
}

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

.footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .navbar {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    padding: 54px 0 82px;
  }

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

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

  .hero-card,
  .about-text,
  .service-card,
  .cta-box {
    padding: 26px;
  }

  .services-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-item.full {
    grid-column: auto;
  }

  .cta-box,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .nav-button {
    width: 100%;
  }

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