:root {
  --navy: #072b54;
  --blue: #0f6fa8;
  --teal: #0097a7;
  --aqua: #e8fbff;
  --sand: #fff6df;
  --gold: #f7b733;
  --ink: #122133;
  --muted: #5e6b7a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 43, 84, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #eefbff 52%, #fff8e8 100%);
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 28px rgba(7, 43, 84, 0.08);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 10px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  border-radius: 8px;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  justify-content: center;
}

.nav-links a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.language-switch {
  background: #eaf6f8;
  border: 1px solid rgba(0, 151, 167, 0.2);
  border-radius: 999px;
  display: flex;
  padding: 4px;
}

.language-btn {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  padding: 8px 12px;
}

.language-btn.active {
  background: var(--navy);
  color: var(--white);
}

.hero {
  align-items: center;
  background-image: url("./assets/coastal-road-hero.png");
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: clamp(72px, 12vw, 150px) clamp(20px, 6vw, 88px);
  position: relative;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 31, 61, 0.82) 0%, rgba(4, 31, 61, 0.52) 44%, rgba(4, 31, 61, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 43, 84, 0.18), rgba(7, 43, 84, 0.18));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ff6ff;
}

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

h1 {
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.95;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

p {
  line-height: 1.7;
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 560px;
}

.hero-actions,
.cta-section {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-width: 154px;
  padding: 14px 20px;
}

.btn.primary {
  background: var(--gold);
  color: #062346;
}

.btn.secondary {
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--navy);
}

.stats-band {
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-band div {
  background: rgba(255, 255, 255, 0.05);
  padding: 26px clamp(18px, 5vw, 60px);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--gold);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  margin-bottom: 6px;
}

.stats-band span {
  color: #dceef8;
}

.section,
.split-section,
.mission-section,
.cta-section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 88px);
}

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

.section-heading p:not(.eyebrow),
.text-panel p,
.mission-section p,
.cta-section p {
  color: var(--muted);
}

.services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 111, 168, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(7, 43, 84, 0.08);
  padding: 26px;
}

.service-card span {
  color: var(--teal);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 20px;
}

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

.split-section {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: 0.85fr 1.15fr;
}

.image-panel {
  background: linear-gradient(135deg, var(--aqua), var(--sand));
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 4vw, 42px);
}

.image-panel img {
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.detail-list div {
  border-left: 4px solid var(--teal);
  padding-left: 16px;
}

.detail-list dt {
  color: var(--navy);
  font-weight: 900;
}

.detail-list dd {
  color: var(--muted);
  margin: 4px 0 0;
}

.mission-section {
  background:
    linear-gradient(135deg, rgba(232, 251, 255, 0.95), rgba(255, 246, 223, 0.88)),
    url("./assets/coastal-road-hero.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mission-section article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 44px);
}

.cta-section {
  background: linear-gradient(135deg, var(--navy), #075f78);
  color: var(--white);
  justify-content: space-between;
}

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

.cta-section div {
  max-width: 720px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  font-style: normal;
  gap: 10px 18px;
  margin-top: 18px;
}

.contact-details a {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  padding: 10px 14px;
}

.site-footer {
  align-items: center;
  background: #061b35;
  color: #dceef8;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 88px);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .hero {
    background-position: 42% center;
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 31, 61, 0.88) 0%, rgba(4, 31, 61, 0.64) 100%);
  }

  .stats-band,
  .services-grid,
  .split-section,
  .mission-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .nav-links {
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .btn {
    width: 100%;
  }
}
