:root {
  --ink: #151111;
  --black: #080607;
  --charcoal: #191417;
  --wine: #8f1235;
  --ruby: #c31f48;
  --gold: #d7ad58;
  --champagne: #f5e4bd;
  --paper: #fff9ed;
  --mist: #f4eee6;
  --muted: #756970;
  --line: rgba(21, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(8, 6, 7, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.gate-locked {
  overflow: hidden;
}

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

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

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

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

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 6, 7, 0.86);
  backdrop-filter: blur(14px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  width: min(520px, 100%);
  padding: 34px;
  color: var(--paper);
  background: linear-gradient(145deg, #161010, #2a1018 58%, #10100e);
  border: 1px solid rgba(245, 228, 189, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.45);
}

.age-gate__panel h2,
.age-gate__panel p {
  margin: 0;
}

.age-gate__panel h2 {
  margin-top: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.3rem);
  line-height: 0.96;
}

.age-gate__panel p {
  margin-top: 18px;
  color: rgba(255, 249, 237, 0.78);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 237, 0.88);
  border-bottom: 1px solid rgba(21, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: #3a3035;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav__links a {
  position: relative;
  padding: 8px 0;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ruby);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  font-weight: 800;
  background: var(--ink);
  border-radius: 6px;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--ruby);
  box-shadow: 0 14px 30px rgba(195, 31, 72, 0.28);
}

.button--secondary {
  color: var(--ink);
  background: var(--champagne);
  border-color: rgba(21, 17, 17, 0.08);
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(255, 249, 237, 0.3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ruby);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 42px max(24px, calc((100% - 1180px) / 2)) 64px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(8, 6, 7, 0.9) 0%, rgba(21, 17, 17, 0.75) 46%, rgba(143, 18, 53, 0.42) 100%),
    url("../img/hero-pattern.svg"),
    #110c0e;
  background-size: cover, 520px auto, auto;
}

.hero__content {
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero__media img {
  width: min(520px, 100%);
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.38));
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 40px 0 0;
}

.hero__stats div {
  min-height: 94px;
  padding: 16px;
  background: rgba(255, 249, 237, 0.08);
  border: 1px solid rgba(255, 249, 237, 0.13);
  border-radius: 8px;
}

.hero__stats dt {
  font-weight: 900;
  color: var(--champagne);
}

.hero__stats dd {
  margin: 4px 0 0;
  color: rgba(255, 249, 237, 0.66);
  font-size: 0.9rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 56px;
  align-items: center;
  padding: 88px max(24px, calc((100% - 1180px) / 2)) 96px;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(8, 6, 7, 0.92), rgba(143, 18, 53, 0.72)),
    url("../img/hero-pattern.svg"),
    var(--black);
}

.about-hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.08rem;
}

.about-hero__media {
  padding: 18px;
  background: rgba(255, 249, 237, 0.08);
  border: 1px solid rgba(255, 249, 237, 0.13);
  border-radius: 8px;
}

.about-hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.intro-band {
  background: var(--gold);
  border-top: 1px solid rgba(255, 249, 237, 0.2);
  border-bottom: 1px solid rgba(21, 17, 17, 0.16);
}

.intro-band__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-band a {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px;
  font-weight: 900;
  text-align: center;
  border-left: 1px solid rgba(21, 17, 17, 0.14);
}

.intro-band a:last-child {
  border-right: 1px solid rgba(21, 17, 17, 0.14);
}

.community {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 92px;
}

.community__media {
  padding: 20px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.community__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.community__copy h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.community__copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.community__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 56px;
  align-items: center;
}

.meaning-section {
  position: relative;
  width: auto;
  max-width: none;
  margin: 0;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  overflow: hidden;
  color: var(--paper);
  background:linear-gradient(90deg, rgb(8 6 7 / 55%), rgba(8, 6, 7, 0.68)), url(../img/findom-paypig.jpg) center / cover no-repeat;
}

.meaning-section .section__copy,
.meaning-section .definition-grid {
  position: relative;
  z-index: 1;
}

