/* ── FONTS ── */
@font-face {
  font-family: 'Archivo Black';
  src: url('ArchivoBlack-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('The Seasons.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

/* Allow clicks on interactive elements */
a, button, .polaroid, .link-btn, .chip, .katia-dot, .photo-popup-overlay, .photo-popup-card {
  -webkit-user-select: none;
  touch-action: manipulation;
}

:root {
  --pink:       #F4A7C3;
  --pink-deep:  #E8789F;
  --pink-light: #FDE8F0;
  --pink-soft:  #FBD5E5;
  --white:      #FFFFFF;
  --bg:         #FFFFFF;
  --text:       #E8789F;
  --text-soft:  #F4A7C3;
  --gray:       #bbb;
  --font:       'Archivo Black', sans-serif;
  --font-serif: 'The Seasons', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ── SPLASH ── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}

.splash-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.splash.ready {
  opacity: 1;
}

.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(58px, 15vw, 120px);
  font-weight: 400;
  color: var(--pink);
  letter-spacing: -0.03em;
  line-height: 1;
  animation: fadeUp 0.7s 0.2s both ease;
  text-align: center;
}

.splash-tagline {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: clamp(16px, 4.2vw, 24px);
  font-weight: 400;
  color: #ff8cbd;
  text-align: right;
  line-height: 1.3;
  animation: fadeUp 0.7s 0.4s both ease;
}

.splash-tagline em {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.splash-hint {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-soft);
  letter-spacing: 0.1em;
  opacity: 0.6;
  animation: fadeUp 0.7s 0.8s both ease;
}
/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--pink-soft);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--pink); }

.nav-cta {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  background: var(--pink);
  padding: 8px 22px 10px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  transform: rotate(-2deg);
  display: inline-block;
}

.nav-cta:hover {
  background: var(--pink-deep);
  transform: rotate(-3deg) scale(1.06);
}

/* ── HERO ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 28px 60px;
  gap: 0;
}

.hero-arrow-wrap {
  width: 100%;
  max-width: 400px;
  height: 0;
  position: relative;
  flex-shrink: 0;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  right: -10px;
  top: 0;
  width: 320px;
  height: auto;
  pointer-events: none;
}

.about-text {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
}

/* ── LINKS (now inside hero) ── */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  padding: 0 28px 80px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.about-text {
  font-size: clamp(17px, 4.2vw, 32px);
  line-height: 1.5;
  text-align: center;
}

.about-seasons {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #ff8cbd;
}

.about-archivo {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  color: var(--pink);
}

.about-text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink-soft);
}

/* ── LINKS ── */
.links {
  width: 100%;
  max-width: 400px;
  margin: 180px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 60px;
}

.about-arrow-row { display: none; }
.hero { position: relative; }

.links-arrow {
  width: min(600px, 95vw);
  height: auto;
  pointer-events: none;
}

.links-divider {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: #ff8cbd;
  text-align: center;
  margin-top: 8px;
  margin-bottom: -4px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--pink-soft);
  border-radius: 100px;
  padding: 16px 28px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--pink-soft);
  border-radius: 100px;
  padding: 16px 28px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.link-btn:hover {
  background: var(--pink-light);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(244,167,195,0.2);
}

.link-btn-img-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.link-btn-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin: -12px 0 0 -12px;
}

.link-btn-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--pink-deep);
  letter-spacing: -0.01em;
}

.link-btn--nunito .link-btn-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* ── KATIA JOURNAL ── */
.katia {
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: visible;
}

.katia-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 28px 20px;
  width: 100%;
  cursor: grab;
}

@media (min-width: 900px) {
  .katia {
    overflow: visible;
    align-items: stretch;
    padding: 60px 0 80px;
  }

  .katia-slider {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    overflow: visible !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: 28px !important;
    padding: 20px 40px 40px !important;
    width: 100% !important;
    cursor: default !important;
  }

  .katia-journal {
    min-width: 0 !important;
    width: 100% !important;
    flex-shrink: 1 !important;
    scroll-snap-align: unset !important;
  }

  .katia-dots { display: none !important; }
}

