:root {
  --ink: #080a0b;
  --soft-ink: #343b3e;
  --cyan: #42b7d7;
  --cyan-dark: #1594b8;
  --paper: #f4f2ed;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--cyan); color: var(--ink); }

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 5.2vw, 84px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  background: var(--white);
  border-bottom: 1px solid rgba(8,10,11,.09);
  position: relative;
  z-index: 10;
}
.brand img { width: 184px; height: auto; }
.site-header nav { display: flex; gap: 38px; justify-content: center; }
.site-header nav a,
.header-cta { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.site-header nav a { position: relative; padding: 10px 0; }
.site-header nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--cyan); transition: right .25s ease;
}
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 12px; }
.header-cta svg, .button svg { width: 19px; height: 19px; transition: transform .2s ease; }
.header-cta:hover svg, .button:hover svg { transform: translateX(4px); }

.hero {
  min-height: calc(100vh - 92px);
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 148px) clamp(24px, 7vw, 112px) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 60px;
  align-items: center;
}
.hero::after {
  content: ""; position: absolute; width: 42vw; height: 42vw; min-width: 460px; min-height: 460px; right: -18vw; top: -20vw; border: 1px solid rgba(66,183,215,.3); border-radius: 50%; box-shadow: 0 0 0 110px rgba(66,183,215,.025), 0 0 0 220px rgba(66,183,215,.018);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .18; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.eyebrow, .section-label {
  margin: 0 0 30px; font-size: 11px; font-weight: 750; letter-spacing: .24em; text-transform: uppercase; display: flex; align-items: center; gap: 13px;
}
.eyebrow { color: rgba(255,255,255,.66); }
.eyebrow span { width: 34px; height: 2px; background: var(--cyan); }
.hero h1, .section-heading h2, .approach h2, .contact h2, .principle h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  font-weight: 400; letter-spacing: -.045em;
}
.hero h1 { margin: 0; font-size: clamp(58px, 8.2vw, 126px); line-height: .88; }
.hero h1 em, .section-heading h2 em, .approach h2 em { color: var(--cyan); font-weight: 400; }
.hero-copy { max-width: 620px; margin: 42px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button {
  min-height: 58px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border: 1px solid transparent; font-size: 11px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button-primary { background: var(--cyan); color: var(--ink); }
.button-primary:hover { background: var(--white); }
.text-link { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.35); padding: 9px 0; }
.text-link span { color: var(--cyan); margin-left: 6px; }
.hero-aside { position: relative; z-index: 2; align-self: end; border-left: 1px solid rgba(255,255,255,.2); padding: 8px 0 8px 28px; }
.hero-aside p { font-family: "Iowan Old Style", Georgia, serif; font-size: 24px; line-height: 1.45; margin: 0 0 22px; }
.hero-aside span { display: block; color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; line-height: 1.8; }
.scroll-note { position: absolute; left: clamp(24px, 7vw, 112px); bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.scroll-note span { display: block; width: 38px; height: 1px; background: rgba(255,255,255,.35); }

.proof-strip { background: var(--white); border-bottom: 1px solid #dfe1de; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 126px; padding: 28px clamp(16px, 2.8vw, 40px); border-right: 1px solid #e0e2df; display: flex; flex-direction: column; justify-content: center; }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { font-family: "Iowan Old Style", Georgia, serif; font-size: 33px; font-weight: 400; line-height: 1; }
.proof-item span { color: #70787b; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-top: 12px; }

.section-shell { max-width: 1500px; margin: 0 auto; padding-left: clamp(24px, 7vw, 112px); padding-right: clamp(24px, 7vw, 112px); }
.intro { padding-top: clamp(90px, 11vw, 165px); padding-bottom: clamp(90px, 11vw, 165px); }
.section-label { color: #687175; }
.section-label::before { content: ""; width: 34px; height: 2px; background: var(--cyan); }
.intro-copy { display: grid; grid-template-columns: minmax(360px, 1.2fr) minmax(300px, .8fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
.intro-copy h2 { margin: 0; font-family: "Iowan Old Style", Georgia, serif; font-weight: 400; letter-spacing: -.035em; line-height: 1.08; font-size: clamp(42px, 5vw, 74px); }
.intro-copy > div { border-top: 1px solid #bbbeba; padding-top: 28px; }
.intro-copy p { margin: 0 0 20px; color: #4f575a; font-size: 17px; line-height: 1.8; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid #bbbeba; border-bottom: 1px solid #bbbeba; }
.pillar-grid article { min-height: 270px; padding: 30px clamp(18px, 2.4vw, 34px) 30px; border-right: 1px solid #cfd1ce; }
.pillar-grid article:first-child { padding-left: 0; }
.pillar-grid article:last-child { border-right: 0; padding-right: 0; }
.pillar-grid article > span { color: var(--cyan-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.pillar-grid h3 { margin: 55px 0 14px; font-family: "Iowan Old Style", Georgia, serif; font-size: 24px; font-weight: 400; }
.pillar-grid p { margin: 0; color: #5d6568; font-size: 13px; line-height: 1.7; }

.services { background: #0d1113; color: var(--white); padding: clamp(90px, 10vw, 150px) 0; }
.section-label.light { color: rgba(255,255,255,.54); }
.section-heading { display: grid; grid-template-columns: .6fr 1.4fr; gap: 50px; align-items: start; margin-bottom: 70px; }
.section-heading h2 { margin: -15px 0 0; font-size: clamp(48px, 6vw, 86px); line-height: .98; }
.section-heading-copy { max-width: 680px; margin: 29px 0 0; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.75; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.service-card { padding: 34px clamp(22px, 3vw, 46px) 40px; min-height: 430px; border-right: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; transition: background .25s ease; }
.service-card:first-child { padding-left: 0; }
.service-card:last-child { border-right: 0; padding-right: 0; }
.service-card:hover { background: rgba(66,183,215,.035); }
.service-top { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .2em; }
.service-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; }
.service-card h3 { margin: 80px 0 22px; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(29px, 2.4vw, 40px); font-weight: 400; }
.service-card > p { color: rgba(255,255,255,.62); line-height: 1.75; font-size: 15px; max-width: 500px; }
.service-card ul { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card li { border: 1px solid rgba(255,255,255,.18); padding: 8px 10px; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.approach { padding-top: clamp(90px, 11vw, 165px); padding-bottom: clamp(90px, 11vw, 165px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 160px); }
.approach-intro { position: sticky; top: 48px; align-self: start; }
.approach h2 { font-size: clamp(43px, 4.7vw, 68px); line-height: 1.02; margin: 0 0 32px; }
.approach-intro > p:last-child { color: #596164; font-size: 16px; line-height: 1.75; max-width: 460px; }
.process-list { list-style: none; padding: 0; margin: 0; counter-reset: steps; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; column-gap: 25px; padding: 29px 0 34px; border-top: 1px solid #c7c9c5; }
.process-list li:last-child { border-bottom: 1px solid #c7c9c5; }
.step-number { color: var(--cyan-dark); font-size: 11px; font-weight: 700; letter-spacing: .15em; padding-top: 8px; grid-row: 1 / 3; }
.process-list h3 { font-family: "Iowan Old Style", Georgia, serif; font-size: 31px; font-weight: 400; margin: 0 0 10px; }
.process-list p { color: #596164; line-height: 1.65; margin: 0; max-width: 490px; }

.principle { min-height: 760px; background: var(--cyan); display: grid; grid-template-columns: .75fr 1.25fr; overflow: hidden; }
.principle-mark { font-size: clamp(450px, 55vw, 880px); font-family: Arial, sans-serif; font-weight: 900; line-height: .62; letter-spacing: -.2em; color: rgba(255,255,255,.16); transform: translate(-12%, 27%); user-select: none; }
.principle-content { align-self: center; padding: 100px clamp(24px, 8vw, 130px) 100px 20px; position: relative; z-index: 2; }
.principle-content .section-label { color: rgba(8,10,11,.62); }
.principle-content .section-label::before { background: var(--ink); }
.principle h2 { margin: 0; max-width: 760px; font-size: clamp(43px, 5.1vw, 72px); line-height: 1.02; }
.why-lead { max-width: 580px; margin: 28px 0 45px; font-size: 16px; line-height: 1.7; }
.why-list { border-top: 1px solid rgba(8,10,11,.3); }
.why-list article { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 25px 0; border-bottom: 1px solid rgba(8,10,11,.3); }
.why-list article > span { font-size: 24px; line-height: 1; }
.why-list h3 { margin: 0 0 8px; font-family: "Iowan Old Style", Georgia, serif; font-size: 24px; font-weight: 400; }
.why-list p { max-width: 610px; margin: 0; color: rgba(8,10,11,.66); font-size: 14px; line-height: 1.65; }

.contact { padding-top: clamp(90px, 11vw, 160px); padding-bottom: clamp(90px, 11vw, 160px); display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(60px, 10vw, 170px); }
.contact-copy h2 { margin: 0; max-width: 850px; font-size: clamp(47px, 6vw, 85px); line-height: 1.02; }
.contact-copy > p:nth-of-type(2) { color: #596164; max-width: 610px; font-size: 17px; line-height: 1.8; margin: 35px 0; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--cyan-dark); }
.contact-details { align-self: end; padding: 34px 0; border-top: 1px solid #bbbeba; border-bottom: 1px solid #bbbeba; display: flex; flex-direction: column; }
.contact-details > p { margin: 0 0 20px; color: #687175; font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.contact-details > a { font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(23px, 2vw, 31px); margin: 5px 0; display: flex; justify-content: space-between; gap: 20px; }
.contact-details a span { font-family: "Avenir Next", Arial, sans-serif; color: #727a7d; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; align-self: center; }
.availability { margin-top: 26px; padding-top: 21px; border-top: 1px solid #d0d2ce; color: #687175; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; display: flex; align-items: center; gap: 9px; }
.availability span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }

footer { background: var(--white); padding: 55px clamp(24px, 5.2vw, 84px) 35px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: start; border-top: 1px solid #e4e4e1; }
.footer-brand img { width: 170px; }
footer > p { color: #727a7d; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin: 13px 0; }
.footer-links { justify-self: end; display: flex; flex-direction: column; gap: 9px; font-size: 13px; text-align: right; }
.footer-links a:hover { color: var(--cyan-dark); }
footer .copyright { grid-column: 1 / -1; border-top: 1px solid #e4e4e1; padding-top: 25px; margin-top: 35px; font-size: 9px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 82px; }
  .site-header nav { display: none; }
  .brand img { width: 160px; }
  .hero { min-height: 760px; grid-template-columns: 1fr; align-items: center; }
  .hero-aside { display: none; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading h2 { margin-top: 0; }
  .intro-copy, .approach, .contact { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid article:nth-child(2) { border-right: 0; }
  .pillar-grid article:nth-child(-n+2) { border-bottom: 1px solid #cfd1ce; }
  .approach-intro { position: static; }
  .service-card { min-height: 400px; }
  .principle { grid-template-columns: .6fr 1.4fr; }
}

@media (max-width: 720px) {
  .site-header { padding: 0 20px; }
  .header-cta { font-size: 0; gap: 0; width: 42px; height: 42px; border: 1px solid #d7d7d4; justify-content: center; }
  .header-cta svg { width: 20px; }
  .hero { min-height: calc(100svh - 82px); padding: 76px 24px 54px; }
  .hero h1 { font-size: clamp(53px, 16vw, 76px); }
  .hero-copy { margin-top: 30px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 32px; }
  .button { width: 100%; }
  .scroll-note { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { min-height: 108px; padding: 22px 18px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid #e0e2df; }
  .proof-item:first-child { padding-left: 18px; }
  .proof-item strong { font-size: 28px; }
  .intro-copy { gap: 40px; }
  .pillar-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .pillar-grid article, .pillar-grid article:first-child, .pillar-grid article:last-child { min-height: 230px; padding: 28px 0; border-right: 0; border-bottom: 1px solid #cfd1ce; }
  .pillar-grid article:last-child { border-bottom: 0; }
  .pillar-grid h3 { margin-top: 42px; }
  .service-list { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child, .service-card:last-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding: 28px 0 34px; min-height: 350px; }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 55px; }
  .principle { min-height: 630px; grid-template-columns: 1fr; position: relative; }
  .principle-mark { position: absolute; inset: auto auto -10% -15%; font-size: 130vw; transform: none; }
  .principle-content { padding: 90px 24px; }
  .contact-details { margin-top: 5px; }
  .contact-details > a { font-size: 23px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; text-align: left; margin-top: 15px; }
  footer .copyright { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