.meaning-section .eyebrow {
  color: var(--gold);
}

.meaning-section .section__copy p {
  color: rgba(255, 249, 237, 0.78);
}

.meaning-section .text-link {
  color: var(--champagne);
}

.meaning-section .text-link:hover,
.meaning-section .text-link:focus-visible {
  color: #fff;
}

.meaning-section .definition-grid article {
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(255, 249, 237, 0.24);
  backdrop-filter: blur(12px);
}

.section__copy h2,
.section__header h2,
.join h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.section__copy p,
.section__header p,
.join p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--ruby);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.section__header {
  max-width: 780px;
  margin-bottom: 42px;
}

.section__header--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.definition-grid article,
.step,
.profile-card,
.myth-grid article,
.accordion__item {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 17, 17, 0.07);
}

.definition-grid article {
  min-height: 190px;
  padding: 24px;
}

.definition-grid h3,
.step h3,
.profile-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.definition-grid p,
.step p,
.profile-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.about-story__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-story__grid article {
  min-height: 230px;
  padding: 26px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 17, 17, 0.07);
}

.about-story__grid strong {
  display: block;
  color: var(--wine);
  font-size: 1.2rem;
  line-height: 1.2;
}

.about-story__grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 112px;
}

.about-split__media {
  padding: 18px;
  background: var(--charcoal);
  border: 1px solid rgba(21, 17, 17, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-split__copy h2,
.about-band h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.about-main .section__header h2,
.about-main .join h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  line-height: 1.06;
}

.about-split__copy p,
.about-band p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-band {
  padding: 96px max(16px, calc((100% - 1180px) / 2));
  color: var(--paper);
  background:
    linear-gradient(100deg, rgba(8, 6, 7, 0.94), rgba(143, 18, 53, 0.8)),
    url("../img/meaning-sexy-bg.svg") center / cover no-repeat;
}

.about-band__inner {
  width: min(850px, 100%);
}

.about-band .eyebrow {
  color: var(--gold);
}

.about-band p {
  color: rgba(255, 249, 237, 0.74);
}

.contact-main {
  background: var(--paper);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
  padding: 88px max(24px, calc((100% - 1180px) / 2)) 96px;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(8, 6, 7, 0.92), rgba(143, 18, 53, 0.74)),
    url("../img/hero-pattern.svg"),
    var(--black);
}

.contact-hero h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.08rem;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: var(--champagne);
  font-weight: 900;
  border: 1px solid rgba(245, 228, 189, 0.34);
  border-radius: 6px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(255, 249, 237, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form__row {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: #3c3337;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ruby);
  box-shadow: 0 0 0 3px rgba(195, 31, 72, 0.14);
}

.contact-form .button {
  width: 100%;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.contact-cards article {
  min-height: 220px;
  padding: 26px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 17, 17, 0.07);
}

.contact-cards span {
  display: inline-flex;
  color: var(--ruby);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards h2 {
  margin: 10px 0 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.contact-cards p {
  margin: 14px 0 0;
  color: var(--muted);
}

.blog-main {
  background: var(--paper);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: 88px max(24px, calc((100% - 1180px) / 2)) 96px;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(8, 6, 7, 0.92), rgba(143, 18, 53, 0.72)),
    url("../img/hero-pattern.svg"),
    var(--black);
}

.blog-hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.blog-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.08rem;
}

.blog-hero .button {
  flex: 0 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.blog-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 17, 17, 0.07);
  overflow: hidden;
}

.blog-card a {
  display: grid;
  height: 100%;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  align-content: start;
  padding: 26px;
}