.katia-slider::-webkit-scrollbar { display: none; }
.katia-slider:active { cursor: grabbing; }

.katia-journal {
  position: relative;
  background: #fffaf8;
  border: 1px solid #f0d5e2;
  border-radius: 4px 16px 16px 4px;
  padding: 40px 32px 120px;
  min-width: min(340px, 80vw);
  width: min(340px, 80vw);
  box-shadow: -6px 0 0 0 var(--pink-soft), 4px 8px 32px rgba(244,167,195,0.12);
  overflow: hidden;
  scroll-snap-align: center;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .katia-journal {
    min-width: 0 !important;
    width: 100% !important;
    flex-shrink: 1 !important;
    scroll-snap-align: unset !important;
  }
  .katia-slider {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    overflow: visible !important;
    overflow-x: visible !important;
    gap: 28px !important;
    padding: 20px 40px 40px !important;
    width: 100% !important;
  }
  .katia-dots { display: none !important; }
}

.katia-journal--photo {
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.polaroid-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.polaroid {
  background: #fff;
  padding: 6px 6px 22px;
  box-shadow: 2px 4px 16px rgba(244,167,195,0.25);
  position: absolute;
}

.polaroid--1 {
  top: 20px;
  left: 10px;
  transform: rotate(-4deg);
  z-index: 2;
  width: 180px;
}

.polaroid--2 {
  bottom: 20px;
  right: 10px;
  transform: rotate(3deg);
  z-index: 1;
  width: 180px;
}

.polaroid-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: var(--pink-deep);
  text-align: center;
  margin-top: 6px;
  line-height: 1.4;
  padding: 0 2px;
}

.katia-journal--blank {
  display: flex;
  align-items: center;
  justify-content: center;
}

.katia-blank-text {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #ff8cbd;
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Dots */
.katia-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.katia-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-soft);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.katia-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}

/* Ruled lines */
.katia-journal-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 31px,
    #fde8f0 31px,
    #fde8f0 32px
  );
  background-position: 0 56px;
  pointer-events: none;
  opacity: 0.5;
}

/* Red margin line */
.katia-journal::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 52px;
  width: 1px;
  background: rgba(244,167,195,0.4);
}

.katia-date,
.katia-entry-title,
.katia-entry-body {
  position: relative;
  z-index: 1;
}

.katia-entry-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 7vw, 40px);
  color: var(--pink);
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.katia-entry-body {
  font-family: 'The Seasons', Georgia, serif;
  font-style: normal;
  font-size: 16px;
  line-height: 2.2;
  color: var(--pink-deep);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.katia-girl {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transform: scaleX(-1);
}

.katia-signature {
  position: absolute;
  bottom: -80px;
  left: 100px;
  z-index: 2;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 80px 28px;
  max-width: 420px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--pink-soft);
  margin-bottom: 28px;
  text-align: center;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-pin {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 110px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.how-note {
  position: relative;
  border-radius: 4px;
  padding: 56px 24px 28px;
  box-shadow: 3px 4px 16px rgba(244,167,195,0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease;
  overflow: visible;
}

.how-note-num {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 13px;
  color: #ff8cbd;
  letter-spacing: 0.1em;
}

.how-note-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: var(--pink-deep);
  line-height: 1.1;
}

.how-note-body {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--pink);
}

.how-item { display: none; }
.how-title { display: none; }
.how-body  { display: none; }

/* ── JOIN ── */
.join {
  padding: 80px 28px 100px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.join-title {
  font-size: clamp(52px, 14vw, 88px);
  font-weight: 900;
  color: var(--pink);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.join-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.75em;
  color: var(--pink-soft);
  display: block;
}

.join-sub {
  font-size: 14px;
  color: var(--pink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 400;
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  color: var(--pink);
  letter-spacing: 0.04em;
}

.form-optional {
  font-weight: 400;
  color: var(--pink-soft);
}

.form-input {
  background: var(--white);
  border: 1.5px solid var(--pink-soft);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--pink-deep);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(244,167,195,0.15);
}

.form-input::placeholder { color: var(--pink-soft); opacity: 0.6; }

.form-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
  border-radius: 14px;
}

.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--white);
  border: 1.5px solid var(--pink-soft);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  cursor: pointer;
  transition: all 0.18s;
}

