:root {
  --pink: #d74566;
  --yellow: #f7ef26;
  --black: #050505;
  --white: #ffffff;
  --soft: #f5f5f2;
  --text: #171717;
  --header-h: 96px;
  --trust-band-h: clamp(132px, 11vw, 180px);
  --edge-x: clamp(28px, 3vw, 36px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
  padding: 20px var(--edge-x);
  background: var(--white);
}

.brand {
  display: inline-flex;
  width: 103px;
  height: 72px;
  overflow: hidden;
  text-decoration: none;
}

.brand-crop {
  display: block;
  width: 103px;
  height: 72px;
  overflow: hidden;
}

.brand-crop img {
  width: 103px;
  height: auto;
  max-width: none;
}

.trusted {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 400;
  letter-spacing: 0;
  pointer-events: none;
}

.fixed-trust-band {
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  z-index: 18;
  display: flex;
  align-items: flex-start;
  height: var(--trust-band-h);
  padding: 14px var(--edge-x) 0;
  background: var(--pink);
  pointer-events: none;
}

.mail-pill,
.section-mail {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.mail-pill {
  grid-column: 3;
  justify-self: end;
}

.mail-pill span:last-child,
.section-mail span:last-child {
  min-height: 38px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--black);
  font-size: 0.96rem;
  line-height: 1;
}

.mail-arrow,
.section-mail .mail-arrow {
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  margin-right: -1px;
  object-fit: contain;
}

.chart-deck {
  position: fixed;
  inset: 0;
  z-index: 1;
  min-height: 100vh;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--pink);
}

.scroll-stack {
  position: relative;
  z-index: 3;
  margin-top: 100vh;
  background: var(--white);
}

.chart-panel {
  position: absolute;
  inset: var(--header-h) 0 0 0;
  display: grid;
  align-items: end;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(34px, 6vw, 72px) var(--edge-x) clamp(96px, 13.5vh, 164px);
  background: var(--pink);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
  pointer-events: none;
  visibility: hidden;
}

.chart-panel.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.chart-copy {
  max-width: min(1080px, 100%);
}

.chart-copy h1,
.chart-copy h2 {
  margin: 0;
  line-height: 0.88;
  letter-spacing: 0;
}

.chart-copy span {
  display: block;
}

.chart-copy-mission {
  align-self: end;
}

.accent {
  color: var(--yellow);
  font-weight: 900;
}

