:root {
  --black: #050505;
  --gray: #6f6f6f;
  --gray-light: #a5a5a5;
  --line: #dedede;
  --surface: #f5f5f2;
  --white: #ffffff;
  --accent: #f17296;
  --accent-dark: #d9577c;
  --max-width: 1320px;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

em {
  color: var(--gray);
  font-weight: 400;
}

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

.section {
  padding: 150px 0;
  background: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo-link,
.site-logo {
  width: 136px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: var(--gray);
  font-size: 13px;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-cta,
.mobile-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.header-cta,
.mobile-cta,
.btn-primary {
  color: var(--accent);
  background: transparent;
}

.header-cta:hover,
.mobile-cta:hover,
.btn-primary:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.025);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 88px) 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.hero-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow,
.section-label,
.section-note,
.statement-kicker,
.footer-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 32px;
  color: var(--gray);
}

.hero h1 {
  max-width: 1220px;
  margin-bottom: 32px;
  font-size: clamp(58px, 7.4vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-subtext {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease;
}

.arrow-icon {
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link .arrow-icon {
  transition: transform 180ms ease;
}

.text-link:hover .arrow-icon {
  transform: translate(3px, 3px);
}

.text-link:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 84px;
  padding-top: 18px;
  border-top: 1px solid var(--black);
}

.section-label,
.section-note {
  margin-bottom: 0;
}

.section-note {
  color: var(--gray);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.65fr);
  gap: 10vw;
  align-items: end;
  margin-bottom: 112px;
}

.about-intro h2,
.section-heading h2,
.careers-layout h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(52px, 6vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-copy p {
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 16px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 320px;
  padding: 28px 34px 34px 0;
}

.principle + .principle {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.principle-number,
.why-row > span,
.business-index > span {
  display: block;
  color: var(--gray-light);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.principle-number {
  margin-bottom: 96px;
}

.principle h3 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1;
}

.principle p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 14px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.55fr);
  gap: 10vw;
  align-items: end;
  margin-bottom: 100px;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}

.business-list {
  border-top: 1px solid var(--black);
}

.business-item {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 190px;
  gap: 48px;
  min-height: 520px;
  padding: 48px 0;
  border-bottom: 1px solid var(--black);
}

.business-index {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.business-index p {
  max-width: 150px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.business-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
}

.brand-name {
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.business-main h3 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.business-main > p:not(.brand-name) {
  max-width: 630px;
  margin-bottom: 28px;
  color: var(--gray);
  font-size: 15px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray);
  font-size: 11px;
}

.business-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: center;
  gap: 18px;
  width: 100%;
  min-height: 72px;
  padding: 14px 18px 14px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.business-link > span {
  display: grid;
  gap: 2px;
}

.business-link small {
  color: var(--gray);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}

.business-link .arrow-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1;
  transition: transform 200ms ease;
}

.business-link:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.business-link:hover small {
  color: rgba(255, 255, 255, 0.72);
}

.business-link:hover .arrow-icon {
  transform: translate(3px, -3px);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 10vw;
}

.why-statement {
  position: sticky;
  top: 150px;
  align-self: start;
}

.statement-kicker {
  margin-bottom: 36px;
  color: var(--gray);
}

.why-statement h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.why-list {
  border-top: 1px solid var(--black);
}

.why-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  padding: 35px 0 64px;
  border-bottom: 1px solid var(--line);
}

.why-row h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
}

.why-row p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 14px;
}

.stats-section {
  padding: 40px 0 150px;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) repeat(3, minmax(160px, 0.5fr));
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.stat-heading,
.stat-item {
  min-height: 300px;
  padding: 32px 30px;
}

.stat-heading {
  padding-left: 0;
}

