﻿:root {
  --bg: #0d0d0f;
  --panel: #111118;
  --text: #f7f7fb;
  --muted: #b8b8c7;
  --accent: #ea9f92;
  --card: #161621;
  --border: #242436;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100svh;
}

body, button, input, select, textarea {
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

.is-locked {
  overflow: hidden;
}

.site-shell {
  min-height: 100svh;
  transition: filter 200ms ease, opacity 200ms ease;
}

.is-locked .site-shell {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.intro-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(234, 159, 146, 0.16), rgba(13, 13, 15, 0.92));
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.intro-screen.intro--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__card {
  background: rgba(17, 17, 24, 0.9);
  border: 1px solid rgba(234, 159, 146, 0.25);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.intro__title {
  font-family: 'Playfair Display', serif;
  margin: 6px 0 10px;
  font-size: clamp(34px, 6vw, 52px);
}

.intro__subhead {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.intro__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

h1, h2, h3, h4 {
  margin: 0 0 12px;
  line-height: 1.1;
}

p {
  margin: 0 0 12px;
}

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

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  background: rgba(13, 13, 15, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.96rem;
  color: var(--text);
  z-index: 30;
  justify-content: center;
  flex: 1 1 auto;
}

.nav.nav--open {
  display: flex !important;
}

.lang-switch {
  display: flex;
  gap: 8px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(234, 159, 146, 0.35);
}

.btn-solid {
  background: var(--accent);
  color: #1a1a1f;
  border-color: var(--accent);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 200px 0 140px;
  min-height: 100svh;
  overflow: hidden;
  background-attachment: scroll;
  /* Use relative path so it works in subfolders on Hostinger */
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 159, 146, 0.16), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 36%),
    url('pictures/j01.jpg') center/cover no-repeat,
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13, 13, 15, 0.88) 0%, rgba(13, 13, 15, 0.3) 60%, rgba(13, 13, 15, 0.8) 100%);
}

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

.hero-sale-badge {
  position: absolute;
  top: -18px;
  right: 0;
  transform: rotate(-8deg);
  z-index: 2;
  animation: sale-pulse 2.4s ease-in-out infinite;
}

.hero-sale-badge span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 110, 150, 0.18);
  color: #ff6fa7;
  border: 1px solid rgba(255, 110, 150, 0.45);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px rgba(255, 110, 150, 0.6);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hero-cta-badge span {
  background: rgba(234, 159, 146, 0.2);
  color: var(--accent);
  border-color: rgba(234, 159, 146, 0.55);
  text-shadow: 0 0 12px rgba(234, 159, 146, 0.6);
}

.hero-sale-badge--easter span {
  background: rgba(170, 220, 120, 0.18);
  color: #c7f59e;
  border-color: rgba(170, 220, 120, 0.5);
  text-shadow: 0 0 12px rgba(170, 220, 120, 0.6);
}

.hero-eggs .heart {
  filter: drop-shadow(0 0 12px rgba(160, 255, 170, 0.6));
}

/* Promo elements hidden by default; enable with toggles on html */
.hero-sale-badge,
.hero-hearts,
.countdown__badge,
.hero-sale-badge--easter,
.hero-eggs {
  display: none;
}

.promo-active .hero-sale-badge,
.promo-active .hero-hearts,
.promo-active .countdown__badge {
  display: block;
}

.hero-cta-badge {
  display: block;
}

.easter-active .hero-sale-badge--easter,
.easter-active .hero-eggs {
  display: block;
}

.hero-sale-badge:focus-visible span,
.hero-sale-badge:hover span {
  box-shadow: 0 14px 30px rgba(255, 110, 150, 0.35);
  transform: translateY(-1px);
}

.easter-active .hero-sale-badge--easter:focus-visible span,
.easter-active .hero-sale-badge--easter:hover span {
  box-shadow: 0 14px 30px rgba(170, 220, 120, 0.35);
}

