:root {
  --ink: #18212f;
  --muted: #647084;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --brand: #0f4c5c;
  --brand-dark: #093844;
  --accent: #c89f5d;
  --accent-soft: #f7ead1;
  --shadow: 0 18px 45px rgba(12, 30, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  font-family: Arial, sans-serif;
  font-size: 0.93rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  padding: 96px clamp(20px, 6vw, 84px);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 20, 28, 0.86), rgba(5, 20, 28, 0.54), rgba(5, 20, 28, 0.18));
  content: "";
}

.home-hero::before {
  background-image: url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1800&q=80");
}

.about-hero::before {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80");
}

.services-hero::before {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80");
}

.contact-hero::before {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
}

.hero-content,
.page-hero > div {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-lede,
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #16130d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.section {
  padding: 82px clamp(20px, 6vw, 84px);
}

.intro-section,
.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section-copy {
  max-width: 820px;
  font-size: 1.13rem;
}

.highlight-panel,
.leadership-card,
.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.highlight-panel span,
.contact-panel span {
  display: block;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.highlight-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--brand);
  font-size: 1.55rem;
  line-height: 1.2;
}

.muted {
  background: var(--soft);
}

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

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.service-card,
.values-list article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-card h3,
.service-card h2,
.values-list h3,
.contact-panel h2 {
  color: var(--brand);
}

.feature-card p,
.service-card li,
.values-list p,
.contact-panel p,
.contact-panel address {
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(20px, 6vw, 84px);
  background: var(--brand-dark);
  color: #fff;
}

.image-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.values-list {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.featured-service {
  background: var(--brand);
  color: #fff;
}

.featured-service h2,
.featured-service li {
  color: #fff;
}

.contact-layout {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.contact-panel a {
  color: var(--brand);
  font-weight: 700;
}

.contact-panel address {
  font-style: normal;
}

.map-section {
  padding: 0 clamp(20px, 6vw, 84px) 82px;
}

.map-section iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 84px);
  background: #101820;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .feature-grid,
  .service-grid,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero,
  .page-hero {
    min-height: 560px;
    padding-top: 70px;
  }

  .hero::after,
  .page-hero::after {
    background: linear-gradient(180deg, rgba(5, 20, 28, 0.84), rgba(5, 20, 28, 0.48));
  }

  .section,
  .cta-band {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .feature-grid,
  .service-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand {
    min-width: 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
