:root {
  --red: #e4112d;
  --red-dark: #8b0718;
  --wine: #2b0710;
  --black: #090607;
  --ink: #15090c;
  --paper: #fff7f5;
  --muted: #7e6768;
  --line: rgba(255, 255, 255, 0.16);
  --card: #16090d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(9, 6, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 32px rgba(228, 17, 45, 0.32);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 750;
}

.nav a:hover,
.footer-links a:hover {
  color: #ff5268;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(18px, 5vw, 72px) 54px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 3, 5, 0.95) 0%, rgba(43, 7, 16, 0.78) 40%, rgba(43, 7, 16, 0.28) 72%, rgba(7, 3, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 6, 7, 0.84) 0%, rgba(9, 6, 7, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #ff5268;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.55rem, 6.8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.7vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.hero-actions,
.trust-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-cta {
  background: var(--red);
  box-shadow: 0 18px 40px rgba(228, 17, 45, 0.34);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  margin-top: 22px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(9, 6, 7, 0.38);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

.intro-section,
.audience-band,
.feature-section,
.seo-section,
.stories-section,
.faq-section,
.site-footer,
.simple-page {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--paper);
  color: var(--ink);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #4f3b3d;
  font-size: 1.05rem;
}

.intro-copy p,
.seo-panel p,
.story-card p,
.feature-card p,
.audience-grid p,
.simple-page p {
  margin: 0;
}

.audience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(43, 7, 16, 0.95), rgba(9, 6, 7, 0.98)),
    var(--black);
}

.audience-grid,
.feature-grid,
.story-grid {
  display: grid;
  gap: 16px;
}

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

.audience-grid article,
.feature-card,
.story-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.audience-grid article {
  padding: 22px;
}

.audience-grid p,
.feature-card p,
.story-card span,
.faq-list p,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-section,
.stories-section,
.faq-section {
  background: #0d0809;
}

.feature-section > h2,
.stories-section > h2,
.faq-section > h2 {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.feature-card {
  min-height: 268px;
  padding: 24px;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: #ff5268;
  font-weight: 950;
}

.seo-section {
  background:
    linear-gradient(90deg, rgba(9, 6, 7, 0.92), rgba(139, 7, 24, 0.72)),
    url("assets/hero-cuckold-dating.jpg") center / cover fixed;
}

.seo-panel {
  max-width: 820px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(9, 6, 7, 0.78);
  backdrop-filter: blur(14px);
}

.seo-panel h2 {
  margin-bottom: 18px;
}

.seo-panel p + p {
  margin-top: 16px;
}

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

.story-card {
  padding: 24px;
}

.quote {
  min-height: 132px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
}

.story-card span {
  display: inline-flex;
  margin-top: 18px;
  color: #ff5268;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-list p {
  padding: 0 20px 20px;
}

.faq-cta {
  width: fit-content;
  margin-top: 26px;
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(180px, 0.5fr);
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #080506;
}

.footer-about {
  max-width: 560px;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--white);
}

.footer-links {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
  list-style: none;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
}

.simple-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.simple-page .simple-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 74px;
}

.simple-page a {
  color: var(--red);
  font-weight: 850;
}

.legal-page .simple-wrap {
  max-width: 900px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 14px;
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.legal-page p {
  color: #4f3b3d;
  font-size: 1rem;
}

.legal-updated {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.legal-note {
  margin-top: 34px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: #fff0ed;
}

@media (max-width: 980px) {
  .intro-section,
  .audience-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .site-footer,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: fixed;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
    font-size: 0.9rem;
  }

  .brand span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 760px;
    padding: 108px 16px 42px;
    align-items: end;
  }

  .hero-image {
    height: 100%;
    object-position: 58% center;
  }

  .hero-overlay {
    height: 100%;
    background:
      linear-gradient(0deg, rgba(7, 3, 5, 0.82) 0%, rgba(43, 7, 16, 0.48) 58%, rgba(7, 3, 5, 0.04) 100%),
      linear-gradient(90deg, rgba(7, 3, 5, 0.28), rgba(7, 3, 5, 0.04));
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .audience-grid,
  .feature-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 26px;
  }

  .quote {
    min-height: 0;
  }

  .seo-section {
    background-attachment: scroll;
  }
}