.blog-card span {
  color: var(--ruby);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 10px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.blog-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.blog-card strong {
  display: inline-flex;
  margin-top: 22px;
  color: var(--ruby);
  font-size: 0.9rem;
  font-weight: 900;
}

.blog-card--feature h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.blog-cta {
  padding: 72px max(16px, calc((100% - 900px) / 2));
  color: var(--paper);
  text-align: center;
  background:
    linear-gradient(100deg, rgba(8, 6, 7, 0.92), rgba(143, 18, 53, 0.82)),
    url("../img/meaning-sexy-bg.svg") center / cover no-repeat;
}

.blog-cta .eyebrow {
  color: var(--gold);
}

.blog-cta .eyebrow::before {
  display: none;
}

.blog-cta h2 {
  max-width: 760px;
  margin: 12px auto 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.blog-cta p {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 249, 237, 0.76);
  font-size: 1.04rem;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: 88px max(24px, calc((100% - 1180px) / 2)) 76px;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(8, 6, 7, 0.92), rgba(143, 18, 53, 0.72)),
    url("../img/hero-pattern.svg"),
    var(--black);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.08rem;
}

.legal-updated {
  color: var(--champagne) !important;
  font-size: 0.88rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 96px;
}

.legal-note {
  padding: 26px;
  color: var(--paper);
  background: var(--charcoal);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-note strong {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-note p {
  margin: 12px 0 0;
  color: rgba(255, 249, 237, 0.78);
}

.legal-section {
  margin-top: 46px;
}

.legal-section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-section p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.legal-section a {
  color: var(--ruby);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-list li {
  padding-left: 4px;
}

.psychology {
  padding: 0 max(16px, calc((100% - 1180px) / 2)) 120px;
  background: var(--paper);
}

.psychology__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 36px;
  align-items: stretch;
  padding: 34px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-left: 8px solid var(--ruby);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 17, 17, 0.07);
}

.psychology__copy h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.psychology__copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.psychology__copy .button {
  margin-top: 24px;
}

.psychology__cards {
  display: grid;
  gap: 12px;
}

.psychology__cards article {
  min-height: 120px;
  padding: 20px;
  color: var(--paper);
  background: var(--charcoal);
  border: 1px solid rgba(21, 17, 17, 0.08);
  border-radius: 8px;
}

.psychology__cards span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.psychology__cards p {
  margin: 8px 0 0;
  color: rgba(255, 249, 237, 0.74);
}

.paypig {
  width: auto;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  color: var(--paper);
  background: var(--charcoal);
}

.paypig .section__header p {
  color: rgba(255, 249, 237, 0.7);
}

.paypig .eyebrow {
  color: var(--gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step {
  min-height: 260px;
  padding: 24px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.08), rgba(255, 249, 237, 0.03));
  border-color: rgba(255, 249, 237, 0.12);
  box-shadow: none;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--black);
  font-weight: 900;
  background: var(--gold);
  border-radius: 50%;
}

.step p {
  color: rgba(255, 249, 237, 0.68);
}

.filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 900;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.filter.is-active {
  color: #fff;
  background: var(--ink);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.profile-card {
  overflow: hidden;
  transition: transform 180ms ease, opacity 180ms ease;
}

.profile-card.is-hidden {
  display: none;
}

.profile-card:hover {
  transform: translateY(-4px);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #21181b;
}

.profile-card div {
  padding: 22px;
}

.profile-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ruby);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.safety {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.safety__panel {
  padding: 28px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #3c3337;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--ruby);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fffdf8;
}

.myth-section {
  padding-top: 42px;
}

.myth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 34px;
}

.myth-layout .section__header {
  margin-bottom: 0;
}

.myth-layout__media {
  padding: 20px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.myth-layout__media img,
.relationship-section__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.myth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.myth-grid article {
  min-height: 260px;
  padding: 24px;
}

.myth-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ruby);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.myth-grid h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.myth-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.relationship-section {
  padding: 112px max(16px, calc((100% - 1180px) / 2));
  color: var(--paper);
  background: var(--black);
}

.relationship-section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.relationship-section .section__header p {
  color: rgba(255, 249, 237, 0.7);
}

.relationship-section .eyebrow {
  color: var(--gold);
}

.relationship-section__top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 38px;
}

.relationship-section__top .section__header {
  margin-bottom: 0;
}

.relationship-section__media {
  padding: 18px;
  background: rgba(255, 249, 237, 0.08);
  border: 1px solid rgba(255, 249, 237, 0.13);
  border-radius: 8px;
}