.hero-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-hearts .heart {
  position: absolute;
  font-size: 1.35rem;
  filter: drop-shadow(0 0 14px rgba(255, 120, 180, 0.7));
  animation: heart-float 6s ease-in-out infinite, heart-glow 2.8s ease-in-out infinite;
}

.hero-hearts .heart--1 { top: -6px; left: 6px; animation-delay: 0s; }
.hero-hearts .heart--2 { top: 18px; left: 240px; animation-delay: 1.2s; }
.hero-hearts .heart--3 { top: 70px; right: 12px; animation-delay: 2.1s; }
.hero-hearts .heart--4 { top: 140px; left: 120px; animation-delay: 3s; }
.hero-hearts .heart--5 { top: 200px; right: 120px; animation-delay: 3.6s; }
.hero-hearts .heart--6 { top: 118px; left: -6px; animation-delay: 4.2s; }

@keyframes heart-float {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(-10px); opacity: 1; }
}

@keyframes heart-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 120, 180, 0.45)); }
  50% { filter: drop-shadow(0 0 18px rgba(255, 120, 180, 0.85)); }
}

.hero-eggs .heart {
  animation: heart-float 6s ease-in-out infinite, bunny-glow 2.8s ease-in-out infinite;
}

@keyframes bunny-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(160, 255, 170, 0.5)); }
  50% { filter: drop-shadow(0 0 18px rgba(160, 255, 170, 0.85)); }
}

@keyframes sale-pulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.04); }
}

.hero__headline {
  display: grid;
  gap: 4px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
}

.hero__headline .line,
.hero__headline .accent {
  font-weight: 600;
}

.hero__headline .accent {
  color: var(--accent);
}

.hero__headline .line:first-child {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.hero__subhead {
  max-width: 620px;
  color: var(--text);
  font-size: 1.08rem;
  margin: 18px 0 28px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  transition: opacity 180ms ease;
}

.hero-countdown {
  display: inline-flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 18px 0 10px;
  padding: 1.1rem 0;
  position: relative;
}

.hero-countdown .eyebrow {
  margin-bottom: 0.2rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 0.75rem;
}

.countdown__item {
  text-align: center;
  padding: 0.7rem 0.5rem;
  border-radius: 14px;
  background: rgba(20, 20, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.countdown__value {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  color: var(--text);
}

.countdown__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

.countdown__actions {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  flex-wrap: wrap;
  position: relative;
}

.countdown__badge {
  position: absolute;
  top: 40px;
  left: 0;
  transform: none;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 110, 150, 0.18);
  color: #ff6fa7;
  border: 1px solid rgba(255, 110, 150, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px rgba(255, 110, 150, 0.5);
  pointer-events: none;
}

.countdown__hint {
  margin-left: auto;
  margin-top: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  flex-basis: auto;
  display: inline-block;
  line-height: 1.2;
}

#add-time-btn,
#add-time-menu {
  display: none;
}

.add-time-active #add-time-btn,
.add-time-active #add-time-menu {
  display: inline-flex;
}


.hero-youtube {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.hero-youtube__text {
  margin: 0;
  color: var(--accent);
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(234, 159, 146, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-youtube__thumb {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-youtube__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(200, 40, 40, 0.92);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-youtube__thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-youtube__thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
}

.addtime-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.6rem;
  border-radius: 12px 16px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 16, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  z-index: 3;
}

.addtime-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 26px;
  width: 12px;
  height: 12px;
  background: rgba(10, 10, 16, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.addtime-intro {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.3;
}

.addtime-note {
  margin: 0.35rem 0 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.addtime-menu a {
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease;
}

.addtime-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.addtime-menu a:hover,
.addtime-menu a:focus {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.addtime-menu.is-open {
  display: flex;
}

.is-locked .hero__actions {
  opacity: 0;
  pointer-events: none;
}

.has-entered .hero__actions {
  display: none;
}

.section {
  padding: 90px 0;
}

#collabs {
  padding-top: 30px;
}

.section--conditional {
  display: none;
}

.section--conditional.is-visible {
  display: block;
  padding-top: 40px;
}

.stack-tight p {
  margin-bottom: 4px;
}

.stack-tight p:last-child {
  margin-bottom: 8px;
}
.section--light {
  background: var(--panel);
}

.section__header {
  margin-bottom: 28px;
}

.section__header--split {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.section__header-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.section__header-controls .btn.is-active {
  background: var(--accent);
  color: #1a1a1f;
}

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

.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
}

.muted {
  color: var(--text);
}

.small {
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

#keyholding .two-col {
  align-items: start;
}

#keyholding .stack-tight {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#keyholding .stack-tight p {
  margin-bottom: 0;
}

#keyholding .cta--tight {
  padding: 10px 12px;
  margin-left: 0;
  margin-right: auto;
  margin-top: 18px;
}

@media (max-width: 900px) {
  #keyholding .cta--tight {
    margin-left: auto;
    margin-right: auto;
  }
}

#keyholding .card--photo {
  align-self: start;
  margin-top: -112px;
  margin-left: 12px;
}

#keyholding .photo-placeholder {
  margin-top: 0;
}