.italic {
  color: var(--white);
  font-family: "Tiro Devanagari Hindi", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.chart-copy-mission .accent {
  font-size: clamp(5.9rem, 15.7vw, 13.7rem);
}

.chart-copy-mission .italic {
  margin-top: 0.12em;
  font-size: clamp(5.15rem, 13.95vw, 12.2rem);
}

.chart-copy-wide .accent {
  font-size: clamp(5.7rem, 15.5vw, 13.8rem);
}

.chart-copy-wide .italic {
  margin-top: 0.12em;
  font-size: clamp(5.05rem, 13.8vw, 12.2rem);
}

.chart-controls {
  position: absolute;
  right: clamp(20px, 3.4vw, 42px);
  bottom: clamp(52px, 7vh, 88px);
  z-index: 10;
  display: inline-grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  gap: 14px;
}

.control,
.scroll-cue {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  padding: 0;
}

.control-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.control-prev .control-icon {
  transform: rotate(180deg);
}

.scroll-cue .control-icon {
  transform: rotate(90deg);
}

.slide-dots {
  display: inline-flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.dot.is-active {
  width: 26px;
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  left: clamp(24px, 3.5vw, 44px);
  bottom: clamp(42px, 6vh, 72px);
  z-index: 10;
}

.info-stage {
  position: relative;
  padding: calc(var(--header-h) + var(--trust-band-h) + clamp(46px, 5.4vw, 78px)) var(--edge-x) clamp(62px, 6vw, 92px);
  background: var(--white);
  scroll-margin-top: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: start;
  gap: clamp(44px, 6.2vw, 92px);
}

.intro-copy {
  align-self: start;
}

.intro-copy h2 {
  max-width: clamp(31rem, 43vw, 45rem);
  margin: 0;
  color: var(--pink);
  font-size: clamp(4.25rem, 6.7vw, 6.55rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.portrait-wrap {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.portrait-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.body-copy {
  display: block;
  max-width: none;
  margin-top: clamp(42px, 4.8vw, 72px);
}

.body-copy p {
  margin: 0 0 1.16em;
  font-size: clamp(1.02rem, 1.18vw, 1.2rem);
  line-height: 1.32;
}

.section-mail {
  margin-top: clamp(22px, 2.8vw, 38px);
  margin-bottom: clamp(72px, 7vw, 110px);
  float: right;
}

.service-band {
  clear: both;
  padding: clamp(42px, 4.9vw, 82px) var(--edge-x) clamp(54px, 5.4vw, 92px);
  background: var(--yellow);
}

.accordion {
  --open-bleed-x: min(clamp(12px, 1.7vw, 24px), calc(var(--edge-x) - 6px));
  max-width: none;
  margin: 0;
  border-top: 4px solid rgba(255, 255, 255, 0.95);
}

details {
  border-bottom: 4px solid rgba(255, 255, 255, 0.95);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 82px);
  min-height: clamp(68px, 5.2vw, 104px);
  padding: clamp(15px, 1.65vw, 30px) 0;
  color: var(--black);
  cursor: pointer;
  font-size: clamp(1.38rem, 1.86vw, 2.5rem);
  line-height: 1.06;
  list-style: none;
}

summary span {
  min-width: 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: clamp(1.58rem, 1.93vw, 2.64rem);
  font-weight: 900;
  line-height: 1;
}

details[open] summary::after {
  content: "+";
}

details[open] {
  margin-top: -4px;
  margin-right: calc(var(--open-bleed-x) * -1);
  margin-left: calc(var(--open-bleed-x) * -1);
  padding: 0 var(--open-bleed-x) clamp(24px, 2.2vw, 40px);
  border-bottom: 0;
  background: var(--white);
}

details p {
  max-width: none;
  margin: 0;
  padding: 0 clamp(68px, 7vw, 140px) 0 0;
  font-size: clamp(0.9rem, 1.08vw, 1.32rem);
  line-height: 1.35;
}

.footer {
  overflow: hidden;
  background: var(--pink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(250px, 0.78fr) minmax(270px, 0.82fr);
  gap: clamp(40px, 7vw, 118px);
  align-items: start;
  padding: clamp(44px, 5.5vw, 78px) var(--edge-x) clamp(40px, 4.8vw, 70px);
}

.footer-brand {
  max-width: 330px;
  padding-top: 1px;
}

.footer-logo-crop {
  display: block;
  width: min(320px, 100%);
  height: clamp(132px, 9.2vw, 158px);
  overflow: hidden;
  margin-left: clamp(-34px, -2.2vw, -22px);
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-14%);
}

.footer-claim {
  max-width: 360px;
  margin: clamp(10px, 1.2vw, 18px) 0 0;
  font-size: clamp(0.98rem, 1.16vw, 1.3rem);
  font-weight: 400;
  line-height: 1.42;
}

.footer-heading {
  margin: 0 0 clamp(24px, 2.6vw, 38px);
  color: var(--yellow);
  font-size: clamp(0.95rem, 1.25vw, 1.35rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.footer-service {
  display: grid;
  gap: 0;
}

.footer-service-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: clamp(1.05rem, 1.32vw, 1.45rem);
  font-weight: 400;
  text-decoration: none;
}

.footer-service-link:first-of-type {
  border-top: 0;
}

.footer-service-link:hover {
  color: var(--yellow);
}

.footer-service-arrow {
  color: var(--yellow);
  font-size: 1.25em;
  line-height: 1;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 38px);
  margin-top: 0;
  padding-bottom: 0;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}

.footer-social-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-social-link-xing .footer-social-icon {
  width: 30px;
  height: 30px;
}

.footer-social-link:hover {
  opacity: 0.72;
}

.footer-copy {
  margin: 0;
  padding: clamp(22px, 2.8vw, 38px) var(--edge-x);
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  color: #000;
  text-align: center;
  font-size: clamp(1rem, 1.25vw, 1.45rem);
  line-height: 1.2;
}

.legal-main {
  padding-top: var(--header-h);
  background: var(--white);
}

.legal-hero {
  position: relative;
  min-height: clamp(170px, 19vw, 240px);
  padding: clamp(64px, 8vw, 98px) var(--edge-x) clamp(34px, 5vw, 62px);
  background: var(--pink);
  color: var(--white);
}

.trusted-legal {
  position: absolute;
  top: 14px;
  left: var(--edge-x);
}

.legal-hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--edge-x);
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.legal-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) var(--edge-x) clamp(64px, 8vw, 104px);
}

.legal-content h2 {
  max-width: 920px;
  margin: 2.2em 0 0.65em;
  color: var(--pink);
  font-size: clamp(1.18rem, 2.1vw, 1.62rem);
  font-weight: 700;
  line-height: 1.08;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li,
.legal-content dt,
.legal-content dd {
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.45;
}

.legal-content p {
  margin: 0 0 1.05em;
}

.legal-content a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content ol,
.legal-content ul {
  margin: 0 0 1.35em;
  padding-left: 1.25em;
}

.legal-content li {
  margin: 0 0 0.78em;
}

.legal-content dl {
  margin: 0;
}

.legal-content dt {
  font-weight: 700;
}

.legal-content dd {
  margin: 0 0 1.2em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  :root {
    --header-h: 86px;
    --trust-band-h: 116px;
    --edge-x: 18px;
  }

  .site-header {
    grid-template-columns: 84px 1fr;
    gap: 14px;
    padding: 17px 18px;
  }

  .brand,
  .brand-crop {
    width: 70px;
    height: 50px;
  }

  .brand-crop img {
    width: 70px;
  }

  .trusted {
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .fixed-trust-band {
    height: var(--trust-band-h);
    padding: 8px 18px 0;
    overflow: hidden;
  }

  .trusted-legal {
    top: 8px;
    left: 18px;
    max-width: calc(100vw - 36px);
    overflow: hidden;
  }

  .mail-pill {
    grid-column: 2;
    justify-self: end;
  }

  .mail-pill span:last-child {
    max-width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.75rem;
  }

  .mail-arrow,
  .section-mail .mail-arrow {
    width: 38px;
    height: 38px;
  }

  .chart-panel {
    padding: 28px 18px 90px;
  }

  .chart-copy-mission {
    align-self: center;
    padding-bottom: 0;
  }

  .chart-copy-mission .accent,
  .chart-copy-wide .accent {
    font-size: clamp(4.05rem, 19vw, 8.4rem);
  }

  .chart-copy-mission .italic,
  .chart-copy-wide .italic {
    font-size: clamp(3.6rem, 17vw, 7.4rem);
  }

  .chart-copy-wide .accent {
    font-size: clamp(3.4rem, 14vw, 5.4rem);
  }

  .chart-copy-wide .italic {
    font-size: clamp(3.15rem, 12.8vw, 4.95rem);
  }

  .chart-controls {
    right: 18px;
    left: 18px;
    bottom: 34px;
    justify-content: end;
  }

  .scroll-cue {
    left: 18px;
    bottom: 34px;
  }

  .info-stage {
    padding-right: 18px;
    padding-left: 18px;
  }

  .intro-grid,
  .body-copy {
    grid-template-columns: 1fr;
  }

  .intro-copy h2 {
    max-width: min(100%, 31rem);
    font-size: clamp(3.3rem, 14.6vw, 4.65rem);
  }

  .section-mail {
    float: none;
    max-width: 100%;
    font-size: 0.78rem;
  }

  .legal-hero {
    min-height: 168px;
    padding: 58px 18px 34px;
  }

  .legal-hero h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
    padding: 0;
  }

  .legal-content {
    padding: 38px 18px 58px;
  }

  .legal-content h2 {
    font-size: 1.22rem;
  }

  summary {
    min-height: 78px;
    align-items: flex-start;
    font-size: clamp(1.32rem, 6.1vw, 1.9rem);
    gap: 18px;
  }

  details p {
    padding-right: 0;
    font-size: clamp(0.94rem, 4.2vw, 1.12rem);
  }

  .footer {
    overflow: hidden;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px var(--edge-x) 28px;
  }

  .footer-brand {
    width: 100%;
    max-width: none;
  }

  .footer-logo-crop {
    width: min(350px, calc(100vw + 18px));
    height: clamp(132px, 35vw, 160px);
    margin-left: -36px;
  }

  .footer-brand img {
    width: 100%;
    height: auto;
    transform: translateY(-14%);
  }

  .footer-claim {
    margin-top: 12px;
    font-size: clamp(1rem, 4.5vw, 1.22rem);
    line-height: 1.42;
  }

  .footer-heading {
    margin-bottom: 16px;
    font-size: 0.86rem;
    letter-spacing: 0.32em;
  }

  .footer-service-link {
    min-height: 48px;
    font-size: clamp(1rem, 4.7vw, 1.22rem);
  }

  .footer-social {
    gap: 24px;
    padding-bottom: 22px;
  }

  .footer-social-link {
    width: 38px;
    height: 38px;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
  }

  .footer-social-link-xing .footer-social-icon {
    width: 26px;
    height: 26px;
  }

  .footer-copy {
    padding: 20px var(--edge-x) 24px;
    text-align: left;
    font-size: clamp(0.95rem, 4.1vw, 1.12rem);
  }
}

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