:root {
  --black: #090909;
  --charcoal: #111111;
  --ink: #171314;
  --wine: #5b0016;
  --red: #a30025;
  --bright-red: #d90b3a;
  --nude: #d4b7a8;
  --sand: #e7ddd3;
  --paper: #f3eee8;
  --white: #fffdf9;
  --grey: #8c8582;
  --dark-line: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family:
    "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

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

.wide-shell {
  width: min(1220px, calc(100% - 56px));
  margin-inline: auto;
}

.adult-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #000;
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.adult-bar .wide-shell {
  display: flex;
  min-height: 29px;
  align-items: center;
  justify-content: space-between;
}

.adult-bar p {
  margin: 0;
}

.noir-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--dark-line);
  background: rgba(9, 9, 9, 0.96);
}

.noir-nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 45px;
}

.noir-logo {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  line-height: 1;
}

.noir-logo strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.3em;
}

.noir-logo span {
  margin-top: 7px;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7px;
  letter-spacing: 0.24em;
}

.noir-nav nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.noir-nav nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
}

.noir-nav nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--bright-red);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-entry {
  display: inline-flex;
  min-width: 125px;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding-inline: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.header-entry:hover,
.header-entry:focus-visible {
  border-color: var(--bright-red);
  background: var(--red);
}

.top-updates {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--dark-line);
  background:
    linear-gradient(90deg, rgba(91, 0, 22, 0.22), transparent 34%),
    #050505;
  padding-top: 22px;
}

.top-updates-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
}

.update-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.update-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bright-red);
  box-shadow: 0 0 0 5px rgba(217, 11, 58, 0.1);
  animation: update-pulse 1.8s ease-in-out infinite;
}

@keyframes update-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(217, 11, 58, 0.08);
    opacity: 0.7;
  }

  50% {
    box-shadow: 0 0 0 8px rgba(217, 11, 58, 0.16);
    opacity: 1;
  }
}

.top-updates-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.top-updates-title h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.top-updates-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.top-updates-title p span {
  margin-inline: 6px;
  color: var(--bright-red);
}

.top-updates-all {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.top-updates-all span {
  margin-left: 8px;
  color: var(--bright-red);
}

.top-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
}

.top-update-card {
  min-width: 0;
  border-left: 1px solid var(--dark-line);
}

.top-update-card:first-child {
  border-left: 0;
}

.top-update-card a {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #050505;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.top-update-card a::before {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--bright-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.top-update-card.is-latest a,
.top-update-card a:hover,
.top-update-card a:focus-visible {
  background: rgba(91, 0, 22, 0.25);
}

.top-update-card.is-latest a::before,
.top-update-card a:hover::before,
.top-update-card a:focus-visible::before {
  transform: scaleX(1);
}

.update-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(circle at 72% 30%, rgba(217, 11, 58, 0.24), transparent 28%),
    linear-gradient(135deg, #160007, #050505 70%);
}

.update-card-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(77, 0, 19, 0.22), transparent 55%);
  content: "";
  pointer-events: none;
}

.update-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.75) contrast(1.12);
  transition:
    filter 300ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.top-update-card a:hover .update-card-media img,
.top-update-card a:focus-visible .update-card-media img {
  filter: saturate(0.92) brightness(0.86) contrast(1.08);
  transform: scale(1.035);
}

.update-card-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
}

.update-card-placeholder::before,
.update-card-placeholder::after {
  position: absolute;
  border: 1px solid rgba(217, 11, 58, 0.2);
  border-radius: 50%;
  content: "";
}

.update-card-placeholder::before {
  width: 180px;
  height: 180px;
  top: -82px;
  right: -30px;
}

.update-card-placeholder::after {
  width: 110px;
  height: 110px;
  right: 28px;
  bottom: -72px;
}

.update-card-placeholder i,
.update-card-placeholder small {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  letter-spacing: 0.3em;
}

.update-card-placeholder i {
  color: rgba(255, 255, 255, 0.38);
  font-size: 17px;
}

.update-card-placeholder small {
  margin-top: 7px;
  color: var(--bright-red);
  font-size: 7px;
}