#keyholding figure {
  margin: 0;
}

@media (max-width: 900px) {
  #keyholding .card--photo {
    margin-top: 0;
  }
}

#shibari .two-col > div {
  text-align: center;
}

#shibari .two-col {
  align-items: start;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  align-self: start;
  justify-self: end;
  max-width: 360px;
}

.mini-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f0f18;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}

.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.card--photo {
  padding: 0;
  overflow: hidden;
}

.photo-placeholder {
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.12), rgba(234, 159, 146, 0.32));
  color: #1a1a1f;
  font-weight: 700;
  display: grid;
  place-items: center;
  height: 260px;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.details-layout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.profile-column {
  flex: 0 0 280px;
}

.profile-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.profile-toggle {
  border: 1px solid var(--border);
  background: #0f0f18;
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  width: 100%;
}

.profile-toggle .photo-placeholder {
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
}

.profile-toggle img {
  object-position: center 20%;
}

.profile-toggle span {
  display: block;
  margin-top: 10px;
}

.profile-toggle.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 159, 146, 0.25), 0 18px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.profile-toggle.is-active .photo-placeholder {
  box-shadow: 0 0 0 3px rgba(234, 159, 146, 0.35);
}

.card__body {
  padding: 14px 16px 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card--stacked {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.booking-card {
  cursor: pointer;
}

.booking-card:hover {
  border-color: rgba(234, 159, 146, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.card__img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f0f18;
  height: 200px;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.tile {
  background: #0f0f18;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.tile--media {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 12px;
}

.tile__img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 110px;
}

.tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.measurements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 0;
  flex: 1;
}

.measurements .measure {
  display: none;
}

.measurements .measure.is-visible {
  display: grid;
}

@media (max-width: 900px) {
  .profile-switch {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
  .details-layout {
    flex-direction: column;
  }
  .profile-column {
    width: 100%;
    flex: none;
  }
}

.measure {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: linear-gradient(140deg, rgba(234, 159, 146, 0.08), rgba(234, 159, 146, 0.02));
  border: 1px solid rgba(234, 159, 146, 0.18);
  border-radius: 14px;
  min-height: 96px;
}

@media (max-width: 600px) {
  .measure {
    min-height: 110px;
  }
}

.measure--wide {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .measure--wide {
    grid-column: span 1;
  }
}
@media (max-width: 600px) {
  .measurements {
    grid-template-columns: 1fr;
  }
}
.measure__label {
  color: #a2b3ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0;
}

.measure__value {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  word-break: keep-all;
  white-space: normal;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.14), rgba(234, 159, 146, 0.05));
  border: 1px solid rgba(234, 159, 146, 0.2);
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.tag--person {
  display: none;
}

.tag--person.is-visible {
  display: inline-flex;
}

#prints .mini-gallery {
  justify-self: end;
}

#prints .two-col > div {
  text-align: left;
}

