/* ═══════════════════════════════════════════════
   VENUS LANDING — GODDESS EDITION
   Ira's photo as full-page fixed background,
   sections = semi-transparent dark panels
═══════════════════════════════════════════════ */

/* ── FIXED BACKGROUND ── */
.vp-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}
.vp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.vp-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 1, 0.42);
}

/* ── GLOBAL PAGE OVERRIDES ── */
.vp-page {
  background: transparent;
  --gold: rgba(200, 196, 190, 0.85);
  --gold-light: rgba(210, 206, 200, 0.65);
}

/* Buttons — dark charcoal instead of gold */
.vp-page .btn--gold {
  background: #0f0e0d;
  color: rgba(250, 247, 242, 0.92);
  border: 1px solid rgba(250, 247, 242, 0.12);
}
.vp-page .btn--gold:hover {
  background: #1e1c1a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px);
}
.vp-page .nav {
  background: transparent;
}
.vp-page .nav.scrolled {
  background: rgba(8, 4, 2, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}
.vp-page .nav__logo,
.vp-page .nav__links a {
  color: rgba(250, 247, 242, 0.9);
}
.vp-page .nav__links a:hover { color: var(--gold-light); }
.vp-page .nav__book {
  background: #0f0e0d;
  border: 1px solid rgba(250, 247, 242, 0.18);
  color: rgba(250, 247, 242, 0.9) !important;
}
.vp-page .nav__language-btn {
  border-color: rgba(250, 247, 242, 0.4);
  color: rgba(250, 247, 242, 0.7);
}
.vp-page .nav__burger span { background: rgba(250, 247, 242, 0.8); }
.vp-page .mobile-menu { background: rgba(6, 3, 1, 0.97); }
.vp-page .mobile-menu a { color: rgba(250, 247, 242, 0.85); }

/* ── SECTION BASE — panel look ── */
.vp-panel {
  position: relative;
  z-index: 1;
}

/* ── EYEBROW / TITLE shared overrides ── */
.vp-page .section__eyebrow {
  color: var(--gold-light);
  opacity: 0.85;
}
.vp-page .section__title {
  color: #faf7f2;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.vp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 80px;
}
.vp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 3, 1, 0.15) 0%,
    rgba(6, 3, 1, 0.6) 100%
  );
  pointer-events: none;
}
.vp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.vp-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.9;
}
.vp-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: #faf7f2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.vp-hero__title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.vp-hero__sub {
  font-size: 1.02rem;
  color: rgba(250, 247, 242, 0.68);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 44px;
}
.vp-hero__cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 16px 44px;
  border-radius: 2px;
}

/* Scroll indicator */
.vp-hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.4), transparent);
  animation: vpScrollLine 1.8s ease-in-out infinite;
}
@keyframes vpScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════
   QUOTE — floating on the photo, minimal panel
══════════════════════════════════════════════ */
.vp-quote {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.vp-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 247, 242, 0.92);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 24px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.vp-quote__text em {
  color: var(--gold-light);
  font-style: normal;
}
.vp-quote__text--sm {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  margin-top: 24px;
  color: rgba(250, 247, 242, 0.65);
  font-style: normal;
}
.vp-quote__author {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}

/* ══════════════════════════════════════════════
   FOR WHOM — dark panel
══════════════════════════════════════════════ */
.vp-for {
  padding: 96px 0;
  position: relative;
  z-index: 1;
  background: rgba(6, 3, 1, 0.72);
  backdrop-filter: blur(2px);
}
.vp-section-title {
  margin-bottom: 12px !important;
  color: #faf7f2 !important;
}
.vp-for__desc {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.6);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 52px;
}
.vp-for__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(250, 247, 242, 0.1);
}
.vp-for__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: rgba(250, 247, 242, 0.03);
  transition: background 0.3s;
}
.vp-for__item:hover { background: rgba(250, 247, 242, 0.04); }
.vp-for__icon {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.vp-for__item p {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   FORMAT TEXT — lighter panel, photo breathes
══════════════════════════════════════════════ */
.vp-format-text {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.vp-format-text__list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  max-width: 700px;
}
.vp-format-text__list li {
  position: relative;
  padding: 24px 0 24px 36px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.75;
  text-shadow: 0 1px 16px rgba(0,0,0,0.6);
}
.vp-format-text__list li:first-child {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}
.vp-format-text__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 24px;
  color: var(--gold);
  font-size: 1rem;
}
.vp-format-text__list strong {
  color: #faf7f2;
  font-weight: 600;
}
.vp-format-text__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 247, 242, 0.88);
  line-height: 1.35;
  margin-top: 56px;
  max-width: 600px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* ══════════════════════════════════════════════
   PRINCIPLES — dark panel
