:root {
  --ink: #061b3d;
  --blue: #155bff;
  --mint: #64e49a;
  --cloud: #f8f7f2;
  --slate: #52637a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: Inter, "Avenir Next", Avenir, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  width: min(1320px, calc(100% - 48px));
  height: 102px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -1.8px;
}
.brand-mark {
  width: 38px;
  height: 35px;
  position: relative;
  display: inline-block;
}
.brand-mark i,
.brand-mark b {
  position: absolute;
  display: block;
  width: 15px;
  height: 36px;
  border-radius: 999px;
  top: 0;
}
.brand-mark i {
  background: var(--blue);
  left: 8px;
  transform: rotate(-35deg);
}
.brand-mark b {
  background: var(--mint);
  right: 7px;
  transform: rotate(38deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 650;
  color: #33445e;
}
.nav-links a:hover,
.button-text:hover {
  color: var(--blue);
}
.header-cta,
.button-primary {
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.header-cta {
  padding: 13px 22px;
}
.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: #0d4eec;
}
.hero {
  width: min(1320px, calc(100% - 48px));
  margin: 40px auto 0;
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(48px, 8vw, 138px);
}
.eyebrow,
.preview-tag {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
h1 {
  margin: 0;
  max-width: 745px;
  font-size: clamp(48px, 5.35vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.075em;
  font-weight: 800;
}
h1 span {
  display: block;
}
.hero-text {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.button-primary {
  padding: 18px 26px;
}
.button-text {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}
.button-text span {
  margin-left: 7px;
  font-size: 20px;
}
.hero-visual {
  min-height: 454px;
  position: relative;
  overflow: visible;
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 18px 20px 0 rgba(21, 91, 255, 0.13);
}
.hero-visual > img {
  width: 100%;
  height: 454px;
  display: block;
  border-radius: 34px;
  object-fit: cover;
  object-position: 70% center;
}
.visual-note {
  position: absolute;
  left: -38px;
  bottom: 34px;
  width: min(290px, 72%);
  padding: 23px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 27, 61, 0.18);
}
.visual-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.visual-note strong {
  display: block;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.visual-badge {
  position: absolute;
  right: -22px;
  top: 30px;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(6, 27, 61, 0.14);
}
.section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.value-strip {
  margin-top: 72px;
  padding: 28px max(24px, calc((100% - 1320px) / 2));
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.value-strip p {
  flex: none;
  margin: 0;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.value-strip span {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--mint);
}
.services {
  padding: 145px 0;
}
.section-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.section-intro .eyebrow,
.process-heading .eyebrow {
  margin-top: 12px;
}
h2 {
  margin: 0;
  max-width: 800px;
  color: var(--ink);
  font-size: clamp(36px, 4.1vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.068em;
  font-weight: 800;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 74px;
}
.service-card {
  min-height: 312px;
  padding: 30px;
  border: 1px solid #dce3ec;
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.service-card-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 18px 34px rgba(21, 91, 255, 0.16);
  transform: translateY(-20px);
}
.service-number {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}
.service-card-featured .service-number {
  color: var(--mint);
}
.service-card h3 {
  margin: auto 0 12px;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.055em;
}
.service-card p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
}
.service-card-featured p {
  color: #dfe8ff;
}
.process {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 100px;
  border-top: 1px solid #dce3ec;
}
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 0 0 33px;
  margin-bottom: 33px;
  border-bottom: 1px solid #dce3ec;
}
.process-list li:last-child {
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.process-list > li > span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}
.process-list h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.process-list p {
  max-width: 470px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
}
.local-story {
  padding: 100px 0 130px;
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: clamp(56px, 9vw, 165px);
  align-items: center;
}
.story-photos {
  position: relative;
  min-height: 525px;
}
.story-photo-main {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  height: 525px;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
  box-shadow: 18px 20px 0 rgba(100, 228, 154, 0.45);
}
.story-photo-accent {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 70px;
  width: 48%;
  height: 300px;
  border-radius: 28px;
  background: var(--blue);
}
.story-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 26px 0 31px;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.6;
}
.reassurance {
  padding: 116px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 8vw, 160px);
  align-items: center;
}
.reassurance-copy > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.6;
}
.reassurance-panel {
  min-height: 420px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 34px;
  background: var(--mint);
  box-shadow: 16px 16px 0 rgba(21, 91, 255, 0.11);
}
.panel-mark {
  width: 70px;
  height: 66px;
  position: relative;
  margin-bottom: auto;
}
.panel-mark i,
.panel-mark b {
  position: absolute;
  width: 27px;
  height: 68px;
  border-radius: 999px;
  top: 0;
}
.panel-mark i {
  left: 15px;
  background: var(--blue);
  transform: rotate(-35deg);
}
.panel-mark b {
  right: 12px;
  background: var(--ink);
  transform: rotate(38deg);
}
.reassurance-panel p {
  max-width: 420px;
  margin: 0;
  font-size: clamp(31px, 3.5vw, 49px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.065em;
}
.reassurance-panel span {
  margin-top: 22px;
  color: #164c3b;
  font-size: 15px;
  font-weight: 700;
}
.contact {
  margin-bottom: 44px;
  padding: 105px clamp(28px, 8vw, 120px);
  border-radius: 36px;
  background: var(--ink);
  color: #fff;
}
.contact .eyebrow {
  color: var(--mint);
}
.contact h2 {
  max-width: 900px;
  color: #fff;
}
.contact > p:not(.eyebrow) {
  max-width: 700px;
  margin: 27px 0 37px;
  color: #c7d5ec;
  font-size: 19px;
  line-height: 1.6;
}
.button-mint {
  gap: 9px;
  padding: 18px 24px;
  background: var(--mint);
  color: var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.button-mint:hover {
  transform: translateY(-2px);
  background: #82efb1;
}
.button-mint span {
  font-size: 19px;
}
.site-footer {
  width: min(1320px, calc(100% - 48px));
  min-height: 114px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-footer {
  font-size: 25px;
}
.brand-footer .brand-mark {
  transform: scale(0.86);
  transform-origin: left center;
  width: 32px;
}
.site-footer p,
.site-footer > a {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 650;
}
.site-footer > a:hover {
  color: var(--blue);
}
@media (max-width: 900px) {
  .section-intro,
  .process,
  .local-story,
  .reassurance {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    min-height: 250px;
  }
  .service-card-featured {
    transform: none;
  }
  .process {
    gap: 45px;
  }
  .local-story {
    padding: 75px 0 90px;
  }
  .story-photos {
    max-width: 470px;
  }
  .reassurance {
    gap: 48px;
  }
  .reassurance-panel {
    min-height: 330px;
  }
}
@media (max-width: 780px) {
  .site-header {
    width: min(100% - 32px, 620px);
    height: 82px;
  }
  .nav-links {
    display: none;
  }
  .header-cta {
    padding: 11px 16px;
    font-size: 14px;
  }
  .hero {
    width: min(100% - 32px, 620px);
    margin-top: 44px;
    grid-template-columns: 1fr;
    gap: 62px;
  }
  h1 {
    font-size: clamp(46px, 13vw, 64px);
  }
  .hero-text {
    font-size: 18px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .hero-visual > img {
    height: 380px;
  }
  .visual-note {
    left: -8px;
    bottom: 20px;
    padding: 18px;
  }
  .visual-note strong {
    font-size: 18px;
  }
  .visual-badge {
    right: -8px;
    top: 20px;
  }
  .section {
    width: min(100% - 32px, 620px);
  }
  .value-strip {
    margin-top: 64px;
    justify-content: flex-start;
    padding: 24px 16px;
  }
  .value-strip p {
    font-size: 17px;
  }
  .value-strip p:nth-of-type(3),
  .value-strip p:nth-of-type(4),
  .value-strip span:nth-of-type(n + 3) {
    display: none;
  }
  .services {
    padding: 88px 0;
  }
  .services-grid {
    margin-top: 46px;
  }
  .service-card {
    padding: 26px;
  }
  .process {
    padding: 88px 0;
  }
  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .local-story {
    padding: 64px 0 78px;
  }
  .story-photos {
    min-height: 440px;
  }
  .story-photo-main {
    width: min(88%, 340px);
    height: 440px;
  }
  .story-photo-accent {
    top: 42px;
    height: 255px;
  }
  .reassurance {
    padding: 75px 0;
  }
  .reassurance-panel {
    padding: 30px;
  }
  .contact {
    width: min(100% - 32px, 620px);
    margin-bottom: 22px;
    padding: 70px 28px;
  }
  .site-footer {
    width: min(100% - 32px, 620px);
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .site-footer p {
    grid-column: 1 / -1;
  }
  .site-footer > a {
    text-align: right;
    grid-column: 2;
    grid-row: 1;
  }
}