.relationship-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.relationship-grid article {
  min-height: 220px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.1), rgba(255, 249, 237, 0.04));
  border: 1px solid rgba(255, 249, 237, 0.13);
  border-radius: 8px;
}

.relationship-grid strong {
  display: block;
  color: var(--champagne);
  font-size: 1.22rem;
  line-height: 1.2;
}

.relationship-grid p {
  margin: 14px 0 0;
  color: rgba(255, 249, 237, 0.7);
}

.faq {
  padding-top: 72px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  overflow: hidden;
}

.accordion__item button {
  position: relative;
  width: 100%;
  min-height: 66px;
  padding: 18px 54px 18px 22px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.accordion__item button::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  color: var(--ruby);
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

.accordion__item.is-open button::after {
  content: "-";
}

.accordion__body {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.accordion__item.is-open .accordion__body {
  display: block;
}

.accordion__body p {
  margin: 0;
}

.post-main {
  background: var(--paper);
}

.post-article {
  color: var(--ink);
}

.post-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: 54px;
  align-items: center;
  padding: 84px max(24px, calc((100% - 1180px) / 2)) 92px;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(8, 6, 7, 0.92), rgba(143, 18, 53, 0.7)),
    url("../img/hero-pattern.svg"),
    var(--black);
}

.post-hero h1 {
  max-width: 840px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.post-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.08rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(245, 228, 189, 0.3);
  border-radius: 6px;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.post-actions--center {
  justify-content: center;
}

.post-hero__image {
  margin: 0;
  padding: 16px;
  background: rgba(255, 249, 237, 0.08);
  border: 1px solid rgba(255, 249, 237, 0.13);
  border-radius: 8px;
}

.post-hero__image img,
.post-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.post-hero__image img {
  aspect-ratio: 4 / 5;
}

.post-body {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 96px;
}

.post-body section {
  margin-top: 54px;
}

.post-lede {
  margin: 0;
  color: #3c3337;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
}

.post-body h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.post-body p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.post-image {
  margin: 58px 0 4px;
}

.post-image img {
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.post-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding: 28px;
  color: var(--paper);
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.post-callout .eyebrow {
  color: var(--gold);
}

.post-callout p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 249, 237, 0.78);
}

.post-callout .button {
  flex: 0 0 auto;
}

.post-final-cta {
  padding: 46px 28px;
  color: var(--paper);
  text-align: center;
  background:
    linear-gradient(100deg, rgba(8, 6, 7, 0.92), rgba(143, 18, 53, 0.82)),
    url("../img/meaning-sexy-bg.svg") center / cover no-repeat;
  border-radius: 8px;
}

.post-final-cta .eyebrow {
  color: var(--gold);
}

.post-final-cta .eyebrow::before {
  display: none;
}

.post-final-cta h2 {
  max-width: 740px;
  margin: 12px auto 0;
}

.post-final-cta p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 249, 237, 0.76);
}

.join {
  padding: 86px 16px;
  color: var(--paper);
  background:linear-gradient(100deg, rgb(8 6 7 / 38%), rgba(143, 18, 53, 0.83)), url(../img/findom-paypig.jpg), var(--black);
}

.join__inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.join .eyebrow {
  color: var(--gold);
}

.join .eyebrow::before {
  display: none;
}

.join p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 249, 237, 0.72);
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(620px, 100%);
  margin: 30px auto 0;
  padding: 8px;
  background: #fffdf8;
  border-radius: 8px;
}

.join__actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.signup input {
  min-width: 0;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 34px max(16px, calc((100% - 1180px) / 2));
  color: rgba(255, 249, 237, 0.72);
  background: var(--black);
  border-top: 1px solid rgba(255, 249, 237, 0.1);
}

.footer p {
  max-width: 560px;
  margin: 8px 0 0;
}

.footer__brand,
.footer__links a {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.footer__brand {
  display: inline-flex;
  font-size: 1.04rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  max-width: 520px;
}

.footer__links a {
  color: rgba(255, 249, 237, 0.78);
  font-size: 0.94rem;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--gold);
}

