:root {
  --ink: #4A3A32;
  --ink-soft: #6f5b50;
  --paper: #F5EBDD;
  --paper-deep: #efe0cd;
  --teal: #E77A45;
  --teal-bright: #FFC38A;
  --gold: #B9A7E6;
  --line: rgba(74, 58, 50, 0.14);
  --shadow: 0 24px 80px rgba(74, 58, 50, 0.14);
  --bg: #F5EBDD;
  --text: #4A3A32;
  --muted: #6f5b50;
  --border: rgba(74, 58, 50, 0.16);
  --surface: rgba(255, 250, 243, 0.74);
  --primary: #4A3A32;
  --primary-contrast: #ffffff;
  --focus: #9c5638;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  color: var(--primary-contrast);
  background: var(--primary);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(43, 177, 183, 0.16), transparent 28%),
    #071128;
  color: #f9f7f1;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro__line {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(18px);
}

.intro__line.is-visible {
  animation: intro-line 1.7s ease forwards;
}

.intro__mist {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 70% 55%, rgba(43, 177, 183, 0.12), transparent 20%);
  filter: blur(28px);
  animation: drift 10s ease-in-out infinite alternate;
}

.intro__d20 {
  position: absolute;
  width: min(58vw, 480px);
  aspect-ratio: 1;
  opacity: 0.92;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 56px);
  color: #f7f6f1;
  mix-blend-mode: normal;
  transition: color 220ms ease, background 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 246, 241, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(8, 21, 50, 0.08);
}

.brand {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f7f6f1;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 12, 29, 0.92) 0%, rgba(5, 12, 29, 0.78) 42%, rgba(5, 12, 29, 0.24) 74%, rgba(5, 12, 29, 0.44) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 88px);
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero__lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(247, 246, 241, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  background: var(--teal);
  color: #fff;
}

.button--ghost {
  border-color: rgba(247, 246, 241, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 32px;
  z-index: 1;
  color: rgba(247, 246, 241, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bob 1.8s ease-in-out infinite;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f1eee5;
}

.signal-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
}

.signal-strip span:last-child {
  border-right: 0;
}

.section {
  padding: 92px clamp(20px, 6vw, 88px);
}

.section__intro {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
}

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

.story-card,
.offer-card {
  position: relative;
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.story-card:hover,
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 124, 130, 0.32);
  box-shadow: 0 18px 50px rgba(8, 21, 50, 0.1);
}

.story-card:focus-visible,
.offer-card:focus-visible,
.character-sheet:focus-visible {
  outline: 3px solid rgba(43, 177, 183, 0.55);
  outline-offset: 4px;
}

.story-card h3,
.offer-card h3 {
  margin-bottom: 16px;
  font-size: 1.16rem;
}

.story-card p,
.offer-card p,
.newsletter p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.story-card__more,
.character-sheet__more,
.offer-card__more {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
}

.section--sheet {
  padding-top: 0;
}

.character-sheet {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(185, 154, 95, 0.34);
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.08), transparent 30%),
    #0a1734;
  color: #f7f6f1;
  box-shadow: var(--shadow);
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.character-sheet::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(185, 154, 95, 0.18);
  pointer-events: none;
}

.character-sheet__header {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.character-sheet__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.character-sheet__grid div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.character-sheet__grid span {
  display: block;
  margin-bottom: 14px;
  color: rgba(247, 246, 241, 0.62);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.character-sheet__grid strong {
  font-size: 1.08rem;
  line-height: 1.4;
}

.character-sheet__more {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--teal-bright);
}

.section--offers {
  background: #f1eee5;
}

.offer-card {
  min-height: 210px;
  background: rgba(247, 246, 241, 0.72);
}

.section--newsletter {
  padding-top: 84px;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(7, 14, 28, 0.94) 0%, rgba(7, 14, 28, 0.82) 44%, rgba(7, 14, 28, 0.52) 100%),
    image-set(
      url("../img/newsletter-study.avif") type("image/avif"),
      url("../img/newsletter-study.webp") type("image/webp"),
      url("../img/newsletter-study.png") type("image/png")
    ) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.newsletter__copy h2 {
  color: #fffdf8;
  margin-bottom: 16px;
}

.newsletter__copy .eyebrow {
  color: rgba(255, 253, 248, 0.7);
}

.newsletter__copy p {
  color: rgba(255, 253, 248, 0.84);
}

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

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

.newsletter__form {
  display: grid;
  gap: 14px;
}

.newsletter__signals {
  display: grid;
  gap: 14px;
}

.newsletter__signals-title {
  margin: 0 0 6px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter__signals div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.14), transparent 30%),
    rgba(8, 17, 34, 0.72);
  backdrop-filter: blur(8px);
}

