:root {
  --page: #ededef;
  --paper: #ffffff;
  --ink: #050505;
  --line: #141414;
  --gutter: 4.05vw;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.36;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
button,
.button {
  font-family: "Urbanist", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: var(--page);
}

.brand img {
  width: clamp(220px, 19.5vw, 300px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
}

.nav-pill {
  min-width: 128px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
}

.hero-frame {
  padding: 0 var(--gutter) 82px;
  background: var(--page);
}

.hero {
  position: relative;
  min-height: 671px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: 54% 98%;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.47);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1600px);
  display: grid;
  justify-items: center;
  padding: 92px 32px 20px;
  color: #ffffff;
  text-align: center;
  transform: translateY(18px);
}

.hero h1 {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(58px, 4.85vw, 99px);
  line-height: 1.05;
}

.hero p {
  margin: 49px 0 71px;
  font-size: clamp(25px, 1.75vw, 36px);
  line-height: 1.25;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  min-width: 422px;
  padding: 20px 48px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.button-dark {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.button-outline {
  margin-top: 18px;
}

.services-section {
  display: grid;
  grid-template-columns: 42.4% 1fr;
  gap: 40px;
  padding: 143px var(--gutter) 126px;
  background: var(--paper);
}

.services-intro h2,
.why-section h2,
.page-hero h1,
.contact-intro h1 {
  margin: 0;
  font-size: clamp(54px, 3.4vw, 70px);
  line-height: 1.05;
}

.services-intro p {
  width: min(100%, 645px);
  margin: 48px 0 31px;
  font-size: 25px;
}

.accordion {
  border-top: 2px solid var(--line);
}

.accordion-item {
  border-bottom: 2px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  min-height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 7px 0 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(34px, 1.85vw, 39px);
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

.accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-item.is-open .accordion-icon::after {
  display: none;
}

.accordion-panel {
  display: none;
  width: min(100%, 610px);
  padding: 33px 0 60px;
  font-size: 24px;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.service-kicker {
  margin: 0 0 26px;
}

.accordion-panel p {
  margin: 0;
}

.why-section {
  min-height: 812px;
  padding: 136px var(--gutter) 120px;
  background: var(--page);
}

.why-section h2 {
  margin-bottom: 160px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 103px;
}

.why-grid p {
  margin: 0;
  font-size: 29px;
  line-height: 1.38;
}

.why-section blockquote {
  width: min(100%, 1422px);
  margin: 40px auto 0;
  padding-top: 67px;
  border-top: 2px solid var(--line);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(34px, 2.1vw, 45px);
  line-height: 1.33;
  font-weight: 400;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  padding: 92px var(--gutter) 72px;
  background: var(--page);
  border-top: 0;
}

.site-footer h2 {
  margin: 0;
  font-size: clamp(40px, 3.1vw, 55px);
  line-height: 1.05;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: clamp(230px, 28vw, 390px);
  height: auto;
}

.site-footer p {
  width: min(100%, 760px);
  margin: 22px 0 0;
}

address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

address strong {
  margin-bottom: 10px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.about-page,
.contact-page {
  background: var(--page);
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: 45px var(--gutter) 42px;
}

.about-founder-copy {
  max-width: 620px;
}

.about-founder h1,
.about-why h2,
.about-cta h2,
.contact-intro h1 {
  margin: 0;
  font-size: clamp(52px, 4.4vw, 77px);
  line-height: 1.08;
}

.about-founder p,
.about-why p,
.about-cta p,
.contact-intro p {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.42;
}

.about-circle-image {
  width: min(100%, 540px);
  aspect-ratio: 1;
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}

.about-circle-image img,
.about-why img,
.about-cta img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-why {
  min-height: 840px;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(360px, 1fr);
  gap: clamp(58px, 9vw, 150px);
  align-items: center;
  padding: 120px var(--gutter);
  background: var(--paper);
}

.about-why figure {
  width: min(100%, 600px);
  aspect-ratio: 1.92 / 1;
  margin: 0;
}

.about-why h2 {
  text-align: right;
}

.about-why div {
  max-width: 620px;
}

.about-cta {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: center;
  padding: 170px var(--gutter) 135px;
}

.about-cta div {
  max-width: 720px;
}

.about-cta figure {
  width: min(100%, 500px);
  aspect-ratio: 1.55 / 1;
  margin: 0;
  justify-self: end;
}

.about-cta .button {
  min-width: 320px;
  min-height: 65px;
  margin-top: 18px;
  font-size: 17px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(470px, 1fr);
  gap: clamp(54px, 8vw, 120px);
  padding: 52px var(--gutter) 720px;
}

.contact-content {
  display: grid;
  gap: 70px;
  align-content: start;
  max-width: 640px;
}

.contact-intro p {
  max-width: 610px;
  margin-top: 44px;
}

.contact-lines {
  display: grid;
  gap: 2px;
  margin-top: 23px;
  font-size: 18px;
}

.contact-photo {
  height: 985px;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form fieldset,
.contact-form label {
  border: 0;
  margin: 0;
  padding: 0;
}

.contact-form legend,
.contact-form label span {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
}

.contact-form em {
  font-style: normal;
  opacity: 0.7;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 8px 17px;
}

.contact-form textarea {
  min-height: 104px;
  border-radius: 20px;
  resize: vertical;
}

.contact-form small {
  display: block;
  margin: -1px 0 12px;
  color: rgba(5, 5, 5, 0.65);
  font-size: 15px;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.name-fields legend {
  grid-column: 1 / -1;
}

.contact-note {
  align-self: start;
  border: 1px solid rgba(8, 10, 19, 0.12);
  background: #f8fbff;
  padding: 24px;
}

.contact-note h2 {
  margin: 0 0 16px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 28px;
}

.contact-note ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.form-button {
  justify-self: start;
  min-width: 104px;
  min-height: 65px;
  padding: 18px 31px;
  font-size: 15px;
}

@media (max-width: 1180px) {
  body {
    font-size: 19px;
  }

  .brand img {
    width: 260px;
  }

  .hero h1 {
    white-space: normal;
  }

  .services-section,
  .contact-page,
  .about-founder,
  .about-why,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-founder-copy,
  .about-why div,
  .about-cta div,
  .contact-content {
    max-width: 760px;
  }

  .about-circle-image,
  .about-cta figure {
    justify-self: start;
  }

  .about-why h2 {
    text-align: left;
  }

  .contact-photo {
    height: 760px;
  }

  .why-grid {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 6vw;
  }

  .site-header {
    height: auto;
    min-height: 96px;
    align-items: flex-start;
    gap: 20px;
    padding-top: 27px;
    padding-bottom: 24px;
  }

  .brand img {
    width: 240px;
  }

  .nav-links {
    gap: 16px;
    font-size: 18px;
  }

  .nav-pill {
    min-width: 100px;
    min-height: 54px;
  }

  .hero-frame {
    padding-bottom: 54px;
  }

  .hero {
    min-height: 570px;
  }

  .hero-content {
    padding: 40px 24px 10px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero p {
    margin: 30px 0 44px;
    font-size: 22px;
  }

  .button {
    min-width: 0;
    width: min(100%, 360px);
    min-height: 64px;
    font-size: 21px;
  }

  .services-section,
  .why-section,
  .page-hero,
  .contact-page,
  .about-founder,
  .about-why,
  .about-cta,
  .site-footer {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .services-intro h2,
  .why-section h2,
  .page-hero h1,
  .about-founder h1,
  .about-why h2,
  .about-cta h2,
  .contact-intro h1 {
    font-size: 45px;
  }

  .services-intro p,
  .why-grid p,
  .page-hero p,
  .about-founder p,
  .about-why p,
  .about-cta p,
  .contact-intro p {
    font-size: 21px;
  }

  .accordion-trigger {
    min-height: 78px;
    font-size: 28px;
  }

  .accordion-panel {
    font-size: 20px;
    padding: 20px 0 42px;
  }

  .why-section h2 {
    margin-bottom: 60px;
  }

  .why-grid,
  .name-fields,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-circle-image {
    width: min(100%, 420px);
  }

  .about-why figure,
  .about-cta figure,
  .contact-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1.42 / 1;
  }

  .contact-content {
    gap: 46px;
  }

  .why-section blockquote {
    padding-top: 40px;
    font-size: 31px;
  }
}

@media (max-width: 520px) {
  .site-header {
    display: grid;
  }

  .nav-links {
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .contact-page {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .name-fields {
    grid-template-columns: 1fr;
  }

  .contact-form {
    box-shadow: none;
  }
}
