:root {
  color-scheme: dark;
  --bg: #100d13;
  --bg-soft: #171219;
  --panel: #201923;
  --panel-light: #2a202e;
  --text: #fffafd;
  --muted: #b9acb8;
  --pink: #ff65af;
  --hot-pink: #ff238d;
  --pale-pink: #ffd2e8;
  --lavender: #c99fff;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --display: "Noto Sans JP", "Outfit", sans-serif;
  --body: "Noto Sans JP", "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 35, 141, 0.06), transparent 30%),
    radial-gradient(circle at 90% 72%, rgba(201, 159, 255, 0.05), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button,
select,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button,
select {
  color: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: 3px solid var(--pale-pink);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: #111;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(9, 7, 10, 0.58), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: white;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  margin-right: 8px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--pink), var(--hot-pink));
  box-shadow: 0 0 24px rgba(255, 35, 141, 0.38);
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.nav-favorite {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.77);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  cursor: pointer;
}

.desktop-nav a:hover,
.nav-favorite:hover {
  color: var(--pink);
}

[data-favorite-count] {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  padding: 0 4px;
  place-items: center;
  border-radius: 99px;
  background: var(--hot-pink);
  color: white;
  font-size: 10px;
  font-style: normal;
}

.age-label {
  justify-self: end;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  background: #1a141d;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: reveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 12, 0.94) 0%, rgba(10, 8, 12, 0.63) 34%, rgba(10, 8, 12, 0.06) 70%),
    linear-gradient(0deg, var(--bg) 0%, transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(700px, 90%);
  min-height: min(920px, 100svh);
  margin-left: clamp(24px, 8vw, 130px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 17px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--pink);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 7.4vw, 106px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.hero h1 em,
.gallery-manifesto h2 em {
  background: linear-gradient(105deg, var(--pale-pink), var(--pink), var(--lavender));
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.7;
}

.primary-button,
.outline-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 0;
  border-radius: 17px;
  font-weight: 700;
  text-decoration: none;
}

.primary-button {
  background: linear-gradient(135deg, var(--pink), var(--hot-pink));
  box-shadow: 0 12px 36px rgba(255, 35, 141, 0.3);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  box-shadow: 0 16px 44px rgba(255, 35, 141, 0.45);
  transform: translateY(-2px);
}

.adult-note {
  display: flex;
  margin: 23px 0 0;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.adult-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 90, 170, 0.12);
}

.hero-girl-link {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 6vw, 88px);
  bottom: 56px;
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(17, 13, 19, 0.55);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-girl-link:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
}

.hero-girl-link span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-girl-link strong {
  font-family: var(--display);
  font-size: 25px;
}

.hero-girl-link small {
  color: var(--muted);
  font-size: 11px;
}

.hero-sparkle {
  position: absolute;
  z-index: 3;
  color: var(--pale-pink);
  text-shadow: 0 0 18px var(--pink);
}

.sparkle-one {
  top: 23%;
  right: 12%;
  font-size: 30px;
}

.sparkle-two {
  right: 5%;
  bottom: 34%;
  font-size: 18px;
}

.content-section {
  padding: 108px clamp(20px, 6vw, 92px);
}

.section-heading {
  display: flex;
  margin-bottom: 46px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.shop-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.section-heading h2 span,
.shop-heading h2 span,
.girl-profile h1 span {
  color: var(--pink);
}

.section-heading > p,
.shop-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.girls-section {
  background: linear-gradient(180deg, var(--bg), #151017);
}

.girls-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2vw, 25px);
}

.girl-card {
  display: block;
  min-width: 0;
  text-decoration: none;
  animation: card-in 0.7s both;
  animation-delay: var(--delay);
}

.girl-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.74;
  border-radius: 26px;
  background: var(--panel);
}

.girl-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.girl-card:nth-child(2n) .girl-image-wrap {
  margin-top: 38px;
}

.girl-card:hover img {
  transform: scale(1.045);
}

.girl-card-shade,
.photo-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 6, 9, 0.75), transparent 48%);
}

.girl-number {
  position: absolute;
  top: 15px;
  left: 15px;
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 8, 11, 0.26);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.girl-card-copy {
  display: grid;
  gap: 4px;
  padding: 15px 4px 0;
}

.girl-card-copy strong {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.03em;
}

.girl-card-copy strong i {
  color: var(--pink);
  font-style: normal;
}

.girl-card-copy small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.photos-section {
  background: var(--bg-soft);
}

.gallery-tools {
  display: flex;
  margin-bottom: 18px;
  align-items: end;
  gap: 10px;
}