.newsletter__signals span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter__signals strong {
  color: #fffdf8;
  font-size: 1rem;
  line-height: 1.4;
}

.newsletter__form label {
  display: grid;
  gap: 8px;
}

.newsletter__form span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.newsletter__form input,
.newsletter__form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #fbfaf7;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
}

.newsletter__hint {
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px) 40px;
  color: var(--ink-soft);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 88px) 72px;
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.1), transparent 28%),
    var(--paper);
}

.newsletter-page {
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 88px) 72px;
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.1), transparent 28%),
    var(--paper);
}

.newsletter-page__intro {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.newsletter-page__intro h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 18px;
}

.newsletter-page__intro p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.newsletter-page__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.newsletter-page__copy,
.newsletter-page__form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.newsletter-page__copy h2 {
  margin-bottom: 18px;
}

.newsletter-page__copy ul {
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.newsletter-page__copy p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.newsletter-page__form {
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.08), transparent 28%),
    #fffdf8;
}

.newsletter-page__form .hs-form-frame {
  min-height: 560px;
}

.newsletter-page__form iframe {
  width: 100% !important;
  min-height: 560px !important;
}

.legal-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-shell h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.legal-shell h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.legal-shell p,
.legal-shell li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-shell ul {
  padding-left: 20px;
}

.legal-meta {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.legal-back {
  display: inline-flex;
  margin-top: 30px;
  color: var(--teal);
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 29, 0.72);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(82vh, 860px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(185, 154, 95, 0.35);
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.08), transparent 28%),
    #fffdf8;
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.modal__panel h2 {
  margin-bottom: 18px;
  padding-right: 42px;
}

.modal__content {
  color: var(--ink-soft);
  line-height: 1.75;
}

.modal__content p {
  margin: 0 0 18px;
}

.modal__content h3 {
  margin: 26px 0 12px;
  color: var(--ink);
  font-size: 1.08rem;
}

.modal__content ul {
  margin: 0;
  padding-left: 20px;
}

.modal__content li + li {
  margin-top: 10px;
}

.modal__callout {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(15, 124, 130, 0.22);
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.08), transparent 32%),
    rgba(247, 246, 241, 0.76);
}

.modal__callout h3 {
  margin-top: 0;
}

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

.campaign-feature {
  margin: 28px 0 22px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid rgba(231, 122, 69, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(185, 167, 230, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(255, 195, 138, 0.2));
}

.campaign-feature__kicker {
  margin: 0 0 8px;
  color: #a94f31;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.campaign-feature h3 {
  margin-top: 0;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
}

.campaign-feature p {
  max-width: 62ch;
}

.campaign-feature .modal__actions {
  margin-top: 20px;
}

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

.modal__actions .button {
  min-width: 0;
}

.modal__actions .button--ghost {
  border-color: rgba(8, 21, 50, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

body.modal-open {
  overflow: hidden;
}

@keyframes intro-line {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  18%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1%, 0) scale(1.08);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes bob {
  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5, 12, 29, 0.44) 0%, rgba(5, 12, 29, 0.84) 52%, rgba(5, 12, 29, 0.94) 100%);
  }

  .hero__content {
    align-self: end;
    margin: 0 20px 72px;
    padding-top: 120px;
  }

  .signal-strip,
  .story-grid,
  .offer-grid,
  .character-sheet__grid,
  .newsletter,
  .newsletter-page__grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    gap: 24px;
  }

  .newsletter__signals-title {
    margin-top: 8px;
  }

  .signal-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip span:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .site-footer {
    flex-direction: column;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal__panel {
    width: 100%;
    max-height: 88vh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intro__mist,
  .intro__d20,
  .hero__image,
  .hero__scroll {
    animation: none;
  }

  .intro__line.is-visible {
    animation-duration: 0.1s;
  }

  .button {
    transition: none;
  }
}

.hero {
  min-height: min(92vh, 920px);
  padding: 6.5rem 0 4.5rem;
  background:
    #071128
    image-set(
      url("../img/hero-desk.avif") type("image/avif"),
      url("../img/hero-desk.webp") type("image/webp"),
      url("../img/hero-desk.png") type("image/png")
    ) center / cover no-repeat;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.hero__content {
  width: auto;
  max-width: 680px;
  margin-left: 0;
  padding-top: 0;
}

.hero__lead {
  max-width: 62ch;
  color: rgba(247, 246, 241, 0.9);
  font-size: 1.125rem;
}

.hero__card {
  margin-top: 0.4rem;
  color: #fffdf8;
  background:
    radial-gradient(circle at top right, rgba(43, 177, 183, 0.14), transparent 36%),
    rgba(8, 17, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 1.35rem;
}

.hero__card h2 {
  color: #fffdf8;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.hero__card p,
.contact-list {
  color: rgba(255, 253, 248, 0.82);
}

.contact-list a,
.hero__card a {
  color: #8ee5ea;
  font-weight: 700;
}

.hero__actions,
.cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--primary-contrast);
  background: var(--teal);
}

.btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 248, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.trust-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--teal-bright);
}

