:root {
  --ink: #092f4b;
  --teal: #10a89d;
  --paper: #f6f4ed;
  --white: #fff;
  --line: rgba(9, 47, 75, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; }
a { color: inherit; }
.site-header { min-height: 88px; padding: 20px clamp(24px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand-logo { display: block; width: clamp(150px, 16vw, 210px); }
.brand-logo img { display: block; width: 100%; height: auto; }
nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 40px); }
nav a { text-decoration: none; font-size: 14px; font-weight: 600; }
.language { border: 1px solid var(--ink); border-radius: 100px; background: transparent; color: var(--ink); padding: 8px 11px; font: 700 12px "DM Sans"; cursor: pointer; }

.hero { min-height: calc(100vh - 88px); padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 110px); display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; overflow: hidden; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .2em; }
h1, h2 { margin: 24px 0; font-family: Manrope, sans-serif; letter-spacing: -.055em; line-height: .96; }
h1 { max-width: 860px; font-size: clamp(64px, 9vw, 138px); }
h2 { font-size: clamp(46px, 6vw, 88px); }
.lede { max-width: 610px; margin-bottom: 36px; font-size: clamp(18px, 2vw, 25px); line-height: 1.5; }
.button { display: inline-block; border-radius: 100px; background: var(--ink); color: var(--white); padding: 16px 24px; text-decoration: none; font-weight: 700; }
.hero-mark { width: min(34vw, 430px); justify-self: end; }
.hero-mark img { display: block; width: 100%; height: auto; }

.statement { padding: clamp(80px, 12vw, 180px) clamp(24px, 10vw, 160px); background: var(--ink); color: var(--white); }
.statement p { max-width: 1300px; margin: 0; font: 600 clamp(38px, 6vw, 84px)/1.12 Manrope, sans-serif; letter-spacing: -.045em; }
.services { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); }
.section-heading { display: grid; grid-template-columns: .5fr 1.5fr; align-items: start; }
.section-heading h2 { margin-top: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-grid article { min-height: 310px; padding: 30px 28px; border-right: 1px solid var(--line); }
.service-grid article:last-child { border-right: 0; }
.service-grid span { color: var(--teal); font-weight: 700; }
.service-grid h3 { margin-top: 70px; font: 700 25px Manrope; }
.service-grid p { max-width: 330px; line-height: 1.65; }
.contact { padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px); background: var(--teal); color: var(--ink); }
.contact a { display: inline-block; margin-top: 28px; font-size: clamp(20px, 3vw, 36px); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 8px; }
footer { padding: 40px clamp(24px, 5vw, 76px); display: flex; align-items: end; justify-content: space-between; }
footer p { margin: 0; font-size: 13px; }

.contact-page { min-height: calc(100vh - 88px); padding: clamp(60px, 9vw, 120px) clamp(24px, 10vw, 160px); }
.contact-page h1 { max-width: 900px; font-size: clamp(58px, 8vw, 112px); }
.contact-intro { max-width: 650px; font-size: clamp(18px, 2vw, 24px); line-height: 1.55; }
.contact-form { max-width: 760px; margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-field { display: grid; gap: 9px; }
.form-field.full, .contact-form .form-actions { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: var(--ink); padding: 15px 16px; font: 16px "DM Sans", sans-serif; }
.form-field textarea { min-height: 180px; resize: vertical; }
.contact-form button { border: 0; cursor: pointer; }
.form-status { margin: 20px 0 0; font-weight: 600; }

@media (max-width: 760px) {
  nav a { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-mark { width: 65vw; margin-top: 70px; justify-self: center; }
  .section-heading, .service-grid { grid-template-columns: 1fr; }
  .service-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  footer { gap: 30px; flex-wrap: wrap; }
  .contact-form { grid-template-columns: 1fr; }
}
