:root {
  --navy: #17233c;
  --navy-deep: #0f1a30;
  --charcoal: #202428;
  --charcoal-soft: #272d31;
  --green: #2f4a3c;
  --green-light: #7fa06d;
  --white: #f6f8fb;
  --muted: #b7c0cb;
  --line: rgba(255,255,255,.13);
  --serif: 'Libre Caslon Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 26, 48, .96);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
  letter-spacing: .16em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 32px);
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.primary-nav a { opacity: .92; transition: opacity .2s ease; }
.primary-nav a:hover { opacity: .62; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #3a5d4b; }
.button--header { min-height: 42px; white-space: nowrap; }

.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 555px;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 5.3vw 76px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
}
.hero h1,
.section-heading h2,
.consultation h2 {
  font-family: var(--serif);
  font-weight: 400;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 5.3vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.025em;
}
.hero-intro {
  max-width: 520px;
  margin: 26px 0 0;
  color: #d7dee7;
  font-size: 1rem;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.text-link {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.play {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  font-size: .56rem;
}

.hero-visual {
  position: relative;
  min-height: 555px;
  background:
    linear-gradient(90deg, rgba(23,35,60,.42), rgba(23,35,60,.08)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=88') center/cover no-repeat;
}
.privacy-card {
  position: absolute;
  right: 7%;
  bottom: 7%;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 360px;
  padding: 16px 20px;
  border-radius: 11px;
  background: rgba(15,26,48,.9);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.privacy-card strong, .privacy-card span { display: block; }
.privacy-card strong { font-size: .9rem; }
.privacy-card span { color: #cdd4df; font-size: .78rem; }
.privacy-icon {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white !important;
  font-size: 1.4rem !important;
}

.section-pad { padding: 38px 4.5vw; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 250px;
  padding: 25px 24px 22px;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9px;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 1.35rem;
}
.service-card h2 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}
.service-card p { margin: 0; color: #d1d5da; font-size: .92rem; }
.service-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-light);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.service-card a span { margin-left: 9px; font-size: 1rem; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 4.5vw;
}
.trust-item {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 13px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}
.trust-item:first-child { padding-left: 10px; }
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}
.trust-item span:last-child {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #d4dae2;
}
.laurel { grid-row: 1 / span 2; align-self: center; color: var(--green-light); font-size: 2.2rem; transform: rotate(-18deg); }
.trust-item .trust-word { font-size: 1.7rem; text-transform: uppercase; letter-spacing: .04em; }

.process { padding-top: 54px; padding-bottom: 64px; }
.section-heading { text-align: center; max-width: 850px; margin: 0 auto 45px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.process-grid article { position: relative; text-align: center; padding: 0 42px; }
.process-grid article:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 35px);
  width: calc(100% - 70px);
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,.38);
}
.step {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  font-family: var(--serif);
  font-size: 1.5rem;
}
.process-grid h3 {
  margin: 14px 0 6px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.process-grid p { margin: 0; color: #cbd2db; font-size: .79rem; }

.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(180px, .8fr);
  align-items: center;
  min-height: 180px;
  padding: 34px 14vw;
  background:
    radial-gradient(circle at 20% 20%, rgba(127,160,109,.14), transparent 35%),
    var(--green);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
blockquote {
  margin: 0;
  padding-right: 50px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-style: italic;
  line-height: 1.35;
}
blockquote cite {
  display: block;
  margin-top: 13px;
  font-family: var(--sans);
  font-size: .68rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #dfe7dd;
}
.trust-seal {
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .57rem;
}
.trust-seal strong { margin: 4px 0; font-size: 1.45rem; }

.consultation {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  padding-top: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.consultation h2 { margin: 0; max-width: 760px; font-size: clamp(2.2rem, 4vw, 4.3rem); line-height: 1.05; }
.button--light { background: var(--white); color: var(--navy); min-width: 210px; }
.button--light:hover { background: #dce2e8; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .7fr) 1.25fr;
  gap: 36px;
  padding: 48px 4.5vw 24px;
  background: var(--navy-deep);
}
.footer-brand p, .footer-column p { color: #c7ced8; font-size: .78rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column h3 {
  margin: 4px 0 12px;
  color: #b6a783;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-column a { margin-bottom: 8px; color: #d5dbe3; font-size: .78rem; }
.signup-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  overflow: hidden;
}
.signup-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 13px;
  color: white;
  background: transparent;
  font-size: .72rem;
}
.signup-form button {
  border: 0;
  padding: 0 15px;
  background: var(--green);
  color: white;
  font-size: .64rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  color: #aeb6c2;
  font-size: .67rem;
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .primary-nav { gap: 14px; font-size: .67rem; }
  .button--header { padding: 0 14px; }
  .hero { grid-template-columns: 48% 52%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1.3fr repeat(3, .7fr); }
  .footer-signup { grid-column: 1 / -1; max-width: 520px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 68px; padding: 0 20px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-self: end;
    width: 34px;
    padding: 7px;
    background: transparent;
    border: 0;
  }
  .nav-toggle span:not(.sr-only) { display: block; height: 1px; background: white; }
  .button--header { display: none; }
  .primary-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 15px 20px 22px;
    background: var(--navy-deep);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 2px; }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 25px 54px; }
  .hero h1 { font-size: clamp(3.25rem, 14vw, 5rem); }
  .hero-visual { min-height: 410px; }

  .section-pad { padding-left: 20px; padding-right: 20px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 14px 20px; }
  .trust-item { padding: 20px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-grid article:not(:last-child)::after { display: none; }
  .testimonial { grid-template-columns: 1fr; gap: 32px; padding: 44px 10vw; }
  blockquote { padding-right: 0; }
  .trust-seal { justify-self: start; }
  .consultation { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: repeat(2, 1fr); padding-left: 20px; padding-right: 20px; }
  .footer-brand, .footer-signup { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 330px; }
  .privacy-card { left: 18px; right: 18px; bottom: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 225px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line) !important; padding-left: 4px; }
  .trust-item:last-child { border-bottom: 0 !important; }
  .testimonial { padding: 42px 24px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-signup, .footer-bottom { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