.update-number {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 17px;
  min-width: 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  line-height: 25px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.update-card-body {
  display: grid;
  min-height: 146px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 15px;
  padding: 18px 22px 22px;
}

.update-card-copy {
  display: block;
  min-width: 0;
}

.update-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.update-card-meta b {
  background: var(--bright-red);
  color: #fff;
  padding: 3px 6px;
  font-size: 7px;
  font-weight: 400;
}

.update-card-meta i {
  color: var(--bright-red);
  font-style: normal;
}

.top-update-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 11px 0 7px;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.update-card-summary {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.update-arrow {
  align-self: start;
  margin-top: -2px;
  color: var(--bright-red);
  font-size: 16px;
}

.top-updates-empty {
  display: flex;
  min-height: 118px;
  grid-column: 1 / -1;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.5);
  padding: 28px;
}

.top-updates-empty > span {
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
}

.top-updates-empty p {
  margin: 0;
  font-size: 11px;
}

.dark-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.98) 0 48%, rgba(18, 0, 6, 0.85) 100%),
    var(--black);
}

.dark-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent);
}

.hero-word {
  position: absolute;
  top: 52%;
  left: 49%;
  color: rgba(255, 255, 255, 0.018);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 190px;
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.red-orbit {
  position: absolute;
  border: 1px solid rgba(217, 11, 58, 0.16);
  border-radius: 50%;
}

.orbit-one {
  top: 90px;
  right: -130px;
  width: 590px;
  height: 590px;
}

.orbit-two {
  top: 198px;
  right: -22px;
  width: 370px;
  height: 370px;
}

.dark-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 674px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
  padding-block: 73px;
}

.red-kicker {
  margin: 0 0 24px;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.26em;
}

.dark-hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(45px, 4.2vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.48;
}

.dark-hero h1 em {
  color: #efbdc8;
  font-style: normal;
}

.dark-hero-lead {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  line-height: 2;
}

.dark-hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 38px;
}

