:root {
  --ink: #121012;
  --muted: #6d5f61;
  --accent: #d94e55;
  --accent-soft: #f7b9c3;
  --blush: #fff3f5;
  --line: #b99b9e;
  --paper: #fff;
  --footer: #eeeeee;
  --max: 1520px;
  --content: 1240px;
  --serif: "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h2 {
  color: var(--accent);
  font-size: clamp(1.7rem, 2.1vw, 2.5rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 44px), var(--content));
}

.section-pad {
  padding-block: clamp(56px, 8vw, 138px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  margin-inline: auto;
  padding-inline: max(22px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid #bfb4b5;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(128px, 10vw, 170px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav,
.footer-top nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 42px);
  font-size: clamp(0.72rem, 0.8vw, 0.93rem);
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a,
.footer-top a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-top a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(980px, calc(100svh - 72px));
  overflow: hidden;
  padding-top: clamp(68px, 8vw, 150px);
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: min(72vw, 1260px);
  height: min(78vw, 1050px);
  background: #fbd3dc;
  pointer-events: none;
} */

.hero-video {
  position: absolute;
  top: 0;
  right: clamp(230px, 18vw, 330px);
  z-index: 1;
  /* width: min(58vw, 920px); */
  height: min(78vw, 1050px);
  object-fit: cover;
  opacity: 0.58;
  pointer-events: none;
  /* center the video */
  transform: translateX(-50%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cube {
  position: absolute;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
  filter: saturate(1.12);
}

.cube-hero {
  display: none;
  right: -60px;
  top: -18px;
  width: min(30vw, 560px);
  opacity: 0.26;
}

.cube-hero-low {
  display: none;
  right: 300px;
  bottom: 20px;
  width: min(40vw, 740px);
  opacity: 0.36;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 40px;
  align-items: center;
  min-height: 670px;
}

.hero-copy {
  padding-left: clamp(0px, 3.5vw, 80px);
}

.hero h1 {
  color: var(--accent);
  font-size: clamp(3rem, 5.8vw, 6.25rem);
  font-weight: 400;
  line-height: 1.01;
}

.hero h1 em {
  font-style: italic;
  font-weight: 700;
}

.hero p {
  max-width: 540px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.45vw, 1.82rem);
  line-height: 1.38;
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  margin-top: 88px;
  padding: 13px 34px 12px;
  border-bottom: 2px solid currentColor;
  color: var(--accent);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.line-button.dark {
  color: var(--ink);
}

.hero-mark {
  position: absolute;
  right: clamp(-14px, -0.7vw, 0px);
  bottom: -165px;
  z-index: 3;
  width: clamp(180px, 18vw, 330px);
  min-height: clamp(330px, 28vw, 520px);
  pointer-events: none;
}

.hero-mark img {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  object-fit: contain;
}

@media (max-width: 1780px) {
  .hero-mark img {
    width: 40%;
    height: 40%;
    top: 85%;
  }
}

@media (max-width: 1500px) {
  .hero-mark img {
    width: 40%;
    height: 40%;
    top: 90%;
  }
}

@media screen and (max-width: 1310px) {
  .hero-mark img {
    display: none;
  }
}

.hero-mark span {
  position: absolute;
  right: 112px;
  top: 120px;
  width: clamp(38px, 4vw, 58px);
  height: clamp(38px, 4vw, 58px);
  border-radius: 50%;
  background: var(--accent);
}

.hero-mark span + span {
  right: 66px;
  background: #f8b9c3;
}

.hero-mark strong {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #f0525b;
  font-size: clamp(15rem, 20vw, 23rem);
  line-height: 0.72;
}

.about {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff 44%, #fff2f5 100%);
}

.pill-copy-wrap {
  position: relative;
  width: min(100%, 980px);
  margin: clamp(42px, 5vw, 88px) auto 56px;
}

.pill-copy {
  width: 100%;
  margin: 0;
  padding: 24px 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.18vw, 1.42rem);
  line-height: 1.7;
  text-align: center;
}

.about-mark {
  position: absolute;
  right: clamp(-14px, -0.7vw, 0px);
  bottom: -80px;
  z-index: 3;
  width: clamp(120px, 14vw, 220px);
  min-height: clamp(180px, 18vw, 280px);
  pointer-events: none;
}

.about-mark img {
  position: absolute;
  top: 70%;
  left: 85%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/* @media (max-width: 1780px) {
  .about-mark img {
    width: 40%;
    height: 40%;
    top: 85%;
  }
}

@media (max-width: 1500px) {
  .about-mark img {
    width: 40%;
    height: 40%;
    top: 90%;
  }
} */

@media screen and (max-width: 1310px) {
  .about-mark {
    display: none;
  }
}

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  min-height: 300px;
}

.founder {
  display: flex;
  gap: 24px;
  align-items: center;
}

.founder-right {
  justify-content: flex-end;
  text-align: right;
}

.founder img {
  width: clamp(118px, 11vw, 184px);
  aspect-ratio: 1;
  border: 8px solid #ef4f5a;
  border-radius: 50%;
  object-fit: cover;
}

.founder strong {
  display: block;
  font-size: clamp(1.1rem, 1.45vw, 1.8rem);
}

.founder small {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.78rem, 0.9vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.06), transparent 38%),
    linear-gradient(180deg, #fff 0%, #fff 78%, #fff6f7 100%);
}

.cube-left {
  left: -140px;
  bottom: 18%;
  width: min(35vw, 620px);
}

.cube-right {
  right: -130px;
  bottom: 6%;
  width: min(32vw, 590px);
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-top: clamp(44px, 5vw, 82px);
}

.service-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 275px;
  padding: 18px 16px 22px;
  border: 1px solid #d8aeb3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.service-grid article:nth-child(1),
.service-grid article:nth-child(2),
.service-grid article:nth-child(3) {
  grid-column: span 2;
}

.service-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-grid img {
  width: 160px;
  height: 118px;
  object-fit: contain;
}

.service-grid h3 {
  margin-top: 12px;
  color: var(--accent);
  font-size: clamp(1.2rem, 1.5vw, 2.18rem);
  line-height: 1.08;
}

.service-grid p {
  margin-top: 8px;
  font-size: clamp(0.8rem, 0.9vw, 1.06rem);
  line-height: 1.35;
}

.process p {
  width: min(100%, 1080px);
  margin: 38px auto 0;
  font-size: clamp(0.98rem, 1.2vw, 1.56rem);
  line-height: 1.78;
}

.text-center {
  text-align: center;
}

.approach {
  background: linear-gradient(180deg, #fff 0%, #fff0f3 42%, #ffd5dd 100%);
}

.approach-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  margin-top: 48px;
}

.approach-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.approach-item img {
  width: clamp(46px, 5vw, 68px);
  height: clamp(46px, 5vw, 68px);
  object-fit: contain;
}

.approach-item span {
  font-size: clamp(0.88rem, 1vw, 1.15rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
}

.audience {
  padding-block: clamp(42px, 5vw, 76px) clamp(100px, 7vw, 118px);
  background: linear-gradient(180deg, #fff 0%, #fff 42%, #f7f7f7 73%, #ededed 100%);
}

.audience .container {
  width: min(calc(100% - 44px), 1180px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.25vw, 20px);
  align-items: start;
  margin-top: clamp(34px, 4vw, 56px);
}

.audience article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  height: clamp(176px, 12vw, 210px);
  padding: clamp(17px, 1.2vw, 22px) 16px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 13px 28px rgba(29, 24, 25, 0.045);
  text-align: center;
  overflow: visible;
}

.audience h3 {
  position: relative;
  z-index: 1;
  max-width: 21ch;
  min-height: 76px;
  color: #5d5859;
  font-size: clamp(0.95rem, 0.92vw, 1.12rem);
  font-weight: 700;
  line-height: 1.18;
}

.audience img {
  position: absolute;
  left: 50%;
  bottom: -72px;
  width: auto;
  max-width: 118%;
  height: clamp(158px, 12vw, 196px);
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  transform: translateX(-50%);
}

.audience article:nth-child(1) img {
  bottom: -76px;
  height: clamp(176px, 13.2vw, 222px);
}

.audience article:nth-child(2) img {
  bottom: -92px;
  height: clamp(164px, 11.8vw, 196px);
}

.audience article:nth-child(3) img {
  bottom: -70px;
  height: clamp(142px, 10.8vw, 178px);
}

.audience article:nth-child(4) img {
  bottom: -94px;
  height: clamp(168px, 12.6vw, 208px);
}

.references {
  background: #fff;
}

.references .container {
  width: min(calc(100% - 44px), 1180px);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
  align-items: center;
  margin-top: clamp(34px, 4vw, 58px);
}

.references-grid article {
  display: grid;
  min-height: clamp(118px, 10vw, 154px);
  place-items: center;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid #ead1d6;
  border-radius: 8px;
  background: rgba(255, 246, 248, 0.64);
}

.references-grid img {
  width: 100%;
  max-width: 150px;
  max-height: 78px;
  filter: grayscale(1) contrast(1.12);
  object-fit: contain;
}

.references-grid article:nth-child(4) img {
  max-width: 190px;
  filter: brightness(0);
}

.contact {
  background: #f8b7c4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 7vw, 130px);
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 24px;
  max-width: 520px;
  justify-self: center;
  width: 100%;
  color: #000000;
}

.contact-kicker {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
}

.contact-item {
  display: grid;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d84f55;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-item p,
.contact-item a,
.contact-person {
  /* color: #fff; */
  font-size: clamp(1.1rem, 1.3vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}

.contact-item p {
  display: grid;
  gap: 4px;
}

.contact-person {
  margin-top: 8px;
}

.contact-person:first-child {
  margin-top: 0;
}

.contact-art {
  position: relative;
  min-height: 480px;
}

.contact-art h2 {
  color: #fff;
  text-align: left;
}

.contact-art img {
  position: absolute;
  right: 0;
  bottom: -70px;
  width: min(100%, 680px);
  max-height: 620px;
  object-fit: contain;
}

.blog-teaser {
  background: linear-gradient(180deg, #fff 0%, #fff 74%, #fff2f5 100%);
}

.blog-card {
  display: grid;
  margin-top: 54px;
  text-align: center;
}

.blog-card img {
  width: 100%;
  height: clamp(240px, 28vw, 480px);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 42%;
}

.blog-card span {
  margin-top: 18px;
  font-size: clamp(1.1rem, 1.8vw, 2rem);
  font-weight: 700;
}

.site-footer {
  background: var(--footer);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
  padding: 32px 0 24px;
  border-bottom: 1px solid #999;
}

.footer-mails {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 18px 22px;
  font-size: 0.93rem;
  font-style: italic;
  font-weight: 700;
}

.footer-mails a::before {
  content: "✉";
  margin-right: 9px;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
  padding: 18px 0 28px;
  font-size: 0.86rem;
  font-style: italic;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding-block: clamp(76px, 10vw, 190px) 80px;
  text-align: center;
}

.page-hero .cube-a {
  left: -150px;
  top: 130px;
  width: min(30vw, 520px);
}

.page-hero .cube-b {
  right: 110px;
  top: 60px;
  width: min(28vw, 500px);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 400;
  line-height: 1.12;
}

.page-hero p {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.22;
}

.profile-page .page-hero {
  min-height: clamp(430px, 39vw, 500px);
  padding-block: clamp(74px, 8vw, 140px) 58px;
}

.profile-page .page-hero h1 {
  font-size: clamp(2.35rem, 3.45vw, 3.9rem);
}

.profile-page .page-hero p {
  font-size: clamp(1.08rem, 1.45vw, 1.62rem);
}

.profile-section {
  position: relative;
  overflow: hidden;
  padding-block: 0 clamp(76px, 7.2vw, 120px);
}

.profile-band {
  display: none;
}

.profile-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1300px);
  margin-inline: auto;
  grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1fr);
  gap: clamp(34px, 5.6vw, 96px);
  align-items: center;
}

.profile-grid::before {
  content: "";
  position: absolute;
  left: 43%;
  top: 50%;
  z-index: -1;
  width: clamp(330px, 32vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fae8eb;
  opacity: 0.82;
  transform: translate(-50%, -50%);
}

.profile-grid + .profile-grid {
  margin-top: clamp(76px, 8vw, 140px);
}

.profile-grid.reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.84fr);
}

.profile-grid.reverse::before {
  left: 49%;
  top: 54%;
  width: clamp(350px, 34vw, 520px);
}

.profile-photo {
  width: min(100%, clamp(330px, 32vw, 470px));
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.profile-grid.reverse .profile-photo {
  justify-self: end;
}

.profile-copy {
  max-width: 690px;
  font-size: clamp(0.92rem, 1.08vw, 1.24rem);
  font-weight: 400;
  line-height: 1.34;
  text-align: center;
}

.profile-copy.left {
  max-width: 610px;
  text-align: left;
}

.profile-copy p + p {
  margin-top: clamp(24px, 2.8vw, 42px);
}

.profile-wide {
  position: relative;
  z-index: 1;
  width: min(100%, 1300px);
  margin: clamp(34px, 4vw, 62px) auto 0;
  font-size: clamp(0.92rem, 1.08vw, 1.24rem);
  font-weight: 400;
  line-height: 1.34;
}

.profile-wide p + p {
  margin-top: clamp(24px, 2.4vw, 36px);
}

.article-page {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 130px) 120px;
}

.article-page .cube-a {
  left: -120px;
  top: 140px;
  width: min(28vw, 500px);
}

.article-page .cube-b {
  right: -70px;
  top: 0;
  width: min(28vw, 500px);
}

.article {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(44px, 20.4vw, 392px)), 1528px);
  margin-inline: auto;
}

