:root {
  --bg: #0b0d10;
  --ink: #f2f2f2;
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.5);
  --accent: #d98aa0;
  --accent2: #f0b0c0;
  --teal: rgba(120, 240, 255, 0.2);
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 24px);
  }
}

.serif {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
}

.small {
  font-size: 0.813rem;
  color: var(--muted2);
}

.pink {
  color: var(--accent2);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn--pink {
  background: linear-gradient(
    145deg,
    rgba(217, 138, 160, 0.95),
    rgba(200, 110, 140, 0.95)
  );
  color: #111;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

/* ===== Navigation (fixed with blur) ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.2);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
}

.brand span {
  color: var(--accent2);
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.nav__links a {
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--accent2);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}

/* ===== Hero Section (компактный) ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  filter: brightness(0.6);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 5rem;
  margin-top: 80px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-top: 80px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.4rem);
  max-width: 550px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero__actions {
  margin-bottom: 2rem;
}

.hero__footer {
  display: flex;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-top: 185px;
}

/* ===== Section Divider ===== */
.dividerSpace {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: 0.15;
}

/* ===== About Section ===== */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about {
  background: #0a0c0f;
}

/* Фон с лепестками (ваш PNG) */
.about__petals {
  position: absolute;
  inset: 0;
  background: url("assets/sakura-petals.png") repeat;
  font-size: 200px;

  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.about__title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.about__title h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.1;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.about__desc {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Сетка городов (3 колонки) */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.city {
  display: flex;
  flex-direction: column;
}

.city__name {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.2rem;
  margin-top: 3.5rem;
  margin-left: 1rem;
}

.city__days {
  color: var(--accent2);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  margin-left: 1.5rem;
}

.city__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 260px;
  margin-top: 0.5rem;
}

/* Фотографии Osaka */
.osaka-photos {
  position: relative;
  height: 150px;
  width: 240px;
  margin-bottom: 0.5rem;
}

.osaka-photos .pic {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.osaka-photos .pic:first-child {
  left: 0;
  top: 0;
}

.osaka-photos .pic:last-child {
  left: 150px;
  top: 50px;
  width: 200px;
  height: 200px;
}

/* Фотографии Kyoto */
.kyoto-photos {
  position: relative;
  height: 150px;
  width: 240px;
  margin-bottom: 0.5rem;
  align-self: flex-end;
  margin-top: 8rem;
}

.kyoto-photos .pic {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kyoto-photos .pic:first-child {
  right: 150px;
  top: 40px;
  width: 200px;
  height: 200px;
}

.kyoto-photos .pic:last-child {
  right: 0;
  top: 0;
}

/* Катана (увеличена) */
.katana {
  width: 600px;
  margin: 0rem auto 0;
  opacity: 0.9;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* Tokyo row */
.tokyo-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

.tokyo-image {
  flex: 0 0 280px;
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tokyo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tokyo-info h3 {
  font-size: 1.8rem;
  line-height: 1;
}

.tokyo-info .city__days {
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

.tokyo-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 350px;
  line-height: 1.5;
}

/* Кнопка About справа (на десктопе) */

@media (max-width: 1100px) {
  .about__cta {
    justify-content: center;
  }
}

/* ===== Why Section ===== */
.why {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)),
    url("assets/why-bg.jpg") center/cover fixed;
  padding: 4rem 0;
}

.why__title {
  text-align: center;
  margin-bottom: 2rem;
}

.why__title h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}

.feat {
  background: rgba(20, 25, 30, 0.6);
  backdrop-filter: blur(4px);
  border: 1px dashed rgba(255, 200, 210, 0.2);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feat h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feat h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), transparent);
  margin-top: 0.4rem;
}

.feat p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ===== Price Section ===== */
.priceWrap {
  margin-top: 3rem;
}

.priceTitle {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 2rem;
}

.priceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.scrollCard {
  background: rgba(245, 239, 230, 0.9);
  color: #2a241e;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s;
}

.scrollCard:hover {
  transform: translateY(-5px);
}

.plan {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.from {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #4a3f38;
}

.bullets {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: #3e352e;
  font-size: 0.9rem;
}

.bullets li {
  margin-bottom: 0.4rem;
}

.note {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.7;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  padding-top: 0.8rem;
  font-style: italic;
}

.why__cta {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

@media (max-width: 1050px) {
  .priceGrid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .why__cta {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}

/* Адаптивность для about */
@media (max-width: 1100px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .city {
    align-items: center;
  }
  .osaka-photos,
  .kyoto-photos {
    margin: 0 auto;
  }
  .tokyo-row {
    flex-direction: column;
    text-align: center;
  }
  .katana {
    display: none; /* на мобильных катану убираем, чтобы не мешала */
  }
}

@media (max-width: 520px) {
  .osaka-photos .pic,
  .kyoto-photos .pic {
    width: 110px;
    height: 110px;
  }
  .osaka-photos .pic:last-child {
    left: 70px;
    width: 130px;
    height: 130px;
  }
  .kyoto-photos .pic:first-child {
    right: 70px;
    width: 130px;
    height: 130px;
  }
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: start;
  margin-top: 60px;
}

/* контейнер под png */
.price-png {
  max-width: 240px; /* регулируешь размер */
  width: 100%;
  transition: 0.2s ease;
}

.price-png img {
  width: 100%;
  height: auto; /* ВАЖНО — чтобы не растягивался */
  display: block;
}

/* лёгкий hover */
.price-png:hover {
  transform: translateY(-6px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 265px 1fr; /* средняя колонка 300px */
  gap: 0rem;
  align-items: start;
  position: relative;
  z-index: 2;
  margin-bottom: 0rem;
}

.katana {
  width: 100%; /* занимает всю ширину колонки (300px) */
  margin: 0rem auto 0;
  opacity: 0.5;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* =========================
   CONTACT (ADD-ON, SAFE)
   paste to the END of styles.css
   ========================= */

.contact {
  background: #0a0c0f; /* как about */
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}

.contact__container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding-inline: 0;
}

@media (max-width: 700px) {
  .contact__container {
    width: calc(100% - 24px);
  }
}

.contact__head {
  text-align: left;
  margin-bottom: 1.6rem;
}

.contact__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 0.35rem;
}

.contact__subtitle {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 1.4rem;
  align-items: start;
  margin-top: 1.2rem;
}

@media (max-width: 980px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* cards */
.contact__card,
.contact__form {
  border-radius: 18px;
  background: rgba(20, 25, 30, 0.55);
  border: 1px solid rgba(255, 200, 210, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.contact__card {
  padding: 1.25rem 1.2rem;
}
.contact__form {
  padding: 1.25rem 1.2rem;
}

.contact__cardTitle {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.75rem;
}

.contact__label {
  display: inline-block;
  min-width: 84px;
  color: rgba(255, 255, 255, 0.6);
}

.contact__card a {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 138, 160, 0.35);
  padding-bottom: 1px;
}
.contact__card a:hover {
  border-bottom-color: rgba(240, 176, 192, 0.9);
}

.contact__note {
  margin-top: 0.75rem;
  padding: 0.9rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(240, 176, 192, 0.18);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* fields */
.field {
  margin-bottom: 0.95rem;
}

.field--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 980px) {
  .field--two {
    grid-template-columns: 1fr;
  }
}

.field__label {
  display: block;
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.25px;
}

.field__input {
  width: 100%;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.field__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field__input:focus {
  border-color: rgba(240, 176, 192, 0.55);
  box-shadow: 0 0 0 4px rgba(240, 176, 192, 0.1);
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
}

.field__error {
  min-height: 16px;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 120, 140, 0.95);
}

/* invalid state for JS */
.field__input.is-invalid {
  border-color: rgba(255, 120, 140, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 120, 140, 0.12);
}

/* spinner inside your existing .btn */
.btn__spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.35);
  border-top-color: rgba(0, 0, 0, 0);
  display: none;
  animation: contactSpin 0.8s linear infinite;
}
@keyframes contactSpin {
  to {
    transform: rotate(360deg);
  }
}

.contact__fineprint {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

/* toast (you already have #toast in HTML) */
.toast {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(10px);
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}
.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* reveal helpers (for your .reveal elements) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