#prints .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

#prints h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 10px;
}

#prints .muted {
  max-width: 520px;
  line-height: 1.55;
}

#prints .two-col {
  align-items: start;
}

#prints .mini-gallery {
  align-self: start;
  justify-self: start;
}

#custom .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

#custom .form-grid .form-field:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 700px) {
  #custom .form-grid {
    grid-template-columns: 1fr;
  }
}

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

.accordion details {
  border: 1px solid rgba(234, 159, 146, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.10), rgba(234, 159, 146, 0.03));
  padding: 12px 14px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 8px 0 0;
  color: var(--text);
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  align-items: start;
  min-width: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: #0f0f18;
  border: 1px solid rgba(234, 159, 146, 0.16);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 159, 146, 0.25);
  background: #111118;
}

.form-field span,
.form-field legend {
  color: #f0e0d8;
  font-weight: 700;
  border-bottom: 1px solid rgba(234, 159, 146, 0.25);
  padding-bottom: 4px;
  display: inline-block;
}

.inline-check span {
  border-bottom: none;
  padding-bottom: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8f8fa3;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  align-items: start;
}

.inline-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.inline-check input {
  width: auto;
  margin-top: 4px;
}

fieldset.form-field {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  align-items: start;
  min-width: 0;
}

fieldset.form-field legend {
  padding: 0 6px;
  color: var(--text);
  font-weight: 700;
}

.radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.radio-row label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  white-space: normal;
  max-width: 100%;
  line-height: 1.4;
}

.radio-row input {
  flex-shrink: 0;
}

.form-note {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
  .contact-form {
    margin: 0 auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-note {
    flex-direction: column;
    align-items: flex-start;
  }
  fieldset.form-field {
    width: 100%;
  }
  .radio-row {
    gap: 8px;
    width: 100%;
  }
  .radio-row label {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.4;
    align-items: center;
  }
}

/* Safari/iOS safety: force single column and stacking to prevent overlap */
@supports (-webkit-touch-callout: none) {
  .form-grid,
  .form-row {
    grid-template-columns: 1fr !important;
  }
  .form-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .radio-row {
    gap: 8px;
    width: 100%;
  }
  .radio-row label {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(234, 159, 146, 0.2);
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.12), rgba(234, 159, 146, 0.04));
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.link-card[href*="onlyfans.com"],
.link-card[href*="fansly.com"] {
  border-color: rgba(234, 159, 146, 0.75);
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.22), rgba(234, 159, 146, 0.06));
  box-shadow: 0 20px 40px rgba(234, 159, 146, 0.25);
}

.easter-active .link-card[href*="onlyfans.com"],
.easter-active .link-card[href*="fansly.com"] {
  border-color: rgba(170, 220, 120, 0.75);
  background: linear-gradient(135deg, rgba(170, 220, 120, 0.22), rgba(170, 220, 120, 0.06));
  box-shadow: 0 20px 40px rgba(170, 220, 120, 0.25);
}

.link-card[href*="clips4sale.com"] {
  border-color: rgba(234, 159, 146, 0.65);
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.18), rgba(234, 159, 146, 0.05));
  box-shadow: 0 18px 36px rgba(234, 159, 146, 0.22);
  position: relative;
}

.easter-active .link-card[href*="clips4sale.com"] {
  border-color: rgba(170, 220, 120, 0.65);
  background: linear-gradient(135deg, rgba(170, 220, 120, 0.18), rgba(170, 220, 120, 0.05));
  box-shadow: 0 18px 36px rgba(170, 220, 120, 0.22);
}

.link-card[href*="onlyfans.com"] h3,
.link-card[href*="fansly.com"] h3 {
  color: #ffd7b8;
}