.red-button {
  display: inline-flex;
  min-width: 235px;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  background: var(--red);
  box-shadow: 0 20px 50px rgba(163, 0, 37, 0.2);
  padding-inline: 24px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

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

.red-button span {
  font-size: 18px;
}

.ghost-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.hero-footnote {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
}

.sensual-visual {
  position: relative;
  min-height: 500px;
}

.satin {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.satin-one {
  top: 28px;
  right: 5%;
  width: 400px;
  height: 400px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 131, 156, 0.62), transparent 16%),
    radial-gradient(circle at 64% 65%, #25000b, transparent 52%),
    linear-gradient(145deg, #8c0021, #1a0007 66%);
  box-shadow:
    inset -38px -26px 90px #000,
    inset 24px 18px 70px rgba(255, 73, 115, 0.24),
    0 0 130px rgba(163, 0, 37, 0.28);
  transform: rotate(-14deg);
}

.satin-two {
  right: 33%;
  bottom: 1px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle at 40% 35%, #d4b7a8, #27000a 72%);
  box-shadow: inset -25px -20px 55px #080000;
  opacity: 0.7;
}

.visual-frame {
  position: absolute;
  top: 77px;
  right: 0;
  bottom: 60px;
  left: 38px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 27px;
}

.visual-frame > p,
.visual-frame > small {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.visual-frame > small {
  align-self: flex-end;
  text-align: right;
}

.visual-center {
  display: flex;
  flex-direction: column;
  padding-left: 25px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.visual-center span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 19px;
}

.visual-center strong {
  margin-top: 5px;
  color: white;
  font-size: 38px;
  font-weight: 400;
}

.desire-ticker {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 38px;
  overflow: hidden;
  border-top: 1px solid var(--dark-line);
  background: rgba(0, 0, 0, 0.75);
  color: rgba(255, 255, 255, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.desire-ticker i {
  color: var(--bright-red);
  font-size: 8px;
  font-style: normal;
}

.intro-section {
  background: var(--paper);
  color: var(--ink);
  padding-block: 126px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 48px 0.9fr 1.1fr;
  align-items: start;
  gap: 74px;
}

.vertical-label {
  color: #a89790;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.intro-title h2,
.section-topline h2,
.recruit-title h2,
.profile-dark-copy h2,
.journal-heading h2,
.faq-dark h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(35px, 3.5vw, 53px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.intro-copy {
  padding-top: 34px;
}

.intro-copy p {
  margin: 0;
  color: #6f6662;
  font-size: 13px;
  line-height: 2.1;
}

.intro-copy .large-serif {
  margin-bottom: 26px;
  color: #2e2523;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
}

.desire-section {
  background: #e5dad0;
  color: var(--ink);
  padding-block: 112px;
}

.section-topline {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-topline > p {
  margin: 0 0 7px;
  color: #736966;
  font-size: 12px;
  line-height: 1.9;
}

.desire-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.desire-cards article {
  min-height: 320px;
  border-top: 1px solid #2a2020;
  border-right: 1px solid rgba(23, 19, 20, 0.16);
  padding: 29px 27px;
}

.desire-cards article:first-child {
  border-left: 1px solid rgba(23, 19, 20, 0.16);
}

.desire-cards article > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.desire-cards h3 {
  margin: 76px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
}

.desire-cards p {
  margin: 19px 0 0;
  color: #736966;
  font-size: 11px;
  line-height: 1.9;
}

.recruit-detail {
  background: var(--white);
  color: var(--ink);
  padding-block: 120px;
}

.recruit-detail-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 100px;
}

.recruit-title h2 {
  display: flex;
  flex-direction: column;
}

.recruit-title h2 span {
  margin-top: 12px;
  color: rgba(23, 19, 20, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  letter-spacing: 0.08em;
}

.recruit-table {
  margin: 0;
  border-top: 1px solid #342929;
}

.recruit-table > div {
  display: grid;
  min-height: 73px;
  align-items: center;
  border-bottom: 1px solid #d7ccc5;
  grid-template-columns: 155px 1fr;
}

.recruit-table dt {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

.recruit-table dd {
  margin: 0;
  color: #554b48;
  font-size: 12px;
}

.profile-dark {
  position: relative;
  overflow: hidden;
  background: #0d0b0c;
  padding-block: 125px;
}

.profile-dark::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  background: linear-gradient(145deg, rgba(163, 0, 37, 0.18), transparent 60%);
  content: "";
}

.profile-dark-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  align-items: center;
  gap: 100px;
}

.profile-art {
  position: relative;
  display: flex;
  min-height: 565px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 62% 28%, rgba(222, 117, 141, 0.38), transparent 12%),
    linear-gradient(145deg, #6b0019, #160007 63%, #050505);
  padding: 25px;
}

.profile-art::before {
  position: absolute;
  top: 60px;
  right: -90px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.profile-letter {
  position: absolute;
  top: 48%;
  left: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 170px;
  font-style: italic;
  transform: translate(-50%, -50%);
}

.profile-art p {
  position: relative;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.24em;
}

.profile-dark-copy {
  padding-right: 45px;
}

.profile-dark-copy > p:not(.red-kicker) {
  max-width: 600px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 2;
}

.profile-facts {
  display: grid;
  margin-top: 35px;
  border-top: 1px solid var(--dark-line);
  grid-template-columns: 1fr 1fr;
}

.profile-facts > div {
  display: flex;
  min-height: 81px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  padding-inline: 18px;
}

.profile-facts > div:nth-child(even) {
  border-right: 0;
}

.profile-facts span {
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.19em;
}

.profile-facts strong {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
}

.profile-more {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin-top: 31px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 7px;
  font-size: 11px;
}

.profile-actions,
.profile-detail-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 31px;
}

.profile-actions .profile-more,
.profile-detail-hero-actions .profile-more {
  margin-top: 0;
}

.profile-page-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: var(--red);
  color: #fff;
  padding: 0 19px;
  font-size: 11px;
  font-weight: 600;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.profile-page-link:hover,
.profile-page-link:focus-visible {
  background: var(--bright-red);
  transform: translateY(-2px);
}

.rules-section {
  background: var(--paper);
  color: var(--ink);
  padding-block: 113px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #cfc2bb;
}

.rules-grid article {
  min-height: 245px;
  background: var(--paper);
  padding: 30px 27px;
}

.rules-grid article span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.rules-grid h3 {
  margin: 52px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
}

.rules-grid p {
  margin: 17px 0 0;
  color: #746a66;
  font-size: 11px;
  line-height: 1.8;
}

.journal-home {
  background: #111;
  padding-block: 115px 125px;
}

.journal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 55px;
}

.journal-heading > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.journal-featured {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
}

.journal-featured article {
  border: 1px solid var(--dark-line);
  background: #0b0b0b;
}

.journal-featured article > a {
  display: block;
}

.post-visual {
  position: relative;
  display: flex;
  min-height: 230px;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
}

.featured-post .post-visual {
  min-height: 350px;
}

.post-visual::after,
.blog-card-art::after,
.article-art::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  content: "";
}

.post-visual::after {
  right: -52px;
  bottom: -65px;
  width: 220px;
  height: 220px;
}

.post-visual-1,
.blog-art-1 {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 166, 183, 0.45), transparent 12%),
    linear-gradient(145deg, #85001f, #150006 70%);
}

.post-visual-2,
.blog-art-2 {
  background:
    radial-gradient(circle at 70% 30%, rgba(231, 180, 158, 0.3), transparent 16%),
    linear-gradient(145deg, #2d2320, #090909 70%);
}

.post-visual-3,
.blog-art-3 {
  background:
    radial-gradient(circle at 36% 70%, rgba(206, 28, 72, 0.28), transparent 20%),
    linear-gradient(145deg, #26000b, #020202 70%);
}

.post-visual span,
.blog-card-art span,
.article-art span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.67);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.22em;
}

.post-visual strong,
.blog-card-art strong,
.article-art strong {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
}

.post-copy {
  min-height: 190px;
  padding: 25px;
}

.post-copy > p,
.blog-card-copy > p {
  margin: 0;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.post-copy h3 {
  margin: 22px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.featured-post .post-copy h3 {
  font-size: 22px;
}

.read-more {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.faq-dark {
  background: #050505;
  padding-block: 115px;
}

.faq-dark-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-dark-list {
  border-top: 1px solid var(--dark-line);
}

.faq-dark-list details {
  border-bottom: 1px solid var(--dark-line);
}

.faq-dark-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  list-style: none;
}

.faq-dark-list summary::-webkit-details-marker {
  display: none;
}

.faq-dark-list summary span {
  color: var(--bright-red);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-dark-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-dark-list details > p,
.faq-dark-list .faq-answer {
  margin: -4px 50px 0 0;
  padding-bottom: 27px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.9;
}

.faq-dark-list .faq-answer > :first-child {
  margin-top: 0;
}

.faq-dark-list .faq-answer > :last-child {
  margin-bottom: 0;
}

.faq-dark-list .faq-answer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-red {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, #8c0021 0 45%, #31000c 100%),
    var(--wine);
  padding-block: 110px;
}

.contact-word {
  position: absolute;
  right: -32px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 160px;
  letter-spacing: 0.06em;
  pointer-events: none;
}

.contact-red-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.contact-copy > p {
  margin: 0 0 23px;
  color: #ffafc1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.contact-copy > span {
  display: block;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.9;
}

.dark-form {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.21);
  background: rgba(5, 5, 5, 0.84);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  padding: 39px;
  gap: 22px;
}

.dark-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dark-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
}

.dark-form input,
.dark-form select,
.dark-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  padding: 13px;
  font-size: 12px;
}

.dark-form input,
.dark-form select {
  min-height: 48px;
}

.dark-form select option {
  color: #111;
}

.dark-form textarea {
  resize: vertical;
}

.dark-form input:focus,
.dark-form select:focus,
.dark-form textarea:focus {
  border-color: #ff6a8d;
}

.dark-form .adult-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 9px;
}

.dark-form .adult-check input {
  width: 14px;
  height: 14px;
  min-height: 0;
  margin: 0;
}

.dark-form button {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: var(--bright-red);
  color: white;
  cursor: pointer;
  padding-inline: 23px;
  font-size: 12px;
  font-weight: 700;
}

.dark-form button span {
  font-size: 18px;
}

.dark-form > small {
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
}

.noir-footer {
  background: #030303;
  padding-top: 70px;
}

.noir-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.65fr;
  gap: 75px;
  padding-bottom: 60px;
}

.footer-logo {
  width: fit-content;
}

.noir-footer-grid > div:first-child > p {
  max-width: 380px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  line-height: 1.9;
}

.noir-footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 13px;
}

.noir-footer-grid > div:not(:first-child) strong {
  margin-bottom: 10px;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.noir-footer-grid > div:not(:first-child) a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.copyright {
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.copyright p {
  margin: 0;
}

/* Blog listing */
.blog-page,
.article-page {
  background: var(--paper);
  color: var(--ink);
}

.blog-page .noir-header,
.article-page .noir-header {
  background: #080808;
}

.blog-hero {
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.95), rgba(73, 0, 18, 0.74)),
    #0a0a0a;
  color: white;
  padding-block: 105px 95px;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 80px;
}

.blog-hero-grid > div > p {
  margin: 0 0 18px;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.25em;
}

.blog-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.blog-hero-grid > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 2;
}