.chip:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}

.chip.selected {
  background: var(--pink-light);
  border-color: var(--pink);
  color: var(--pink-deep);
}

.form-submit {
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 16px 40px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: center;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--pink-deep);
  transform: scale(1.03);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 0;
}

.form-success.visible { display: flex; }

.success-icon { font-size: 52px; }

.success-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--pink);
}

.success-body {
  font-size: 15px;
  color: var(--pink-soft);
  line-height: 1.7;
  max-width: 320px;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--pink-light);
  padding: 48px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  border-top: 1px solid var(--pink-soft);
}

.footer-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: var(--pink);
  letter-spacing: -0.02em;
}

.footer-tag {
  font-size: 14px;
  color: var(--pink-deep);
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--pink-soft);
  width: 100%;
  justify-content: center;
}

.footer-copy {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.04em;
}

.footer-managed {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  color: rgba(0,0,0,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-managed a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transition: border-color 0.2s;
}

.footer-managed a:hover { border-color: #000; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo { animation: fadeUp 0.6s 0.1s both ease; }
.hero-sub  { animation: fadeUp 0.6s 0.25s both ease; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TABLET+ ── */
@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
    gap: 16px;
  }
  .form-row .form-field { flex: 1; }

  .katia {
    flex-direction: row;
    text-align: left;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  .katia-text { text-align: left; }
}

.link-btn-icon {
  font-size: 22px;
  flex-shrink: 0;
  color: var(--pink);
  display: flex;
  align-items: center;
}

.link-btn-img-wrap--rhode {
  width: 36px;
  height: 36px;
  overflow: hidden;
}

.link-btn-img--rhode {
  width: 80px;
  height: 80px;
  transform: rotate(-25deg);
  margin: -18px 0 0 -18px;
}

.katia-bold {
  font-family: 'Archivo Black', sans-serif;
  font-style: normal;
}

.how-note--1 { background: #fff0f5; transform: rotate(-4deg); }
.how-note--2 { background: #fde8f0; transform: rotate(3deg); }
.how-note--3 { background: #fbd5e5; transform: rotate(-2.5deg); }
.how-note:hover { transform: rotate(0deg) scale(1.02); }
.how-list { padding-top: 48px; }

/* ── FORM STEPS ── */
.form-step {
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.4s ease both;
}

.form-step.active {
  display: flex;
}

.form-step-label {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #ff8cbd;
  letter-spacing: 0.08em;
}

.form-next {
  align-self: flex-end;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 12px 28px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.form-next:hover {
  background: var(--pink-deep);
  transform: scale(1.04);
}

/* ── WOBBLY FORM BORDER ── */
.join-wobbly {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  transform: rotate(-1.5deg);
  overflow: hidden;
  border-radius: 20px;
}

.wobbly-svg {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  pointer-events: none;
  z-index: 0;
}

.join-wobbly .form {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
}

.chip-level {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  color: var(--pink);
  margin-left: 4px;
  opacity: 0.7;
}

.chip.selected .chip-level {
  color: var(--pink-deep);
  opacity: 1;
}

.katia-girl2 {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  z-index: 0;
}

.katia-date {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #ff8cbd;
  margin-bottom: 20px;
  padding-left: 20px;
}

/* ── PHOTO POPUP ── */
.photo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(253, 232, 240, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: pointer;
}

.photo-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.photo-popup-scene {
  perspective: 1000px;
  cursor: default;
}

.photo-popup-card {
  position: relative;
  width: min(300px, 82vw);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}

.photo-popup-card.flipped {
  transform: rotateY(180deg);
}

.photo-popup-front,
.photo-popup-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #fff;
  padding: 12px 12px 32px;
  box-shadow: 0 16px 60px rgba(232,120,159,0.25);
}

.photo-popup-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.photo-popup-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.photo-popup-caption {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--pink-deep);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
  padding: 0 4px;
}

.photo-popup-flip-hint {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  color: var(--pink-deep);
  text-align: center;
  margin-top: 6px;
}

.photo-popup-back-text {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--pink-deep);
  text-align: center;
  line-height: 1.8;
}

.polaroid { cursor: pointer; }
.polaroid:hover { filter: brightness(0.97); }

/* ── POLAROID HINTS ── */
.polaroid-hint {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.polaroid-hint--1 {
  top: -28px;
  left: -10px;
  flex-direction: row;
  transform: rotate(3deg);
}

.polaroid-hint--2 {
  top: -28px;
  right: -10px;
  left: auto;
  bottom: auto;
  flex-direction: row;
  transform: rotate(-2deg);
}

.polaroid-hint-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  color: var(--pink);
  letter-spacing: 0.08em;
}

.polaroid-hint-arrow {
  font-size: 16px;
  color: var(--pink-deep);
  line-height: 1;
}

/* Rotate cursor on popup image */
.photo-popup-img {
  cursor: pointer;
}

/* ── Book 3 how list ── */
.katia-journal--blank {
  display: flex;
  flex-direction: column;
  padding: 40px 28px 32px;
}

.katia-how-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.katia-how-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.katia-how-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.katia-how-text {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--pink-deep);
}

.katia-how-icon-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.katia-how-icon-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

/* ── INDIVIDUAL SESSIONS ── */
.indiv {
  padding: 80px 28px;
  border-top: 1px solid var(--border);
}

.indiv-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.indiv-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indiv-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(44px, 12vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--pink);
}

.indiv-title em {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  color: #ff8cbd;
  display: block;
}

.indiv-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--pink-deep);
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: inline-block;
  background: var(--pink-light);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--pink-soft);
}