.gallery-tools label {
  display: grid;
  min-width: 150px;
  gap: 6px;
}

.gallery-tools label span {
  padding-left: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-tools select,
.favorites-filter,
.clear-filter {
  height: 47px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  cursor: pointer;
}

.gallery-tools select {
  min-width: 150px;
  padding: 0 38px 0 15px;
}

.favorites-filter,
.clear-filter {
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
}

.favorites-filter.is-active {
  border-color: var(--pink);
  background: rgba(255, 35, 141, 0.15);
  color: var(--pink);
}

.clear-filter {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.photo-result {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.photo-grid {
  columns: 4;
  column-gap: clamp(12px, 1.6vw, 22px);
}

.photo-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(16px, 2vw, 26px);
  break-inside: avoid;
  border-radius: 23px;
  background: var(--panel);
  animation: card-in 0.6s both;
  animation-delay: var(--delay);
}

.photo-card-link {
  display: block;
  text-decoration: none;
}

.photo-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 23px;
  background: #211923;
}

.photo-card:nth-child(5n + 1) .photo-image-wrap {
  aspect-ratio: 0.72;
}

.photo-card:nth-child(5n + 2) .photo-image-wrap {
  aspect-ratio: 0.82;
}

.photo-card:nth-child(5n + 3) .photo-image-wrap {
  aspect-ratio: 0.68;
}

.photo-card:nth-child(5n + 4) .photo-image-wrap {
  aspect-ratio: 0.76;
}

.photo-card:nth-child(5n) .photo-image-wrap {
  aspect-ratio: 0.88;
}

.photo-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-card:hover .photo-image-wrap img {
  transform: scale(1.035);
}

.ai-label,
.photo-ai-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(12, 9, 13, 0.42);
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.photo-card-copy {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.photo-card-copy > span:first-child {
  display: grid;
  gap: 2px;
}

.photo-card-copy strong {
  font-family: var(--display);
  font-size: 17px;
}

.photo-card-copy small {
  color: var(--muted);
  font-size: 11px;
}

.photo-arrow {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--pink);
}

.photo-favorite,
.detail-favorite {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(16, 13, 19, 0.58);
  color: white;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.photo-favorite {
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  font-size: 21px;
}

.photo-favorite.is-favorite,
.detail-favorite.is-favorite {
  border-color: var(--pink);
  background: var(--hot-pink);
}

.empty-state {
  padding: 80px 20px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
}

.empty-state > span {
  color: var(--pink);
  font-size: 42px;
}

.empty-state h3 {
  margin: 12px 0 7px;
  color: white;
}

.styles-section {
  background: var(--bg);
}

.style-cloud {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  grid-template-columns: repeat(4, 1fr);
}

.style-cloud button {
  display: grid;
  min-height: 108px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.style-cloud button:hover,
.style-cloud button.is-accent:hover {
  background: var(--hot-pink);
  color: white;
}

.style-cloud button.is-accent {
  background: rgba(201, 159, 255, 0.08);
}

.style-cloud button span {
  color: var(--pink);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.style-cloud button i {
  color: var(--muted);
  font-family: var(--body);
  font-size: 16px;
  font-style: normal;
}

.gallery-manifesto {
  display: flex;
  min-height: 520px;
  padding: 90px clamp(24px, 9vw, 150px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(15, 11, 17, 0.96), rgba(15, 11, 17, 0.38)),
    url("../public/images/look-pink-succubus.webp") center 35% / cover;
}

.gallery-manifesto h2 {
  margin: 0 0 35px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.33);
  background: rgba(12, 9, 13, 0.3);
  backdrop-filter: blur(10px);
}

.outline-button:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.girl-hero {
  position: relative;
  display: flex;
  min-height: min(850px, 92svh);
  align-items: center;
  overflow: hidden;
  background: var(--panel);
}

.girl-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.girl-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 8, 12, 0.95), rgba(11, 8, 12, 0.56) 42%, rgba(11, 8, 12, 0.06) 73%),
    linear-gradient(0deg, var(--bg), transparent 25%);
}

.girl-profile {
  position: relative;
  z-index: 2;
  width: min(580px, 88%);
  margin-left: clamp(24px, 8vw, 130px);
  padding-top: 70px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.back-link:hover {
  color: var(--pink);
}

.girl-profile h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(78px, 10vw, 150px);
  letter-spacing: -0.07em;
  line-height: 0.83;
}