.blog-list-section {
  padding-block: 70px 120px;
}

.blog-filter {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #cabdb6;
  padding-bottom: 18px;
  color: #867b76;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.blog-filter span:first-child {
  color: var(--red);
}

.blog-list-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 22px;
}

.blog-list-grid article {
  border: 1px solid #d8ccc6;
  background: #fffaf5;
}

.blog-card-art {
  position: relative;
  display: flex;
  min-height: 240px;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  padding: 23px;
}

.blog-card-art::after {
  right: -65px;
  bottom: -70px;
  width: 230px;
  height: 230px;
}

.blog-card-copy {
  min-height: 260px;
  padding: 27px;
}

.blog-card-copy h2 {
  margin: 22px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}

.blog-card-copy > span {
  display: block;
  margin-top: 17px;
  color: #756a65;
  font-size: 10px;
  line-height: 1.8;
}

.blog-card-copy > small {
  display: block;
  margin-top: 32px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

/* Article */
.article-header {
  background: #0b0b0b;
  color: white;
  padding-block: 85px;
}

.article-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 95px;
}

.article-meta {
  margin: 0 0 24px;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.article-header h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.article-excerpt {
  max-width: 700px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 2;
}

.article-art {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  padding: 25px;
}

.article-art::after {
  right: -70px;
  bottom: -65px;
  width: 250px;
  height: 250px;
}

.article-body-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 85px;
  padding-block: 95px 115px;
}

