:root {
  --navy-900: #1c2b3a;
  --navy-800: #24384b;
  --slate-700: #40576f;
  --slate-300: #c4ced7;
  --off-white: #f4f6f8;
  --white: #ffffff;
  --accent: #b98952;
  --accent-dark: #9e7442;
  --text-main: #1f2a35;
  --text-soft: #516376;
  --border: #d9e0e6;
  --radius: 14px;
  --shadow-soft: 0 12px 24px rgba(21, 35, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  color: var(--text-main);
  background: var(--off-white);
  line-height: 1.55;
}

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

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

h1,
h2,
h3,
strong {
  font-family: "Rockwell", "Cambria", "Times New Roman", serif;
  letter-spacing: 0.01em;
  color: var(--navy-900);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 230px;
}

.brand-mark {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.55rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--text-soft);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--navy-800);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--slate-300);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--slate-700);
  color: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(185, 137, 82, 0.2), transparent 45%),
    linear-gradient(145deg, #f9fbfd 0%, #eef2f6 62%, #e8edf3 100%);
  padding: 4.8rem 0 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-700);
  font-size: 0.76rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.95rem, 4vw, 3.1rem);
  line-height: 1.13;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-soft);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.5rem 0 0;
}

.trust-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.hero-panel h2 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.hero-panel p {
  color: var(--text-soft);
}

.hero-stats {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.hero-stats div {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.2rem;
}

.hero-stats span {
  font-size: 0.89rem;
  color: var(--text-soft);
}

.section {
  padding: 4.6rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 0.7rem;
}

.section-header p {
  color: var(--text-soft);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  border-top: 4px solid var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.8rem;
  align-items: stretch;
}

.about-grid h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.about-grid p + p {
  margin-top: 1rem;
}

.about-grid p {
  color: var(--text-soft);
}

.about-panel {
  border-radius: var(--radius);
  min-height: 280px;
  display: grid;
  align-content: end;
  padding: 1.4rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 30, 45, 0.3) 0%, rgba(15, 30, 44, 0.85) 100%),
    linear-gradient(145deg, #607083, #3a4f63 60%, #2a3a4a);
}

.about-panel strong {
  color: var(--white);
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.about-panel p {
  color: #e5ebf0;
}

.area-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.area-grid h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.area-grid p {
  color: var(--text-soft);
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.area-list li {
  border-radius: 999px;
  border: 1px solid var(--slate-300);
  color: var(--navy-800);
  background: #f5f8fb;
  padding: 0.45rem 0.78rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.map-placeholder {
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(30, 44, 58, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(30, 44, 58, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #e6edf4, #dfe7ef 65%, #d6e0ea);
  background-size: 22px 22px, 22px 22px, auto;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.map-placeholder span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-700);
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card p {
  font-size: 0.95rem;
}

.testimonial-card h3 {
  margin-top: 1rem;
  font-size: 1rem;
}

.cta-section {
  background: linear-gradient(145deg, #182737, #253a4f);
  color: var(--white);
}

.cta-section h2,
.cta-section .eyebrow {
  color: var(--white);
}

.cta-section p {
  color: #d8e0e8;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.cta-card {
  min-width: 310px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 1.2rem;
  backdrop-filter: blur(2px);
}

.cta-card p {
  color: #f3f7fb;
}

.cta-card p + p {
  margin-top: 0.35rem;
}

.cta-card .btn {
  margin-top: 1rem;
}

.site-footer {
  background: #111a24;
  color: #ced8e3;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.site-footer h2 {
  font-size: 1.2rem;
}

.site-footer h3 {
  font-size: 0.96rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.site-footer a {
  color: #e5ecf4;
}

.footer-bottom {
  border-top: 1px solid rgba(225, 235, 245, 0.18);
  margin-top: 1.8rem;
  padding: 1rem 0 1.6rem;
  font-size: 0.85rem;
}

@media (max-width: 1050px) {
  .header-row {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.35rem;
  }

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

  .trust-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-card {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 3.6rem;
  }

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

  .hero-panel {
    max-width: 560px;
  }

  .about-panel,
  .map-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 3.7rem 0;
  }

  .site-nav {
    gap: 0.8rem;
  }

  .services-grid,
  .trust-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: fit-content;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }
}