.girl-tagline {
  margin: 25px 0 13px;
  color: var(--pale-pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.girl-bio {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.profile-tags {
  display: flex;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags span,
.tag-list a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  text-decoration: none;
}

.girl-gallery {
  background: var(--bg);
}

.girl-gallery .photo-grid {
  columns: 4;
}

.photo-detail {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.8fr);
  background: var(--bg-soft);
}

.photo-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #09070a;
}

.photo-stage > img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center 24%;
}

.photo-stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 6, 9, 0.55), transparent 27%);
  pointer-events: none;
}

.back-link.floating {
  position: absolute;
  z-index: 4;
  top: 110px;
  left: clamp(20px, 4vw, 58px);
  margin: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(10, 8, 11, 0.4);
  backdrop-filter: blur(12px);
}

.photo-ai-badge {
  top: auto;
  bottom: 28px;
  left: 28px;
}

.detail-favorite {
  right: 28px;
  bottom: 25px;
  width: 51px;
  height: 51px;
  font-size: 27px;
}

.photo-info {
  display: flex;
  min-width: 0;
  padding: 130px clamp(28px, 4vw, 62px) 55px;
  flex-direction: column;
  justify-content: center;
}

.model-pill {
  display: grid;
  width: 100%;
  margin-bottom: 55px;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 12px 9px 9px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel);
  text-decoration: none;
}

.model-pill img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.model-pill span {
  display: grid;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.model-pill strong {
  margin-top: 2px;
  color: white;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0;
}

.model-pill i {
  color: var(--pink);
  font-style: normal;
}

.photo-info h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 84px);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.photo-description {
  margin: 23px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list a:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.photo-pager {
  display: grid;
  margin-top: auto;
  padding-top: 48px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-pager a {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  text-decoration: none;
}

.photo-pager a:last-child {
  text-align: right;
}

.photo-pager span {
  color: var(--pink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.photo-pager strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-photo {
  padding: 120px clamp(20px, 7vw, 110px);
  background: var(--bg);
}

.shop-heading {
  display: grid;
  margin-bottom: 38px;
  justify-items: center;
  text-align: center;
}

.shop-heading > p {
  margin-top: 20px;
}

.ai-disclaimer {
  display: grid;
  max-width: 980px;
  margin: 0 auto 40px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 17px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 159, 255, 0.24);
  border-radius: 18px;
  background: rgba(201, 159, 255, 0.06);
}

.ai-disclaimer > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--lavender), var(--pink));
  color: #160f19;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
}

.ai-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.ai-disclaimer strong {
  color: white;
}

.product-grid {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  background: var(--panel-light);
}

.product-card-copy {
  padding: 17px;
}

.product-card-copy > span {
  color: var(--pink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.product-card h3 {
  min-height: 42px;
  margin: 8px 0 14px;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.3;
}

.product-card p {
  margin: 0 0 3px;
  font-size: 16px;
  font-weight: 700;
}

.product-card p small,
.product-card-copy > small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
}

.product-links {
  display: grid;
  margin-top: 16px;
  gap: 6px;
}

.product-links a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid rgba(255, 101, 175, 0.28);
  border-radius: 11px;
  color: var(--pale-pink);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.product-links a:hover {
  border-color: var(--pink);
  background: rgba(255, 35, 141, 0.1);
}

.style-total {
  display: grid;
  max-width: 500px;
  margin: 46px auto 0;
  justify-items: center;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 35, 141, 0.14), rgba(201, 159, 255, 0.1));
}