.easter-active .link-card[href*="onlyfans.com"] h3,
.easter-active .link-card[href*="fansly.com"] h3 {
  color: #e6ffd0;
}

.link-card[href*="clips4sale.com"] h3 {
  color: #ffd0c2;
}

.easter-active .link-card[href*="clips4sale.com"] h3 {
  color: #e6ffd0;
}

.link-card[href*="onlyfans.com"],
.link-card[href*="fansly.com"],
.link-card[href*="clips4sale.com"] {
  position: relative;
  overflow: hidden;
}

.promo-active .link-card[href*="onlyfans.com"]::after,
.promo-active .link-card[href*="fansly.com"]::after,
.promo-active .link-card[href*="clips4sale.com"]::after,
.easter-active .link-card[href*="onlyfans.com"]::after,
.easter-active .link-card[href*="fansly.com"]::after,
.easter-active .link-card[href*="clips4sale.com"]::after {
  content: '💗';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.9rem;
  opacity: 0.75;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255, 120, 180, 0.6));
}

.promo-active .link-card[href*="onlyfans.com"]::before,
.promo-active .link-card[href*="fansly.com"]::before,
.promo-active .link-card[href*="clips4sale.com"]::before,
.easter-active .link-card[href*="onlyfans.com"]::before,
.easter-active .link-card[href*="fansly.com"]::before,
.easter-active .link-card[href*="clips4sale.com"]::before {
  content: '💞';
  position: absolute;
  bottom: 10px;
  right: 18px;
  font-size: 0.85rem;
  opacity: 0.6;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255, 120, 180, 0.5));
}

.easter-active .link-card[href*="onlyfans.com"]::after,
.easter-active .link-card[href*="fansly.com"]::after,
.easter-active .link-card[href*="clips4sale.com"]::after {
  content: '🐰';
  filter: drop-shadow(0 0 8px rgba(160, 255, 170, 0.6));
}

.easter-active .link-card[href*="onlyfans.com"]::before,
.easter-active .link-card[href*="fansly.com"]::before,
.easter-active .link-card[href*="clips4sale.com"]::before {
  content: '';
}

.link-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0f172a;
  display: grid;
  place-items: center;
}

.link-card__icon img {
  width: 26px;
  height: 26px;
  display: block;
}

.link-card__icon svg {
  width: 26px;
  height: 26px;
  fill: #f8fafc;
  display: block;
}
.link-card__body h3 {
  margin: 0;
}

.throne-bubble {
  display: flex;
  justify-content: flex-start;
  margin-top: 14px;
}

.throne-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 18px 18px 22px;
  padding-right: 70px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(234,159,146,0.12), rgba(17,17,24,0.8));
  box-shadow: var(--shadow);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
}

.throne-card p {
  margin: 0 0 8px;
}

.throne-card .throne-highlight {
  background: rgba(234, 159, 146, 0.16);
  border: 1px solid rgba(234, 159, 146, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
}

.throne-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  color: #f7f7fb;
  opacity: 0.35;
  transform: rotate(14deg);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  pointer-events: none;
}

.throne-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: var(--accent);
  border: 1px solid rgba(234, 159, 146, 0.4);
  border-radius: 12px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
}


.collab-highlight {
  color: #ffd7b8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f0f18;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gallery-shell {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0f0f18;
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  gap: 8px;
  padding: 12px;
}