.site-footer {
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    min-height: 760px;
    padding-top: 7.5rem;
  }

  .hero__grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero__card {
    margin-top: 0;
  }

  .btn {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }
}

/* Calm brand pass: keep the fantasy warmth, remove funnel-heavy visual weight. */
.hero {
  min-height: min(92vh, 880px);
  padding: clamp(8rem, 13vh, 12rem) 0 7.25rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(74, 58, 50, 0.82) 0%, rgba(74, 58, 50, 0.58) 48%, rgba(74, 58, 50, 0.22) 100%),
    image-set(
      url("../img/hero-desk.avif") type("image/avif"),
      url("../img/hero-desk.webp") type("image/webp"),
      url("../img/hero-desk.png") type("image/png")
    ) center / cover no-repeat;
}

.hero__veil {
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 195, 138, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(74, 58, 50, 0.12), rgba(74, 58, 50, 0.28));
}

.hero__grid {
  grid-template-columns: minmax(0, 760px);
  align-items: end;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  max-width: 12ch;
  color: #fffaf3;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1;
}

.hero__lead {
  max-width: 64ch;
  color: rgba(255, 250, 243, 0.9);
}

.hero__trust {
  margin: 1.2rem 0 0;
  color: rgba(255, 250, 243, 0.82);
  font-weight: 600;
}

.hero__appointment-note {
  max-width: 54ch;
  margin: 0.9rem 0 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero__actions {
  margin-top: 2rem;
}

.btn--primary {
  background: linear-gradient(135deg, #E77A45, #FFC38A);
  color: #3b2e28;
  box-shadow: 0 16px 36px rgba(231, 122, 69, 0.24);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #dd6f3d, #ffcfa0);
}

.hero__topics {
  position: absolute;
  right: clamp(1rem, 6vw, 5.5rem);
  bottom: 2rem;
  left: clamp(1rem, 6vw, 5.5rem);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__topics li {
  min-height: 34px;
  padding: 0.38rem 0.8rem;
  border: 1px solid rgba(255, 250, 243, 0.26);
  border-radius: 999px;
  color: rgba(255, 250, 243, 0.86);
  background: rgba(74, 58, 50, 0.32);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 650;
}

.services,
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.services {
  background:
    radial-gradient(circle at 88% 10%, rgba(185, 167, 230, 0.2), transparent 28%),
    var(--paper);
}

.services .container,
.faq .container {
  max-width: 1120px;
}

.services h2,
.faq h2,
.section__intro h2 {
  color: var(--ink);
}

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

.card,
.offer-card {
  border: 1px solid rgba(74, 58, 50, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.82), rgba(255, 250, 243, 0.58));
  box-shadow: none;
}

.card {
  min-height: 220px;
}

.card h3,
.offer-card h3 {
  color: var(--ink);
}

.card p,
.offer-card p {
  color: var(--ink-soft);
}

.section--offers {
  background:
    linear-gradient(180deg, #fff7ed 0%, var(--paper) 100%);
}

.offer-grid {
  gap: 1rem;
}

.offer-card {
  min-height: 235px;
  cursor: default;
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 122, 69, 0.26);
  box-shadow: 0 18px 46px rgba(74, 58, 50, 0.08);
}

.faq {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 195, 138, 0.24), transparent 24%),
    #fffaf3;
}

.clarity-compass {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--paper);
}

.clarity-compass__inner {
  border: 1px solid rgba(74, 58, 50, 0.12);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 92% 16%, rgba(185, 167, 230, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(255, 195, 138, 0.24));
}

.clarity-compass__content {
  max-width: 720px;
}

