:root {
  --ink: #18222f;
  --muted: #53606d;
  --line: #d8e0de;
  --paper: #f7faf8;
  --white: #ffffff;
  --sage: #6f907f;
  --sage-dark: #31594e;
  --sky: #cfe3ec;
  --copper: #b66b48;
  --gold: #e7bd64;
  --shadow: 0 20px 50px rgba(24, 34, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(330px, 58vw);
  text-decoration: none;
}

.header-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 108px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: calc(100vh - 129px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 88px);
  background:
    radial-gradient(circle at 12% 18%, rgba(207, 227, 236, 0.95) 0 16%, transparent 17%),
    linear-gradient(135deg, #f7fbfa 0%, #eef6f1 50%, #fff7ef 100%);
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-label,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--sage-dark);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
}

.button.secondary {
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.65);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(49, 89, 78, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(207, 227, 236, 0.68)),
    linear-gradient(35deg, rgba(111, 144, 127, 0.22), rgba(231, 189, 100, 0.25));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "WVS";
  position: absolute;
  right: 32px;
  bottom: 28px;
  color: rgba(24, 34, 47, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
}

.wind-lines {
  position: absolute;
  inset: 44px 42px auto 42px;
  height: 200px;
  border-top: 2px solid rgba(49, 89, 78, 0.52);
  border-bottom: 2px solid rgba(182, 107, 72, 0.38);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.wind-lines::before,
.wind-lines::after {
  content: "";
  position: absolute;
  left: 9%;
  width: 76%;
  border-top: 2px solid rgba(49, 89, 78, 0.28);
  border-radius: 50%;
}

.wind-lines::before {
  top: 55px;
}

.wind-lines::after {
  top: 118px;
}

.panel-card {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 26px;
  border: 1px solid rgba(216, 224, 222, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(24, 34, 47, 0.1);
}

.panel-card strong {
  display: block;
  max-width: 430px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.signal-grid {
  position: absolute;
  top: 48%;
  left: 52px;
  display: grid;
  grid-template-columns: repeat(3, 28px);
  gap: 12px;
}

.signal-grid span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(49, 89, 78, 0.18);
}

.band,
.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.band {
  background: var(--paper);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro p:last-child,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card p,
.approach-list p {
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--sage-dark);
  background: #edf5f0;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.85rem;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.approach-list > div {
  padding-top: 20px;
  border-top: 3px solid var(--sage);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f7fbfa);
  box-shadow: var(--shadow);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

dd a {
  color: var(--sage-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 430px;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: center;
  }

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

  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    max-width: min(320px, 88vw);
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

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

  .service-grid,
  .approach-list {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 360px;
  }

  .panel-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
  }
}