══════════════════════════════════════════════ */
.vp-principles {
  padding: 96px 0;
  position: relative;
  z-index: 1;
  background: rgba(6, 3, 1, 0.72);
  backdrop-filter: blur(2px);
}
.vp-principles__list {
  list-style: none;
  margin-top: 48px;
  max-width: 680px;
}
.vp-principles__list li {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.75);
  transition: color 0.2s;
  cursor: default;
}
.vp-principles__list li:first-child { border-top: 1px solid rgba(250, 247, 242, 0.08); }
.vp-principles__list li:hover { color: rgba(250, 247, 242, 0.95); }
.vp-principles__num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
}

/* ══════════════════════════════════════════════
   FORMAT TABLE — lighter panel
══════════════════════════════════════════════ */
.vp-format {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.vp-format__grid {
  margin-top: 48px;
  max-width: 680px;
}
.vp-format__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.09);
}
.vp-format__item:first-child { border-top: 1px solid rgba(250, 247, 242, 0.09); }
.vp-format__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  width: 110px;
}
.vp-format__val {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.75);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* ══════════════════════════════════════════════
   FORM SECTION — dark card
══════════════════════════════════════════════ */
.vp-form-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: rgba(6, 3, 1, 0.75);
  backdrop-filter: blur(4px);
}
.vp-form-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vp-form-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: #faf7f2;
  margin-bottom: 12px;
  line-height: 1.15;
}
.vp-form-section__desc {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.5);
  max-width: 380px;
  line-height: 1.8;
  margin-bottom: 44px;
}
.vp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 380px;
}
.vp-form__input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(250, 247, 242, 0.15);
  background: rgba(250, 247, 242, 0.05);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.88);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.vp-form__input::placeholder { color: rgba(250, 247, 242, 0.3); }
.vp-form__input:focus {
  border-color: var(--gold);
  background: rgba(250, 247, 242, 0.04);
}
.vp-form__btn {
  width: 100%;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  border-radius: 2px;
  margin-top: 6px;
}

/* Thank you state */
.vp-form-thanks {
  text-align: center;
  padding: 20px 0;
  max-width: 400px;
}
.vp-form-thanks__icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.vp-form-thanks__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: #faf7f2;
  margin-bottom: 12px;
}
.vp-form-thanks__text {
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.vp-page .footer {
  background: rgba(4, 2, 1, 0.92);
  border-top: 1px solid rgba(250, 247, 242, 0.09);
  position: relative;
  z-index: 1;
}
.vp-page .footer__logo,
.vp-page .footer__nav a,
.vp-page .footer__social a,
.vp-page .footer__legal a { color: rgba(250, 247, 242, 0.5); }
.vp-page .footer__logo { color: rgba(250, 247, 242, 0.7); }
.vp-page .footer__nav a:hover,
.vp-page .footer__social a:hover,
.vp-page .footer__legal a:hover { color: var(--gold); }
.vp-page .footer__copy { color: rgba(250, 247, 242, 0.2); }

/* ══════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .vp-bg img { object-position: 65% 15%; }

  .vp-hero {
    padding-bottom: 60px;
    min-height: 92svh;
  }
  .vp-hero__title { font-size: clamp(3.2rem, 16vw, 5rem); }
  .vp-hero__sub   { font-size: 0.88rem; }
  .vp-hero__scroll { right: 20px; bottom: 24px; }

  .vp-quote { padding: 72px 0; }
  .vp-quote__text { font-size: 1.1rem; }

  .vp-for,
  .vp-principles,
  .vp-form-section { padding: 64px 0; }

  .vp-format-text,
  .vp-format { padding: 64px 0; }

  .vp-for__grid { grid-template-columns: 1fr; gap: 1px; }

  .vp-form__input { font-size: 16px; }

  .vp-hero__scroll-line { height: 44px; }
}

@media (max-width: 480px) {
  .vp-hero__title { font-size: clamp(2.8rem, 18vw, 4rem); }
}

/* ── DIARY: hero title smaller for english text ── */
.sd-hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

/* ── DIARY: price block ── */
.sd-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}
.sd-price__old {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.35);
  text-decoration: line-through;
  font-family: var(--font-sans);
}
.sd-price__current {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: #faf7f2;
  letter-spacing: -0.02em;
}