.clarity-compass h2 {
  margin-bottom: 1rem;
  color: var(--ink);
}

.clarity-compass p {
  color: var(--ink);
}

.clarity-compass__button {
  margin-top: 1.25rem;
}

.clarity-compass__button.btn--secondary {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.54);
  border-color: rgba(169, 79, 49, 0.32);
  box-shadow: none;
}

.clarity-compass__button.btn--secondary:hover {
  background: rgba(255, 250, 243, 0.76);
  border-color: rgba(169, 79, 49, 0.48);
}

.clarity-compass__note {
  max-width: 58ch;
  margin-top: 0.85rem;
  font-size: 0.92rem;
  opacity: 0.78;
}

.faq details {
  margin-top: 0.8rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(74, 58, 50, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.faq details:first-of-type {
  border-top: 1px solid rgba(74, 58, 50, 0.12);
}

.faq summary {
  color: var(--ink);
  font-size: 1.02rem;
}

.faq p {
  max-width: 76ch;
  margin-bottom: 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(74, 58, 50, 0.1);
  background: #f3e6d5;
  font-size: 0.9rem;
}

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

.site-footer a {
  color: rgba(74, 58, 50, 0.72);
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
    padding: 7rem 0 6.5rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero__topics {
    bottom: 1.25rem;
  }

  .btn {
    width: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 700px;
    padding-bottom: 8.5rem;
  }

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

  .hero__topics li {
    font-size: 0.78rem;
  }

  .cards,
  .story-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .offer-card,
  .story-card {
    min-height: auto;
  }

  .clarity-compass__inner {
    border-radius: 22px;
    padding: 1.5rem;
  }

  .clarity-compass__button {
    width: 100%;
  }
}

/* Warm contrast refinement after the brand shift. */
.intro {
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 195, 138, 0.2), transparent 28%),
    radial-gradient(circle at 36% 38%, rgba(185, 167, 230, 0.2), transparent 32%),
    linear-gradient(145deg, #4A3A32 0%, #2f251f 58%, #211915 100%);
  color: #fffaf3;
}

.intro__mist {
  background:
    radial-gradient(circle at 34% 40%, rgba(255, 250, 243, 0.1), transparent 28%),
    radial-gradient(circle at 70% 55%, rgba(231, 122, 69, 0.16), transparent 22%),
    radial-gradient(circle at 52% 42%, rgba(185, 167, 230, 0.13), transparent 28%);
}

.intro__line {
  width: min(92vw, 760px);
  text-align: center;
  line-height: 1.08;
  text-wrap: balance;
  color: #fffaf3;
  text-shadow: 0 10px 34px rgba(33, 25, 21, 0.7);
}

.intro__d20 {
  opacity: 0.74;
}

.eyebrow {
  color: #a94f31;
}

.hero .eyebrow,
.intro .eyebrow {
  color: #ffd0a2;
}

.story-card__more,
.offer-card__more,
.legal-back,
.newsletter__signals span {
  color: #a94f31;
}

.story-card__more,
.offer-card__more {
  font-weight: 800;
}

.character-sheet {
  border-color: rgba(231, 122, 69, 0.28);
  background:
    radial-gradient(circle at top right, rgba(185, 167, 230, 0.12), transparent 30%),
    linear-gradient(145deg, #4A3A32 0%, #30251f 100%);
}

.character-sheet::before {
  border-color: rgba(255, 195, 138, 0.18);
}

.character-sheet__more {
  color: #ffc38a;
}

.story-card:focus-visible,
.offer-card:focus-visible,
.character-sheet:focus-visible {
  outline-color: rgba(169, 79, 49, 0.72);
}

@media (max-width: 620px) {
  .intro__line {
    width: min(90vw, 420px);
    font-size: clamp(1.35rem, 6vw, 2rem);
    letter-spacing: 0.02em;
  }

  .intro__d20 {
    width: min(78vw, 360px);
  }
}

/* Final desktop normalization: one clean rhythm across wide screens. */
#services,
#haltung,
#angebote,
#faq,
.clarity-compass {
  scroll-margin-top: 96px;
}

.services {
  padding:
    clamp(4rem, 5vw, 5.5rem)
    clamp(20px, 6vw, 88px)
    clamp(3.25rem, 4.5vw, 4.75rem);
}

.services .container {
  width: 100%;
  margin-inline: 0;
  display: block;
}

.services .eyebrow,
.services h2 {
  grid-column: auto;
}

.services h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 3.1vw, 3.5rem);
  line-height: 1.08;
}

