:root {
  --ink: #162130;
  --muted: #5b6774;
  --line: #d7dee7;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --brand: #9aadc3;
  --brand-dark: #53677f;
  --accent: #b0433e;
  --shadow: 0 18px 55px rgba(22, 33, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 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;
  width: 122px;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  padding: 8px 12px;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

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

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 116px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 84px);
  background:
    linear-gradient(120deg, rgba(22, 33, 48, 0.88), rgba(83, 103, 127, 0.7)),
    url("images/Consec_loggo_light.png") right 8vw center / min(46vw, 520px) no-repeat,
    var(--brand-dark);
  color: var(--paper);
}

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

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

.hero .eyebrow {
  color: #e7b0ac;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--paper);
  color: var(--brand-dark);
  border-color: var(--paper);
}

.button.secondary {
  color: var(--paper);
}

.hero-panel {
  align-self: end;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.certificate-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.certificate-strip img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: contain;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
}

.copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.copy p {
  margin-bottom: 18px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.service-grid,
.policy-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.policy-grid article,
.contact-card,
.person-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(22, 33, 48, 0.08);
}

.service-card {
  padding: 24px;
}

.service-card img {
  width: 54px;
  height: 68px;
  margin-bottom: 22px;
  object-fit: contain;
}

.service-card p,
.policy-grid p,
.person-card p {
  color: var(--muted);
}

.two-columns,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.two-columns {
  display: grid;
  gap: 18px;
}

.two-columns > div,
.policy-grid article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    url("images/Consec_loggo_light.png") center / min(480px, 80vw) no-repeat;
}

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

.contact-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 100%;
  padding: 28px;
  font-style: normal;
}

.contact-card strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-card a,
.person-card a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover,
.person-card a:hover {
  color: var(--accent);
}

.person-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
}

.person-card img {
  width: 82px;
  height: 102px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.person-card h3 {
  margin-bottom: 4px;
}

.person-card a {
  display: block;
  overflow-wrap: anywhere;
}

.person-card p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

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

@media (max-width: 1080px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-nav a {
    padding-left: 0;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(120deg, rgba(22, 33, 48, 0.9), rgba(83, 103, 127, 0.82)),
      var(--brand-dark);
  }

  .service-grid,
  .two-columns,
  .policy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .person-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .person-card img {
    width: 72px;
    height: 90px;
  }
}