@media (max-width: 980px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 12px;
  }

  .nav__cta {
    display: none;
  }

  .hero,
  .about-hero,
  .contact-hero,
  .post-hero,
  .blog-hero,
  .legal-hero,
  .about-split,
  .community,
  .section--split,
  .safety,
  .psychology__inner,
  .myth-layout,
  .relationship-section__top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero__media {
    min-height: 320px;
    order: -1;
  }

  .intro-band__inner,
  .about-story__grid,
  .contact-cards,
  .blog-grid,
  .steps,
  .profile-grid,
  .myth-grid,
  .relationship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__header--row {
    display: grid;
  }
}

@media (max-width: 640px) {
  .age-gate__panel {
    padding: 24px;
  }

  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 66px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .nav__links {
    top: 66px;
    right: 12px;
    left: 12px;
  }

  .hero {
    padding: 32px 16px 46px;
  }

  .about-hero {
    padding: 54px 16px 70px;
  }

  .contact-hero {
    gap: 28px;
    padding: 54px 16px 70px;
  }

  .post-hero {
    gap: 28px;
    padding: 54px 16px 70px;
  }

  .blog-hero {
    gap: 28px;
    padding: 54px 16px 70px;
  }

  .legal-hero {
    padding: 54px 16px 60px;
  }

  .about-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .contact-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .post-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .blog-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .legal-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.45rem);
  }

  .hero__actions,
  .age-gate__actions,
  .community__actions,
  .post-actions,
  .post-callout,
  .blog-hero {
    display: grid;
  }

  .hero__stats,
  .intro-band__inner,
  .about-story__grid,
  .contact-cards,
  .blog-grid,
  .definition-grid,
  .steps,
  .profile-grid,
  .myth-grid,
  .relationship-grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 240px;
  }

  .intro-band a {
    min-height: 56px;
    border-right: 1px solid rgba(21, 17, 17, 0.14);
    border-bottom: 1px solid rgba(21, 17, 17, 0.14);
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 76px 0;
  }

  .community {
    width: min(100% - 28px, 1180px);
    gap: 28px;
    padding: 76px 0 64px;
  }

  .community__media {
    padding: 12px;
  }

  .community__copy h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .about-split {
    width: min(100% - 28px, 1180px);
    gap: 28px;
    padding-bottom: 76px;
  }

  .about-split__media {
    padding: 12px;
  }

  .about-split__copy h2,
  .about-band h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .about-main .section__header h2,
  .about-main .join h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .about-band {
    padding: 76px 14px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-cards {
    width: min(100% - 28px, 1180px);
    padding: 76px 0;
  }

  .blog-grid {
    width: min(100% - 28px, 1180px);
    padding: 76px 0;
  }

  .blog-card h2,
  .blog-card--feature h2 {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .blog-cta {
    padding: 76px 14px;
  }

  .blog-cta h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .legal-content {
    width: min(100% - 28px, 900px);
    padding: 58px 0 76px;
  }

  .legal-note {
    padding: 22px;
  }

  .legal-section {
    margin-top: 38px;
  }

  .legal-section h2 {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .post-body {
    width: min(100% - 28px, 860px);
    padding: 58px 0 76px;
  }

  .post-body section {
    margin-top: 42px;
  }

  .post-body h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

  .post-callout,
  .post-final-cta {
    padding: 24px;
  }

  .post-callout .button {
    width: 100%;
  }

  .psychology {
    padding: 0 14px 76px;
  }

  .psychology__inner {
    padding: 24px;
    border-left-width: 5px;
  }

  .psychology__copy h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .relationship-section {
    padding: 76px 14px;
  }

  .myth-layout,
  .relationship-section__top {
    gap: 24px;
    margin-bottom: 28px;
  }

  .myth-layout__media,
  .relationship-section__media {
    padding: 12px;
  }

  .section__copy h2,
  .section__header h2,
  .join h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

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

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

  .footer {
    display: grid;
  }

  .footer__links {
    justify-content: flex-start;
  }
}