.style-total span {
  color: var(--pale-pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.style-total strong {
  margin: 6px 0 2px;
  font-family: var(--display);
  font-size: 39px;
}

.style-total small,
.affiliate-note {
  color: var(--muted);
  font-size: 9px;
}

.affiliate-note {
  margin: 24px 0 0;
  text-align: center;
}

.related-section {
  background: var(--bg-soft);
}

.compact-grid {
  columns: 4;
}

.site-footer {
  display: grid;
  min-height: 280px;
  padding: 65px clamp(24px, 6vw, 92px);
  place-items: center;
  align-content: center;
  background: #0b090c;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 14px 0 0;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.site-footer .footer-note {
  max-width: 520px;
  margin-top: 24px;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.mobile-nav {
  display: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(27, 20, 30, 0.93);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@media (max-width: 1100px) {
  .girls-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .girl-card:nth-child(2n) .girl-image-wrap {
    margin-top: 0;
  }

  .girls-grid .girl-card:nth-child(2),
  .girls-grid .girl-card:nth-child(5) {
    transform: translateY(28px);
  }

  .photo-grid {
    columns: 3;
  }

  .style-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .desktop-nav {
    display: none;
  }

  .age-label {
    font-size: 7px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 9, 14, 0.96) 0%, rgba(12, 9, 14, 0.64) 41%, rgba(12, 9, 14, 0.08) 78%),
      linear-gradient(90deg, rgba(12, 9, 14, 0.45), transparent);
  }

  .hero-content {
    width: auto;
    min-height: 88svh;
    margin: 0;
    justify-content: flex-end;
    padding: 0 21px 70px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-copy {
    max-width: 390px;
    margin: 20px 0 23px;
    font-size: 14px;
  }

  .hero-girl-link,
  .hero-sparkle {
    display: none;
  }

  .content-section {
    padding: 78px 16px;
  }

  .section-heading {
    display: grid;
    margin-bottom: 30px;
    gap: 15px;
  }

  .section-heading h2,
  .shop-heading h2 {
    font-size: 41px;
  }

  .girls-grid {
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
    gap: 13px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .girl-card,
  .girls-grid .girl-card:nth-child(2),
  .girls-grid .girl-card:nth-child(5) {
    width: 72vw;
    max-width: 300px;
    flex: 0 0 auto;
    transform: none;
    scroll-snap-align: start;
  }

  .girl-image-wrap {
    border-radius: 22px;
  }

  .gallery-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-tools label,
  .gallery-tools select {
    min-width: 0;
    width: 100%;
  }

  .photo-grid,
  .girl-gallery .photo-grid,
  .compact-grid {
    columns: 2;
    column-gap: 10px;
  }

  .photo-card {
    margin-bottom: 12px;
    border-radius: 17px;
  }

  .photo-image-wrap {
    border-radius: 17px;
  }

  .photo-card-copy {
    min-height: 64px;
    padding: 10px 11px;
  }

  .photo-card-copy strong {
    font-size: 15px;
  }

  .photo-card-copy small {
    font-size: 9px;
  }

  .photo-arrow {
    display: none;
  }

  .photo-favorite {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .ai-label {
    top: 8px;
    left: 8px;
    font-size: 6px;
  }

  .style-cloud {
    grid-template-columns: 1fr 1fr;
  }

  .style-cloud button {
    min-height: 82px;
    padding: 0 14px;
    font-size: 16px;
  }

  .gallery-manifesto {
    min-height: 470px;
    padding: 65px 21px;
    background-position: 60% center;
  }

  .gallery-manifesto h2 {
    font-size: 48px;
  }

  .girl-hero {
    min-height: 88svh;
    align-items: flex-end;
  }

  .girl-hero > img {
    object-position: 60% center;
  }

  .girl-hero-shade {
    background: linear-gradient(0deg, rgba(11, 8, 12, 0.97), rgba(11, 8, 12, 0.54) 50%, rgba(11, 8, 12, 0.05) 82%);
  }

  .girl-profile {
    width: auto;
    margin: 0;
    padding: 0 21px 70px;
  }

  .girl-profile .back-link {
    margin-bottom: 38px;
  }

  .girl-profile h1 {
    font-size: 86px;
  }

  .girl-bio {
    font-size: 14px;
  }

  .photo-detail {
    display: block;
  }

  .photo-stage,
  .photo-stage > img {
    min-height: 0;
    height: 83svh;
  }

  .back-link.floating {
    top: 88px;
    left: 16px;
  }

  .photo-info {
    min-height: auto;
    padding: 48px 20px 55px;
  }

  .model-pill {
    margin-bottom: 42px;
  }

  .photo-info h1 {
    font-size: 55px;
  }

  .photo-pager {
    margin-top: 0;
  }

  .shop-photo {
    padding: 78px 16px;
  }

  .ai-disclaimer {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .ai-disclaimer > span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-card-copy {
    padding: 13px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 8px;
    left: 10px;
    display: grid;
    min-height: 59px;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 19px;
    background: rgba(24, 18, 27, 0.91);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a,
  .mobile-nav button {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    background: none;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a span,
  .mobile-nav button > span {
    color: var(--pink);
    font-size: 16px;
  }

  .mobile-nav [data-favorite-count] {
    position: absolute;
    top: 5px;
    right: 8px;
  }

  .toast {
    right: 15px;
    bottom: 80px;
    left: 15px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 18px;
  }

  .age-label {
    padding: 6px 9px;
  }

  .gallery-tools {
    grid-template-columns: 1fr 1fr;
  }

  .favorites-filter,
  .clear-filter {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .product-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-card h3 {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