.article-body-grid aside {
  display: grid;
  align-content: start;
  gap: 14px;
  border-top: 1px solid #cabdb5;
  padding-top: 21px;
}

.article-body-grid aside p {
  margin: 0 0 8px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.article-body-grid aside a {
  color: #776c67;
  font-size: 9px;
  line-height: 1.6;
}

.article-body {
  max-width: 720px;
}

.article-lead {
  margin: 0 0 60px;
  border-left: 2px solid var(--red);
  padding: 7px 0 7px 27px;
  color: #403634;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  line-height: 2;
}

.article-body section {
  margin-top: 65px;
}

.article-body section > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.article-body section h2 {
  margin: 13px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 27px;
  font-weight: 500;
}

.article-body section p {
  margin: 24px 0 0;
  color: #625753;
  font-size: 13px;
  line-height: 2.15;
}

.article-note {
  margin-top: 70px;
  background: #e7ddd3;
  padding: 29px;
}

.article-note strong {
  color: var(--red);
  font-size: 11px;
}

.article-note p {
  margin: 13px 0 0;
  color: #6f6460;
  font-size: 10px;
  line-height: 1.9;
}

.related-articles {
  border-top: 1px solid #d8cbc4;
  background: #f2ebe7;
  padding-block: 82px;
}

.related-articles h2 {
  margin: 10px 0 36px;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid #d8cbc4;
  background: #d8cbc4;
}

.related-articles-grid article {
  background: var(--paper);
}

.related-articles-grid a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.related-articles-grid a:hover {
  background: var(--red);
  color: #fff;
}

.related-articles-grid span,
.related-articles-grid small {
  font-size: 9px;
  letter-spacing: 0.13em;
}

.related-articles-grid h3 {
  margin: 28px 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
}

.related-articles-grid small {
  margin-top: auto;
  color: #8a7d77;
}

.related-articles-grid a:hover small {
  color: rgba(255, 255, 255, 0.7);
}

.next-article {
  background: #1b0007;
  color: white;
  padding-block: 55px;
}

.next-article .wide-shell > p {
  margin: 0 0 19px;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.next-article a {
  display: grid;
  align-items: center;
  grid-template-columns: 130px 1fr 40px;
}

.next-article a span {
  color: rgba(255, 255, 255, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
}

.next-article a strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 400;
}

.next-article a i {
  color: var(--bright-red);
  font-size: 22px;
  font-style: normal;
}

@media (max-width: 980px) {
  .noir-nav nav {
    display: none;
  }

  .top-updates-title p {
    display: none;
  }

  .dark-hero-grid,
  .profile-dark-grid,
  .contact-red-grid {
    gap: 42px;
  }

  .intro-grid {
    gap: 38px;
  }

  .desire-cards,
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-featured {
    grid-template-columns: 1fr 1fr;
  }

  .journal-featured .featured-post {
    grid-column: 1 / -1;
  }

  .faq-dark-grid {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .wide-shell {
    width: min(100% - 32px, 1220px);
  }

  .adult-bar .wide-shell {
    justify-content: center;
  }

  .adult-bar p:last-child {
    display: none;
  }

  .noir-nav {
    min-height: 68px;
    gap: 14px;
  }

  .noir-logo strong {
    font-size: 20px;
  }

  .noir-logo span {
    display: none;
  }

  .header-entry {
    min-width: 95px;
    min-height: 39px;
  }

  .top-updates {
    padding-top: 17px;
  }

  .top-updates-header {
    grid-template-columns: auto 1fr;
    padding-bottom: 15px;
  }

  .top-updates-title {
    justify-content: flex-end;
  }

  .top-updates-title h2 {
    font-size: 13px;
  }

  .top-updates-all {
    display: none;
  }

  .top-updates-grid {
    display: flex;
    width: calc(100% + 16px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--red) rgba(255, 255, 255, 0.08);
  }

  .top-update-card {
    min-width: 84vw;
    border-left: 0;
    border-right: 1px solid var(--dark-line);
    scroll-snap-align: start;
  }

  .top-update-card a {
    min-height: 0;
    padding: 0;
  }

  .update-card-media {
    aspect-ratio: 16 / 7.6;
  }

  .update-card-body {
    min-height: 148px;
    padding: 18px 17px 21px;
  }

  .top-update-card h3 {
    font-size: 15px;
  }

  .dark-hero {
    min-height: auto;
  }

  .dark-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 65px 35px;
  }

  .dark-hero h1 {
    font-size: 39px;
  }

  .dark-hero-lead {
    font-size: 14px;
  }

  .dark-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .red-button {
    width: 100%;
  }

  .ghost-link {
    align-self: flex-start;
  }

  .sensual-visual {
    min-height: 390px;
  }

  .satin-one {
    right: 2%;
    width: 330px;
    height: 330px;
  }

  .satin-two {
    right: 42%;
    width: 160px;
    height: 160px;
  }

  .visual-frame {
    top: 48px;
    bottom: 30px;
    left: 14px;
  }

  .visual-center strong {
    font-size: 30px;
  }

  .desire-ticker {
    min-height: 65px;
    justify-content: flex-start;
    gap: 25px;
    padding-left: 20px;
    font-size: 13px;
  }

  .intro-section,
  .desire-section,
  .recruit-detail,
  .profile-dark,
  .rules-section,
  .journal-home,
  .faq-dark,
  .contact-red {
    padding-block: 78px;
  }

  .intro-grid,
  .section-topline,
  .recruit-detail-grid,
  .profile-dark-grid,
  .faq-dark-grid,
  .contact-red-grid,
  .blog-hero-grid,
  .article-header-grid,
  .article-body-grid {
    grid-template-columns: 1fr;
  }

  .vertical-label {
    display: none;
  }

  .intro-title h2,
  .section-topline h2,
  .recruit-title h2,
  .profile-dark-copy h2,
  .journal-heading h2,
  .faq-dark h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-topline {
    gap: 26px;
    margin-bottom: 40px;
  }

  .desire-cards,
  .rules-grid,
  .journal-featured,
  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .desire-cards article {
    min-height: 250px;
    border-left: 1px solid rgba(23, 19, 20, 0.16);
  }

  .desire-cards h3 {
    margin-top: 45px;
  }

  .recruit-detail-grid {
    gap: 45px;
  }

  .recruit-table > div {
    grid-template-columns: 100px 1fr;
    gap: 14px;
  }

  .profile-dark-grid {
    gap: 52px;
  }

  .profile-art {
    min-height: 430px;
  }

  .profile-dark-copy {
    padding-right: 0;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-facts > div,
  .profile-facts > div:nth-child(even) {
    border-right: 0;
  }

  .rules-grid article {
    min-height: 210px;
  }

  .journal-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .journal-featured .featured-post {
    grid-column: auto;
  }

  .featured-post .post-visual,
  .post-visual {
    min-height: 250px;
  }

  .faq-dark-grid {
    gap: 45px;
  }

  .dark-form {
    padding: 27px 20px;
  }

  .dark-form-row {
    grid-template-columns: 1fr;
  }

  .noir-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .noir-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .copyright {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .blog-hero {
    padding-block: 75px;
  }

  .blog-hero-grid {
    gap: 25px;
  }

  .blog-hero h1 {
    font-size: 49px;
  }

  .blog-filter {
    overflow-x: auto;
    white-space: nowrap;
  }

  .blog-list-section {
    padding-block: 55px 80px;
  }

  .article-header {
    padding-block: 65px;
  }

  .article-header-grid {
    gap: 42px;
  }

  .article-header h1 {
    font-size: 36px;
  }

  .article-art {
    min-height: 260px;
  }

  .article-body-grid {
    gap: 45px;
    padding-block: 70px;
  }

  .article-body-grid aside {
    display: none;
  }

  .article-lead {
    font-size: 15px;
  }

  .next-article a {
    gap: 10px;
    grid-template-columns: 1fr 35px;
  }

  .next-article a span {
    display: none;
  }

  .next-article a strong {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .update-live i {
    animation: none !important;
  }
}

/* WordPress integration */
body.admin-bar .noir-header {
  top: 0;
}

.post-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.post-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(80, 0, 20, 0.48), rgba(0, 0, 0, 0.74));
  content: "";
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-art.has-profile-image {
  background: #080808;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.profile-art.has-profile-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 55%);
  content: "";
}

.profile-art.has-profile-image p {
  z-index: 2;
}

.contact-form-wrap > form,
.contact-form-wrap > .wpcf7 {
  width: 100%;
}

.wpcf7 form {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.21);
  background: rgba(5, 5, 5, 0.84);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  padding: 39px;
  gap: 20px;
}

.wpcf7 label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
}

.wpcf7 input:not([type="submit"]):not([type="checkbox"]),
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  padding: 13px;
  font-size: 12px;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: var(--bright-red);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.wpcf7 .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-response-output {
  margin: 0;
  color: white;
  font-size: 10px;
}

.demo-form button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.blog-filter a {
  color: #867b76;
}

.blog-filter a:hover,
.blog-filter a:focus-visible {
  color: var(--red);
}

.pagination {
  margin-top: 52px;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.pagination .page-numbers {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #cfc2bb;
  color: #6a5f5a;
  font-size: 10px;
}

.pagination .current {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.seo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: #8a7d77;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-page > article > .seo-breadcrumb {
  padding-top: 42px;
}

.seo-breadcrumb a {
  flex: 0 0 auto;
  color: var(--red);
}

.seo-breadcrumb span[aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-body-grid aside > span {
  color: #746965;
  font-size: 9px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin: 64px 0 0;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
}

.entry-content h3 {
  margin: 42px 0 0;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 500;
}

.entry-content p,
.entry-content li {
  color: #625753;
  font-size: 13px;
  line-height: 2.15;
}

.entry-content p {
  margin: 23px 0 0;
}

.entry-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  margin: 36px 0;
  border-left: 2px solid var(--red);
  padding: 8px 0 8px 24px;
  color: #4f4440;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.standard-page {
  min-height: 65vh;
  background: var(--paper);
  color: var(--ink);
  padding-block: 105px;
}

.standard-page-grid {
  max-width: 860px;
}

.standard-page h1,
.not-found-page h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.5;
}

.standard-page .entry-content {
  margin-top: 55px;
}

/* Detailed profile page */
.profile-detail-page {
  background: var(--paper);
  color: var(--ink);
}

.profile-detail-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 18%, rgba(163, 0, 37, 0.25), transparent 23%),
    linear-gradient(125deg, #050505 0 58%, #180007 100%);
  color: #fff;
  padding-block: 48px 115px;
}

.profile-detail-hero::before {
  position: absolute;
  top: 80px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(217, 11, 58, 0.17);
  border-radius: 50%;
  content: "";
}

.profile-detail-breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.4);
}