.article-kicker {
  color: var(--accent);
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 400;
  text-align: center;
}

.article h1 {
  max-width: 980px;
  margin-top: 54px;
  font-size: clamp(2.35rem, 3.15vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
}

.article h2 {
  margin-top: 70px;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.35vw, 2.8rem);
  text-align: left;
}

.article p,
.article li {
  font-size: clamp(1rem, 1.22vw, 1.45rem);
  line-height: 1.64;
}

.article p {
  margin-top: 24px;
}

.article ul {
  margin: 18px 0 0;
  padding-left: 1.3em;
}

.article-hero-image,
.article-image {
  width: 100%;
  margin-top: 44px;
  border-radius: 4px;
  object-fit: cover;
}

.article-hero-image {
  max-height: 920px;
}

.article-image {
  max-height: 820px;
}

.article-split {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: clamp(32px, 6vw, 110px);
  align-items: center;
  margin-top: 70px;
}

.article-split img {
  width: 100%;
  object-fit: contain;
}

.privacy {
  padding-block: clamp(70px, 8vw, 150px);
}

.privacy .container {
  width: min(calc(100% - 44px), 1440px);
}

.privacy h1 {
  color: var(--accent);
  font-size: clamp(2.4rem, 4.2vw, 4.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.privacy p {
  margin-top: 34px;
  font-size: clamp(0.92rem, 1.05vw, 1.2rem);
  line-height: 1.64;
}

@media (max-width: 1100px) {
  .hero::before,
  .hero-video {
    display: none;
  }

  .cube-hero,
  .cube-hero-low {
    display: block;
  }

  .hero-mark img {
   display: none;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 66px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 0;
    border-bottom: 1px solid #c7b9bc;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .founders,
  .contact-grid,
  .profile-grid,
  .profile-grid.reverse,
  .article-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-video {
    display: none;
  }

  .hero-mark {
    display: none;
  }

  .line-button {
    margin-top: 42px;
  }

  .pill-copy {
    border-radius: 36px;
    padding: 24px;
  }

  .about-mark {
    display: none;
  }

  .founder,
  .founder-right {
    justify-content: center;
    text-align: center;
  }

  .founder-right {
    flex-direction: column-reverse;
  }

  .founder-left {
    flex-direction: column;
  }

  .service-grid,
  .approach-row {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .service-grid article:nth-child(1),
  .service-grid article:nth-child(2),
  .service-grid article:nth-child(3),
  .service-grid article:nth-child(4),
  .service-grid article:nth-child(5) {
    grid-column: auto;
  }

  .approach-item {
    padding-bottom: 26px;
    border-bottom: 1px solid #a99095;
  }

  .approach-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .audience article {
    height: 174px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 92px;
  }

  .references-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-art {
    min-height: 360px;
    order: -1;
  }

  .contact-art h2 {
    text-align: center;
  }

  .contact-art img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(88%, 420px);
  }

  .footer-top,
  .footer-bottom,
  .footer-mails {
    flex-direction: column;
    text-align: center;
  }

  .footer-top nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 22px;
    white-space: normal;
  }

  .profile-copy,
  .profile-copy.left {
    max-width: none;
    text-align: left;
  }

  .profile-grid::before,
  .profile-grid.reverse::before {
    left: 50%;
    top: 38%;
    width: min(86vw, 430px);
  }

  .profile-photo,
  .profile-grid.reverse .profile-photo {
    justify-self: center;
    max-width: 420px;
  }

  .page-hero {
    min-height: 390px;
  }

  .profile-page .page-hero {
    min-height: 390px;
    padding-block: 66px 48px;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow,
  .article,
  .footer-top,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding-inline: 14px;
  }

  .hero h1,
  .privacy h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .privacy h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
  }

  .privacy p {
    margin-top: 28px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-copy {
    padding-left: 0;
  }

  .service-grid img {
    height: 104px;
  }

  .audience {
    padding-bottom: 112px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    row-gap: 116px;
  }

  .audience article {
    width: min(100%, 360px);
    height: 166px;
    margin-inline: auto;
  }

  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .references-grid article {
    min-height: 118px;
  }

  .audience h3 {
    font-size: 0.98rem;
  }

  .audience article:nth-child(1) img {
    bottom: -76px;
    height: 206px;
  }

  .audience article:nth-child(2) img {
    bottom: -104px;
    height: 190px;
  }

  .audience article:nth-child(3) img {
    bottom: -82px;
    height: 160px;
  }

  .audience article:nth-child(4) img {
    bottom: -98px;
    height: 204px;
  }

  .article h1 {
    margin-top: 34px;
  }

  .profile-page .page-hero {
    min-height: 370px;
  }

  .profile-copy,
  .profile-wide {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .profile-grid + .profile-grid {
    margin-top: 56px;
  }
}