.services .cards {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
}

.services .card {
  position: relative;
  min-height: 190px;
  padding: 1.25rem 1.2rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(74, 58, 50, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.76), rgba(255, 250, 243, 0.42));
  box-shadow: 0 14px 38px rgba(74, 58, 50, 0.055);
}

.services .card::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 1.25rem;
  width: 2.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #E77A45, rgba(185, 167, 230, 0.72));
}

.services .card h3 {
  margin: 0 0 0.75rem;
  padding-top: 0.85rem;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.28;
}

.services .card p {
  margin: 0;
  color: #6f5b50;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .services .container {
    width: 100%;
  }

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

  .services .card {
    min-height: 168px;
  }
}

@media (max-width: 620px) {
  .services {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .services .container {
    width: 100%;
  }

  .services h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services .cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

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

  #services,
  #haltung,
  #angebote,
  #faq,
  .clarity-compass {
    scroll-margin-top: 76px;
  }
}

/* Align orientation with the following story section. */
.services {
  padding: 92px clamp(20px, 6vw, 88px);
}

.services .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.services h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
}

.services .cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.services .card {
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.services .card::before {
  display: none;
}

.services .card h3 {
  margin: 0 0 16px;
  padding-top: 0;
  font-size: 1.16rem;
  line-height: 1.3;
}

.services .card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .services .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .services {
    padding: 68px 20px;
  }

  .services .cards {
    grid-template-columns: 1fr;
  }

  .services .card {
    min-height: auto;
  }
}

/* Dungeon Master subpage */
.dnd-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(185, 167, 230, 0.22), transparent 28%),
    var(--paper);
  color: var(--ink);
}

.site-header--subpage {
  color: var(--ink);
}

.subpage-hero {
  padding: clamp(8rem, 13vw, 12rem) clamp(20px, 6vw, 88px) clamp(4.5rem, 8vw, 7rem);
}

.subpage-hero--dnd {
  background:
    linear-gradient(135deg, rgba(245, 235, 221, 0.96), rgba(255, 195, 138, 0.28)),
    radial-gradient(circle at 88% 18%, rgba(185, 167, 230, 0.34), transparent 30%);
}

.subpage-hero__inner,
.dnd-section__intro,
.dnd-final__inner {
  max-width: 940px;
}

.subpage-hero h1,
.dnd-section h2 {
  font-family: "Cinzel", Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.04;
}

.subpage-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.8vw, 6.3rem);
}

.subpage-hero__lead,
.dnd-section__intro p,
.dnd-campaign p,
.dnd-final p {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.78;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.subpage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.subpage-tags li {
  padding: 0.46rem 0.78rem;
  border: 1px solid rgba(74, 58, 50, 0.15);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.7);
  font-size: 0.86rem;
  font-weight: 700;
}

.dnd-section {
  padding: clamp(4.5rem, 7vw, 7rem) clamp(20px, 6vw, 88px);
}

.dnd-section--tint {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 195, 138, 0.2), transparent 28%),
    rgba(255, 250, 243, 0.42);
}

.dnd-section h2 {
  max-width: 850px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.dnd-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.dnd-card,
.dnd-feature-card {
  border: 1px solid rgba(74, 58, 50, 0.13);
  background: rgba(255, 250, 243, 0.72);
}

.dnd-card {
  min-height: 220px;
  padding: 1.45rem;
}

.dnd-feature-card {
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.dnd-card h3,
.dnd-feature-card h3 {
  margin-bottom: 0.8rem;
  color: var(--ink);
  line-height: 1.3;
}

.dnd-card p,
.dnd-feature-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.dnd-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.dnd-campaign,
.dnd-final__inner {
  border: 1px solid rgba(74, 58, 50, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.78), rgba(245, 235, 221, 0.52)),
    radial-gradient(circle at 92% 12%, rgba(185, 167, 230, 0.22), transparent 32%);
}

.dnd-campaign {
  padding: clamp(2rem, 4vw, 4rem);
}

.dnd-final {
  padding-top: clamp(3.5rem, 6vw, 5rem);
}

.dnd-final__inner {
  padding: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 1100px) {
  .dnd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .subpage-hero,
  .dnd-section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .subpage-hero h1 {
    max-width: 100%;
  }

  .dnd-grid,
  .dnd-columns {
    grid-template-columns: 1fr;
  }

  .dnd-card {
    min-height: auto;
  }
}