.stat-heading h2 {
  max-width: 600px;
  margin: 54px 0 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: clamp(60px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.stat-item span {
  color: var(--gray);
  font-size: 12px;
  text-transform: uppercase;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.55fr);
  gap: 10vw;
  align-items: end;
}

.careers-copy p {
  margin-bottom: 36px;
  color: var(--gray);
}

.site-footer {
  padding: 150px 0 30px;
  background: var(--white);
}

.footer-heading {
  padding-bottom: 130px;
  text-align: center;
}

.footer-heading .section-label {
  margin-bottom: 42px;
  color: var(--gray);
}

.footer-heading h2 {
  max-width: 1080px;
  margin: 0 auto 48px;
  font-size: clamp(60px, 7.5vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 16px;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-email .arrow-icon {
  transition: transform 180ms ease;
}

.footer-email:hover .arrow-icon {
  transform: translate(3px, -3px);
}

.footer-email:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.65fr);
  gap: 42px;
  padding: 45px 0 70px;
  border-top: 1px solid var(--black);
}

.footer-logo {
  width: 142px;
  margin-bottom: 26px;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 13px;
}

.footer-label {
  margin-bottom: 24px;
  color: var(--gray-light);
}

.footer-contact,
.footer-contact address,
.footer-contact p {
  color: var(--gray);
  font-size: 13px;
  font-style: normal;
}

.footer-contact a {
  color: var(--accent);
  transition: color 180ms ease;
}

.footer-contact a:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 11px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: var(--accent);
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--accent-dark);
}

.footer-bottom > a {
  justify-self: end;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.back-to-top .arrow-icon {
  transition: transform 180ms ease;
}

.back-to-top:hover .arrow-icon {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 2px;
    padding: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

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

  .mobile-nav a {
    padding: 12px 8px;
    color: var(--gray);
    font-size: 14px;
  }

  .mobile-nav a:not(.mobile-cta):hover {
    color: var(--accent);
  }

  .mobile-cta {
    margin-top: 8px;
    color: var(--accent) !important;
  }

  .mobile-cta:hover {
    color: var(--white) !important;
  }

  .section {
    padding: 110px 0;
  }

  .about-intro,
  .section-heading,
  .careers-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-copy,
  .section-heading > p,
  .careers-copy {
    max-width: 620px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
    padding: 30px 0 42px;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle-number {
    margin-bottom: 54px;
  }

  .business-item {
    grid-template-columns: 150px minmax(0, 1fr) 176px;
    gap: 28px;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .why-statement {
    position: static;
  }

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

  .stat-heading {
    grid-column: 1 / -1;
    min-height: auto;
    padding-bottom: 70px;
  }

  .stat-item:first-of-type {
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-logo,
  .logo-link {
    width: 116px;
  }

  .hero {
    min-height: 760px;
    padding-top: calc(var(--header-height) + 58px);
  }

  .eyebrow {
    margin-bottom: 26px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 48px;
    letter-spacing: -0.04em;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-meta span:not(:last-child) {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-topline {
    margin-bottom: 60px;
  }

  .section-note {
    display: none;
  }

  .about-intro {
    margin-bottom: 72px;
  }

  .about-intro h2,
  .section-heading h2,
  .careers-layout h2 {
    font-size: 50px;
  }

  .section-heading {
    margin-bottom: 70px;
  }

  .principle h3,
  .why-row h3 {
    font-size: 30px;
  }

  .business-item {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 0 48px;
  }

  .business-index {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: start;
  }

  .business-index p {
    text-align: right;
  }

  .business-main h3 {
    font-size: 46px;
  }

  .business-link {
    width: 100%;
    min-height: 64px;
    margin-top: 6px;
  }

  .why-statement h2 {
    font-size: 50px;
  }

  .why-row {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .stats-section {
    padding-bottom: 88px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-heading {
    grid-column: auto;
    padding: 28px 0 58px;
  }

  .stat-heading h2 {
    font-size: 44px;
  }

  .stat-item {
    min-height: 190px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    padding-top: 100px;
  }

  .footer-heading {
    padding-bottom: 90px;
  }

  .footer-heading h2 {
    font-size: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .footer-bottom > a {
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 44px;
  }

  .business-main h3,
  .about-intro h2,
  .section-heading h2,
  .careers-layout h2 {
    font-size: 43px;
  }

  .footer-heading h2 {
    font-size: 52px;
  }
}