.indiv-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.indiv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.indiv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 7px;
}

.indiv-text {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--pink-deep);
}

.indiv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-deep);
  color: var(--white);
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 100px;
  margin-top: 8px;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 3px 3px 0 var(--pink-soft);
}

.indiv-btn:hover {
  background: var(--pink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--pink-soft);
}

@media (min-width: 700px) {
  .indiv-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .indiv-left { flex: 0 0 200px; }
  .indiv-right { flex: 1; }
}

.indiv-note {
  background: #fff0f5;
  border: 1.5px solid var(--pink-soft);
  border-radius: 4px 16px 16px 4px;
  box-shadow: -5px 0 0 0 var(--pink), 3px 4px 16px rgba(244,167,195,0.15);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: rotate(0.8deg);
  width: 100%;
}

input, textarea {
  user-select: text;
  -webkit-user-select: text;
}

/* ── INDIVIDUAL SESSION POPUP ── */
.indiv-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(253,232,240,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 24px;
}

.indiv-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.indiv-popup {
  background: var(--white);
  border: 1.5px solid var(--pink-soft);
  border-radius: 20px;
  padding: 40px 28px 32px;
  width: 100%;
  max-width: 440px;
  max-height: 90svh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 16px 60px rgba(232,120,159,0.2);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.indiv-popup-overlay.open .indiv-popup {
  transform: translateY(0);
}

.indiv-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--pink-soft);
  cursor: pointer;
  transition: color 0.2s;
}

.indiv-popup-close:hover { color: var(--pink-deep); }

.indiv-popup-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--pink);
  margin-bottom: 8px;
  overflow: hidden;
}

.indiv-popup-title em {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.75em;
  color: #ff8cbd;
  display: block;
}

