:root {
  --ink: #20191d;
  --muted: #70646a;
  --paper: #fffafb;
  --pink-50: #fff1f6;
  --pink-100: #ffdce9;
  --hero-pink: #fdd0d9;
  --pink-300: #f7a3c0;
  --pink-500: #f4518d;
  --pink-700: #ce2d68;
  --line: #f1dce4;
  --mint: #dff3ec;
  --r: 28px;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1160px;
  --article-max: 1060px;
  --reading-max: 680px;
  --section-space: 84px;
  --button-radius: 12px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  max-width: var(--max);
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  font-size: 1.14rem;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.brand em {
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
}
.site-header nav {
  display: flex;
  gap: 27px;
  font-size: 0.91rem;
  font-weight: 680;
}
.site-header nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pink-500);
  color: #fff;
  padding: 13px 19px;
  border-radius: var(--button-radius);
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  padding: 9px 14px;
  font-size: 0.8rem;
}
.text-link {
  font-size: 0.9rem;
  font-weight: 800;
}
.text-link span {
  margin-left: 5px;
}
.hero {
  position: relative;
  max-width: var(--max);
  min-height: 470px;
  margin: auto;
  background: var(--hero-pink);
  border-radius: var(--r);
  padding: 0 0 0 clamp(34px, 6vw, 82px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.hero:after {
  display: none;
}
.hero-copy,
.hero-portrait {
  z-index: 1;
}
.hero-copy {
  max-width: 610px;
  padding: 64px 56px 64px 0;
}
.hero-portrait {
  justify-self: end;
  align-self: stretch;
  width: 100%;
  max-width: 470px;
  aspect-ratio: auto;
  height: 100%;
  max-height: none;
  overflow: hidden;
  border-radius: 0;
  background: var(--hero-pink);
}
.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.08);
  transform-origin: right center;
}
.eyebrow {
  color: var(--pink-700);
  font-size: 0.73rem;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 12px;
}
.hero h1,
.page-intro h1,
.about h1 {
  font-size: clamp(3.25rem, 5vw, 5rem);
  line-height: 0.98;
  margin: 0 0 25px;
}
.lede {
  font-size: 1.16rem;
  line-height: 1.52;
  color: #4c4146;
  max-width: 590px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 34px;
}
.hero-app {
  justify-self: center;
  text-align: center;
  padding: 22px 28px 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 38px;
  transform: rotate(5deg);
}
.hero-app img {
  display: block;
  width: 190px;
  border-radius: 42px;
  margin: 0 auto 15px;
}
.hero-app p {
  font-size: 1.6rem;
  line-height: 1.03;
  margin: 0;
}
.hero-app span {
  display: inline-block;
  margin-top: 8px;
  background: white;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--pink-700);
}
.topic-strip {
  max-width: var(--max);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.topic-strip a {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 20px;
  font-weight: 800;
  transition: 0.2s;
}
.topic-strip a:hover {
  background: var(--pink-50);
  transform: translateY(-2px);
}
.topic-strip span {
  font-size: 0.8rem;
  color: var(--pink-500);
  margin-right: 10px;
}
.topic-strip b {
  float: right;
}
.featured,
.latest,
.related {
  max-width: var(--max);
  margin: auto;
  padding: var(--section-space) 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.section-heading h2,
.related h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
  line-height: 1;
  margin: 0;
}
.related h2 {
  margin-bottom: 36px;
}
.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.article-card:hover {
  transform: translateY(-4px);
}
.article-card h3 {
  font-size: 1.4rem;
  line-height: 1.12;
  margin: 0 0 13px;
}
.article-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.53;
  margin: 0 0 18px;
}
.article-card .text-link {
  margin-top: auto;
}
.editorial-banner {
  max-width: var(--max);
  min-height: 485px;
  margin: auto;
  background: var(--pink-500);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.editorial-banner > div {
  padding: 72px clamp(32px, 7vw, 88px);
  color: white;
}
.editorial-banner .eyebrow {
  color: #ffe8f1;
}
.editorial-banner h2 {
  font-size: clamp(3.1rem, 5vw, 4.85rem);
  line-height: 0.91;
  margin: 8px 0 24px;
}
.editorial-banner p:not(.eyebrow) {
  max-width: 380px;
  margin-bottom: 30px;
}
.button-light {
  background: #fff;
  color: var(--pink-700);
}
.editorial-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% top;
}
.latest {
  padding-bottom: 115px;
}
.page-intro {
  background: var(--pink-50);
  padding: 76px max(24px, calc((100vw - var(--max)) / 2)) 64px;
  border-bottom: 1px solid var(--line);
}
.page-intro h1 {
  max-width: 670px;
  font-size: clamp(3rem, 4.3vw, 4.6rem);
  line-height: 1.04;
  margin-bottom: 18px;
}
.filter-note {
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 14px 18px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--pink-700);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}
.guides-grid {
  max-width: var(--max);
  margin: auto;
  padding: 28px 0 var(--section-space);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-heading {
  background: var(--pink-50);
  padding: 62px max(24px, calc((100vw - var(--article-max)) / 2)) 50px;
  border-bottom: 1px solid var(--line);
}
.back {
  display: block;
  margin-bottom: 38px;
  font-size: 0.85rem;
  font-weight: 850;
}
.article-heading h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 4.5vw, 4.75rem);
  line-height: 1.02;
  margin: 0 0 18px;
}
.article-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 26px;
}
.article-grid {
  max-width: var(--article-max);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 185px;
  gap: 64px;
  padding: 64px 0 var(--section-space);
}
.article-body {
  max-width: var(--reading-max);
}
.article-body .intro {
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 600;
}
.article-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.12;
  margin: 44px 0 16px;
}
.article-body ol {
  padding-left: 22px;
}
.article-body li {
  padding: 8px;
}
.article-side {
  font-size: 0.83rem;
  line-height: 1.45;
  padding-top: 12px;
  position: sticky;
  top: 106px;
  align-self: start;
}
.article-side a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.article-side hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 25px 0;
}
.article-side p:last-child {
  color: var(--muted);
}
.note {
  border-radius: 16px;
  background: var(--pink-50);
  border: 1px solid var(--pink-100);
  padding: 20px 22px;
  margin: 38px 0;
}
.note strong {
  color: var(--pink-700);
}
.note p {
  margin: 7px 0 0;
  font-size: 0.92rem;
}
.app-callout {
  margin-top: 48px;
  border-radius: 20px;
  background: var(--pink-500);
  color: white;
  padding: 30px 32px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.app-callout .eyebrow {
  color: #ffe6f0;
}
.app-callout h2 {
  font-size: 2rem;
  margin: 0 0 10px;
}
.app-callout p:not(.eyebrow) {
  font-size: 0.9rem;
  margin: 0;
  max-width: 400px;
}
.app-callout .button {
  background: white;
  color: var(--pink-700);
  white-space: nowrap;
}
.related {
  padding-top: 68px;
}
.about {
  background: var(--pink-100);
  min-height: 560px;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
}
.about-copy {
  padding-top: 42px;
  max-width: 500px;
}
.about-copy .button {
  margin-top: 23px;
}
.legal {
  max-width: 800px;
  margin: auto;
  padding: 95px 0 110px;
}
.legal h1 {
  font-size: 4.25rem;
  line-height: 0.93;
}
.legal h2 {
  font-size: 2rem;
  margin-top: 45px;
}
footer {
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 35px;
  font-size: 0.85rem;
}
footer p {
  color: var(--muted);
  max-width: 270px;
}
.footer-links {
  display: grid;
  gap: 9px;
  align-content: start;
}
.copyright {
  grid-column: 1/-1;
  max-width: none !important;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 0;
}
@media (max-width: 1200px) {
  .site-header,
  .topic-strip,
  .movement-gallery,
  .featured,
  .latest,
  .related,
  .guides-grid,
  footer {
    width: calc(100% - 48px);
  }
  .article-grid {
    width: calc(100% - 48px);
  }
}
@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 32px);
    height: 70px;
    gap: 12px;
  }
  .site-header nav {
    display: none;
  }
  .brand {
    font-size: 1rem;
    min-width: 0;
  }
  .brand em {
    display: none;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .button-small {
    font-size: 0.75rem;
    padding: 8px 11px;
    white-space: nowrap;
  }
  .hero {
    width: calc(100% - 32px);
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 24px;
  }
  .hero-copy {
    padding: 48px 28px 34px;
  }
  .hero h1,
  .page-intro h1,
  .about h1 {
    font-size: 2.7rem;
  }
  .hero-portrait {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: var(--hero-pink);
  }
  .hero-portrait img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
    background: var(--hero-pink);
  }
  .hero-actions {
    gap: 17px;
    flex-wrap: wrap;
  }
  .topic-strip {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .movement-gallery,
  .featured,
  .latest,
  .related,
  .guides-grid {
    width: calc(100% - 40px);
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-heading {
    align-items: start;
    gap: 18px;
  }
  .movement-grid,
  .feature-grid,
  .card-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    min-height: 0;
  }
  .editorial-banner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .editorial-banner > div {
    padding: 54px 28px;
  }
  .editorial-banner img {
    height: 245px;
    object-position: top;
  }
  .page-intro {
    padding: 67px 24px 48px;
  }
  .filter-note {
    width: calc(100% - 40px);
    display: block;
  }
  .filter-note span {
    display: block;
  }
  .guides-grid {
    padding-top: 20px;
  }
  .article-heading {
    padding: 48px 24px;
  }
  .article-grid {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    padding: 48px 0 68px;
    gap: 0;
  }
  .article-side {
    display: none;
  }
  .article-body .intro {
    font-size: 1.28rem;
  }
  .app-callout {
    display: block;
    padding: 27px;
  }
  .app-callout .button {
    margin-top: 21px;
    white-space: normal;
  }
  .about {
    display: block;
    padding: 67px 24px;
  }
  .about-copy {
    padding-top: 0;
  }
  .legal {
    padding: 70px 24px;
  }
  .legal h1 {
    font-size: 3.3rem;
  }
  footer {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    padding: 36px 0;
  }
}