.profile-detail-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 100px;
}

.profile-detail-photo {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 68% 28%, rgba(222, 117, 141, 0.33), transparent 13%),
    linear-gradient(145deg, #6b0019, #160007 62%, #050505);
  padding: 26px;
}

.profile-detail-photo::before {
  position: absolute;
  top: 54px;
  right: -110px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.profile-detail-photo.has-profile-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 58%);
  content: "";
}

.profile-detail-photo p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.profile-detail-letter {
  position: absolute;
  top: 46%;
  left: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 190px;
  font-style: italic;
  transform: translate(-50%, -50%);
}

.profile-detail-summary h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.profile-detail-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 2.1;
}

.profile-detail-facts {
  margin-top: 39px;
}

.profile-detail-hero-actions {
  margin-top: 35px;
}

.profile-detail-content {
  padding-block: 125px;
}

.profile-detail-content-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: start;
  gap: 105px;
}

.profile-detail-content aside {
  position: sticky;
  top: 35px;
  border-top: 1px solid #2e2422;
  padding-top: 27px;
}

.profile-detail-content aside h2 {
  margin: 12px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.55;
}

.profile-detail-content aside > p:not(.red-kicker) {
  margin: 25px 0 0;
  color: #766b67;
  font-size: 11px;
  line-height: 2;
}