.indiv-popup {
  overflow-x: hidden;
}

/* ── DESKTOP: 3 books side by side ── */
@media (min-width: 900px) {
  .katia {
    overflow: visible;
    padding: 60px 0 80px;
  }

  .katia-slider {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    overflow: visible !important;
    overflow-x: visible !important;
    gap: 28px !important;
    padding: 20px 40px 40px !important;
    width: 100% !important;
    cursor: default !important;
    -webkit-overflow-scrolling: unset !important;
    scroll-snap-type: unset !important;
  }

  .katia-journal {
    min-width: 0 !important;
    width: 100% !important;
    scroll-snap-align: unset !important;
    flex-shrink: unset !important;
  }

  .katia-dots { display: none !important; }
}

/* ── Image quality improvements ── */
.polaroid-img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: contrast(1.05) saturate(1.1);
}

.photo-popup-img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: contrast(1.05) saturate(1.1);
}

/* ── PRICE CARDS ── */
.price-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 20px;
}

.price-wobbly {
  flex: 1;
  position: relative;
  padding: 28px 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-wobbly--featured {
  transform: rotate(-1deg);
}

.price-wobbly .wobbly-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.price-badge {
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--pink-deep);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.price-label {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--pink);
  position: relative;
  z-index: 1;
}

.price-amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: var(--pink-deep);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.price-desc {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 16px 24px;
  text-align: center;
  overflow: hidden;
}

.form-success.visible { display: flex; }

.success-girl {
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 0;
  margin: -32px -24px 0;
}

.form-success .success-title {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--pink-deep);
  text-align: center;
  line-height: 1.6;
}

.price-pin {
  position: absolute;
  width: 90px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  pointer-events: none;
}

.price-pin--left {
  top: 0px;
  left: -8px;
}

.price-pin--right {
  top: 0px;
  right: -8px;
}

/* ── Katia progress bar ── */
.katia-progress {
  width: min(340px, 80vw);
  height: 3px;
  background: var(--pink-soft);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
}

.katia-progress-bar {
  height: 100%;
  width: 33%;
  background: var(--pink-deep);
  border-radius: 100px;
  transition: width 0.2s ease;
}

@media (min-width: 900px) {
  .katia-progress { display: none; }
}

/* ── Contact preference buttons ── */
.contact-pref-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-pref-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: var(--pink-deep);
  cursor: pointer;
  transition: all 0.18s;
}

.contact-pref-btn:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}

.contact-pref-btn.selected {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--white);
}

.contact-pref-input {
  margin-top: 10px;
}

/* ── Nice girl image quality ── */
.success-girl {
  filter: contrast(1.1) saturate(1.15) brightness(1.05);
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

/* ── SCHEDULE ── */
.schedule-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--pink-light);
}

.schedule-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 400;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 48px;
}

.schedule-title em {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  color: var(--pink-deep);
}

.schedule-days {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto 32px;
}

.schedule-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border-radius: 100px;
  min-width: 64px;
  transition: transform 0.2s;
}

.schedule-day--on {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(244,167,195,0.25);
}

.schedule-day--off {
  background: rgba(255,255,255,0.4);
}

.schedule-day--on:hover { transform: translateY(-4px); }

.schedule-day-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: 0.05em;
}

.schedule-day--off .schedule-day-name {
  color: #ccc;
}

.schedule-day-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.schedule-day-dot--on {
  background: var(--pink);
  box-shadow: 0 0 8px rgba(244,167,195,0.6);
}

.schedule-day-dot--off {
  background: #ddd;
}

.schedule-day-status {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 12px;
  font-style: italic;
  color: var(--pink-deep);
}

.schedule-day--off .schedule-day-status {
  color: #ccc;
}

.schedule-note {
  font-family: 'The Seasons', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--pink-deep);
  opacity: 1;
  margin-top: 4px;
}

.schedule-note--indiv {
  font-size: 14px;
  color: var(--pink);
  margin-top: 8px;
}