.auto-gallery {
  width: max-content;
  animation: auto-scroll 48s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.gallery-track img {
  height: 240px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
}

/* iOS Safari fallback: disable auto animation and allow manual scroll */
@supports (-webkit-touch-callout: none) {
  .gallery-shell {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .auto-gallery {
    animation: none;
  }
}

@keyframes auto-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tile__label {
  color: #a2b3ff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.tile__value {
  font-weight: 700;
  margin: 0 0 6px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(234, 159, 146, 0.24), rgba(234, 159, 146, 0.08));
  border: 1px solid rgba(234, 159, 146, 0.4);
  border-radius: 18px;
  padding: 20px;
}

.cta--inline {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: transparent;
  border: none;
  padding: 0;
}
.cta--tight {
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
}
.cta--tight .btn {
  white-space: nowrap;
  padding: 8px 10px;
}
@media (max-width: 900px) {
  .cta--tight {
    flex-wrap: wrap;
  }
  .cta--tight .btn {
    width: 100%;
    justify-content: center;
  }
}

.etiquette .bullet-list {
  color: var(--text);
  padding-left: 18px;
  margin: 12px 0 0;
}

.etiquette li {
  margin-bottom: 8px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 26px;
  background: #0b0b0f;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  background: rgba(17, 17, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.cookie-banner__text {
  max-width: 680px;
  padding-right: 96px;
}

.cookie-banner__text .link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-banner__text .link:hover {
  color: #f6f2ff;
}

.cookie-banner__options {
  width: 100%;
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.cookie-option label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-lang-switch {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-lang-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-lang-toggle.is-active {
  background: #f4f4f8;
  color: #0b0b0f;
}

.cookie-remember {
  width: 100%;
}

@media (max-width: 900px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__text {
    padding-right: 0;
  }
  .cookie-lang-switch {
    position: static;
    align-self: flex-end;
    margin-left: auto;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 10px;
  color: var(--text);
}

.footer__links a:hover {
  color: var(--accent);
}

/* Small pill buttons for fallback mail links */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(234, 159, 146, 0.08);
}

.pill-alt {
  background: rgba(234, 159, 146, 0.14);
  color: var(--accent);
  border-color: rgba(234, 159, 146, 0.4);
}

#mailto-options a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 10px;
  flex-shrink: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.05em;
  gap: 8px;
}

.nav-toggle__icon {
  display: block;
  width: 18px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 999px;
}

.nav-toggle__text {
  display: inline-flex;
  align-items: center;
}

/* Desktop nav */
@media (min-width: 901px) {
  .nav {
    display: flex !important;
    position: static;
  }
  .nav-toggle {
    display: none !important;
  }
}

/* Mobile nav (hidden until opened) */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    right: 12px;
    top: 64px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    background: rgba(17,17,24,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 12;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header__inner {
    position: relative;
  }

  /* Hide the standalone Book button on mobile; rely on nav link */
  .header__actions .btn-outline[href="#contact"] {
    display: none;
  }

  .hero {
    padding-top: 160px;
    min-height: 100svh;
    background-position: center top;
  }

  .hero-sale-badge {
    top: -56px;
    right: 0;
    left: auto;
  }

  .hero-sale-badge span {
    font-size: 0.98rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-hearts .heart {
    font-size: 1.05rem;
  }

  .hero-hearts .heart--2 { left: 160px; }
  .hero-hearts .heart--4 { left: 90px; }
  .hero-hearts .heart--5 { right: 40px; }

  .countdown__badge {
    font-size: 0.62rem;
    padding: 0.2rem 0.45rem;
    top: 48px;
  }

  .hero-countdown {
    width: 100%;
    padding: 1rem;
  }

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

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

  .countdown__hint {
    margin-left: 0;
    margin-top: 0.25rem;
    align-self: flex-start;
    flex-basis: 100%;
    display: block;
  }


  .hero-youtube {
    max-width: 100%;
  }

  .addtime-menu {
    left: 0;
    right: auto;
  }

  .cta {
    align-items: flex-start;
  }

  .tile--media {
    grid-template-columns: 1fr;
  }

  .measure--wide {
    grid-column: span 1;
  }

  .form-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .throne-bubble {
    justify-content: center;
  }

  .throne-card {
    max-width: 100%;
  }

  .mini-gallery {
    justify-self: center;
    max-width: 300px;
  }
}
#onlyfans {
  scroll-margin-top: 140px;
}