.profile-story {
  max-width: 760px;
}

.profile-story > h2:first-child {
  margin-top: 0;
}

.profile-editor-note {
  border: 1px solid #d1c3bc;
  background: #fffaf5;
  padding: 31px;
}

.profile-editor-note strong {
  color: var(--red);
  font-size: 12px;
}

.profile-editor-note p {
  margin-top: 15px;
}

.profile-detail-cta {
  background:
    radial-gradient(circle at 88% 20%, rgba(217, 11, 58, 0.25), transparent 25%),
    #190007;
  color: #fff;
  padding-block: 88px;
}

.profile-detail-cta .wide-shell {
  display: grid;
  grid-template-columns: 0.45fr 1fr auto;
  align-items: center;
  gap: 55px;
}

.profile-detail-cta p {
  margin: 0;
  color: var(--bright-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.profile-detail-cta h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.55;
}

.index-card {
  border-bottom: 1px solid #cfc2bb;
  padding-block: 38px;
}

.index-card h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  font-weight: 500;
}

.entry-summary {
  color: #6c615d;
  font-size: 12px;
  line-height: 1.9;
}

.not-found-page {
  display: grid;
  min-height: 68vh;
  place-items: center;
  background: #080808;
  color: white;
  padding-block: 95px;
}

.not-found-page p:not(.red-kicker) {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.not-found-page .red-button {
  margin-top: 35px;
}

.no-posts {
  grid-column: 1 / -1;
  color: #756a65;
  font-size: 12px;
}

@media (max-width: 760px) {
  .wpcf7 form {
    padding: 27px 20px;
  }

  .article-page > article > .seo-breadcrumb {
    padding-top: 28px;
  }

  .related-articles {
    padding-block: 58px;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
  }

  .related-articles-grid a {
    min-height: 160px;
  }

  .standard-page {
    padding-block: 72px;
  }

  .profile-actions,
  .profile-detail-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-page-link {
    width: 100%;
  }

  .profile-actions .profile-more,
  .profile-detail-hero-actions .profile-more {
    align-self: flex-start;
  }

  .profile-detail-hero {
    padding-block: 30px 74px;
  }

  .profile-detail-breadcrumb {
    margin-bottom: 31px;
  }

  .profile-detail-hero-grid,
  .profile-detail-content-grid,
  .profile-detail-cta .wide-shell {
    grid-template-columns: 1fr;
  }

  .profile-detail-hero-grid {
    gap: 50px;
  }

  .profile-detail-photo {
    min-height: 430px;
  }

  .profile-detail-summary h1 {
    font-size: 41px;
  }

  .profile-detail-content {
    padding-block: 76px;
  }

  .profile-detail-content-grid {
    gap: 48px;
  }

  .profile-detail-content aside {
    position: static;
  }

  .profile-detail-cta {
    padding-block: 65px;
  }

  .profile-detail-cta .wide-shell {
    gap: 27px;
  }
}
