:root {
  --cream: #fbf4e9;
  --cream-soft: #fffaf2;
  --navy: #07395a;
  --navy-deep: #052f4c;
  --teal: #48999b;
  --teal-soft: #dcefed;
  --gold: #d4a866;
  --ink: #183347;
  --muted: #687980;
  --line: #d9e7e4;
  --white: #ffffff;
  --font-display: Georgia, "Times New Roman", serif;
  --font-sans: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--font-sans);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(72, 153, 155, 0.2);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 0;
}

.brand img {
  height: 58px;
}

.brand strong {
  color: var(--navy);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
}

.brand small {
  color: var(--teal);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 6px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-call,
.button,
.message-form button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 0 22px;
  text-align: center;
}

.header-call,
.button.primary {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--teal);
  color: var(--teal);
}

.hero {
  display: grid;
  gap: clamp(32px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  min-height: calc(100vh - 88px);
  overflow: hidden;
  padding: clamp(10px, 4vw, 110px) clamp(20px, 5vw, 72px);
  position: relative;
}

.hero::before {
  background: var(--teal-soft);
  border-radius: 50%;
  content: "";
  height: 680px;
  opacity: 0.86;
  position: absolute;
  right: -190px;
  top: -170px;
  width: 680px;
  z-index: 0;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  padding-bottom: 10px;
}

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

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

h1,
h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.6rem);
}

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

.hero-text {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  max-width: 720px;
}

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

.hero-panel {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 57, 90, 0.14);
  padding: clamp(28px, 4vw, 42px);
}

.hero-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-bottom: 24px;
}

.quick-list {
  display: grid;
  gap: 14px;
}

.quick-list span {
  background: #f4fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  padding: 17px 18px;
}

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

.trust-strip div {
  background: rgba(255, 255, 255, 0.06);
  min-width: 0;
  padding: 26px clamp(20px, 4vw, 54px);
}

.trust-strip span,
.contact-methods span {
  color: var(--teal-soft);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  text-align: center;
}

.section {
  padding: clamp(30px, 3vw, 120px) clamp(20px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 900px;
}

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

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

.service-card span {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: block;
  height: 6px;
  margin-bottom: 26px;
  width: 82px;
}

.service-card p,
.approach-copy p,
.contact-copy p,
.message-form p,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
}

.approach {
  background: var(--cream);
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
}

.approach-copy p {
  font-size: 1.08rem;
  max-width: 680px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: var(--white);
  border: 1px solid #eadfcc;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
  min-height: 110px;
  padding: 26px 26px 24px 88px;
  position: relative;
}

.steps li::before {
  color: var(--teal);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  left: 26px;
  line-height: 1;
  position: absolute;
  top: 27px;
}

.contact-section {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.85fr);
  padding: clamp(32px, 4vw, 120px) clamp(20px, 5vw, 72px);
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: 124px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-methods a {
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
  padding: 22px;
  text-align: center;
}

.contact-methods strong {
  display: block;
  line-height: 1.45;
}

.message-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 57, 90, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(24px, 4vw, 42px);
}

.message-form > div,
.message-form .full,
.message-form button,
.message-form .status {
  grid-column: 1 / -1;
}

.message-form h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 12px;
}

.message-form label {
  color: var(--navy);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

.message-form input,
.message-form select,
.message-form textarea {
  background: #fbfdfd;
  border: 1px solid #cfe3e1;
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.message-form textarea {
  resize: vertical;
}

.message-form button {
  background: var(--teal);
  color: var(--white);
  min-height: 54px;
}

.status {
  color: var(--teal);
  font-weight: 800;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  padding: 36px clamp(20px, 5vw, 72px);
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section-heading,
  .approach,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  nav {
    flex-wrap: wrap;
  }

  .header-call {
    justify-self: start;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 16px;
    padding: 14px 18px;
  }

  .brand img {
    height: 50px;
  }

  .brand small {
    font-size: 0.62rem;
  }

  nav {
    gap: 14px;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.5rem);
  }

  .hero,
  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .message-form {
    grid-template-columns: 1fr;
  }
}
