:root {
  --pink-light: #ffccd3;
  --pink-deep: #832734;
  --pink-mid: #ba6a75;
  --pink-soft: #fea6a6;
  --pink-rose: #f9a5b1;
  --pink-bg: #f8d7dc;
  --white: #fff;
  --gray-light: #f5f5f5;
  --gray: #777;
  --dark: #1e1e1e;
  --text: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 44px;
  background: transparent;
}
.nav-logo-pill {
  background: rgba(210, 210, 210, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  width: 52px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  color: #666;
  cursor: pointer;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(225, 225, 225, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.nav-pill {
  padding: 10px 28px;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  color: #333;
  background: transparent;
  white-space: nowrap;
}
.nav-pill:hover {
  background: rgba(255, 255, 255, 0.9);
}
.nav-pill.active {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
}
.nav-lang {
  background: var(--pink-deep);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.82rem;
  cursor: pointer;
  user-select: none;
}

body {
  background: #ffffff;
}
#hero {
  position: relative;
  margin: 14px 14px 0;
  border-radius: 26px;
  overflow: hidden;
  height: calc(100vh - 28px);
  min-height: 580px;
  max-height: 820px;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero-watermark {
  position: absolute;
  top: 22px;
  right: 310px;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.13);
  letter-spacing: 4px;
  z-index: 1;
  pointer-events: none;
  font-style: italic;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 44px 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero-text-top {
  position: absolute;
  top: 100px;
  left: 44px;
  z-index: 2;
  max-width: 740px;
}

.hero-left {
  flex: 1;
  max-width: 540px;
}
.hero-tag-pill {
  display: inline-block;
  background: white;
  color: #f9a5b1;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: 4.9rem;
  font-weight: 900;
  line-height: 1.05;
  color: #832734;
  margin-bottom: 0;
}
.hero-brand {
  display: inline-block;
  background: white;
  color: #f9a5b1;
  font-size: 3.8rem;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-top: 12px;
}

.hero-card-bottom {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 20px 22px;
  max-width: 820px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: var(--dark);
  position: relative;
}
.hero-card-bottom:hover {
  transform: translateY(-3px);
}
.hero-card-thumb {
  width: 90px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #832734;
  margin-bottom: 6px;
}
.hero-card-text p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
}
.hero-arrow-circle {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 29px;
  height: 29px;
}

.hero-right {
  flex-shrink: 0;
  width: 300px;
  align-self: flex-start;
  margin-top: 70px;
}
.hero-right-card {
  background: rgba(100, 18, 30, 0.68);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 24px 22px 20px;
  color: white;
  position: relative;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: transform 0.2s;
}
.hero-right-card:hover {
  transform: translateY(-3px);
}
.hero-right-card .rc-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  color: white;
}
.hero-right-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
  padding-right: 36px;
}
.hero-right-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  opacity: 0.88;
  margin-bottom: 20px;
}

.hero-right-img {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(200, 150, 155, 0.35);
}
.hero-right-img img {
  width: 80%;
  height: 92%;
  object-fit: contain;
}

#what {
  background: #ffccd3;
  margin-top: 15px;
  padding: 80px 60px;
  text-align: center;
}
.section-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #832734;
  margin-bottom: 28px;
}
.section-title .hl {
  color: #f9a5b1;
  background: white;
  padding: 2px 14px;
  border-radius: 10px;
  display: inline-block;
}
.what-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #832734;
  text-align: left;
}
.what-text p {
  margin-bottom: 8px;
}
.what-text strong {
  color: #832734;
}

#advantages {
  background: #fff;
  padding: 80px 100px 0;
}
.adv-title {
  text-align: center;
  font-size: 2.9rem;
  font-weight: 900;
  color: #832734;
  margin-bottom: 70px;
}
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 0 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.adv-col {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.adv-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #f9a5b1;
  line-height: 1.2;
  margin-bottom: 12px;
}
.adv-col:first-child .adv-item p {
  font-size: 1.1rem;
  color: #832734;
  line-height: 1.7;
  max-width: 100%;
}
.adv-col:last-child .adv-item p {
  font-size: 1.1rem;
  color: #832734;
  line-height: 1.7;
  max-width: 100%;
}
.adv-center-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.adv-center-img img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
}

#gallery {
  background: #f9a5b1;
  padding: 44px 60px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  width: 100%;
  box-sizing: border-box;
}
.gal-img {
  flex: 1;
  height: 350px;
  border-radius: 22px;
  overflow: hidden;
}
.gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gal-img:hover img {
  transform: scale(1.05);
}

#procedure {
  background: #fff;
  padding: 80px 100px 90px;
}
.proc-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
}
.proc-arr-outside {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 16px;
  transition: opacity 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-arr-outside img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.proc-arr-outside:hover {
  opacity: 0.65;
}
.proc-video-card {
  flex-shrink: 0;
  width: 420px;
  height: 620px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}

.proc-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.proc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.2s,
    opacity 0.2s;
  pointer-events: auto;
}
.proc-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}
.proc-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.proc-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.proc-dots-row {
  position: absolute;
  z-index: 5;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.proc-dot-el {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.proc-dot-el.active {
  background: white;
}
.proc-right {
  flex: 1;
  padding: 0 0 0 20px;
}
.proc-title-badge {
  display: inline-block;
  background: #f9a5b1;
  color: white;
  font-size: 2.7rem;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 18px;
  margin-bottom: 30px;
  line-height: 1.2;
}
.proc-desc {
  font-size: 1.1rem;
  font-weight: 700;
  color: #832734;
  line-height: 1.6;
  margin-bottom: 18px;
}
.proc-list {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 22px;
}
.proc-list li {
  font-size: 1.1rem;
  color: #ba6a75;
  line-height: 1.7;
  margin-bottom: 5px;
  font-weight: 700;
}
.proc-note {
  font-size: 1.1rem;
  color: #832734;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 700;
}
.btn-pk {
  display: inline-block;
  background: var(--pink-rose);
  color: white;
  padding: 16px 44px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-pk:hover {
  background: var(--pink-mid);
}

#types {
  background: #fff;
  padding: 80px 100px 90px;
}
#types .section-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #832734;
  text-align: center;
  margin-bottom: 50px;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.type-card {
  background: #f2f2f2;
  border-radius: 20px;
  padding: 39px 30px 29px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #efefef;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.type-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.tc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tc-body h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #832734;
  margin-bottom: 12px;
  line-height: 1.3;
}
.tc-body p {
  font-size: 1.1rem;
  color: #ba6a75;
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.btn-ol {
  display: inline-block;
  background: #f9a5b1;
  color: white;
  border: none;
  padding: 10px 26px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  align-self: flex-start;
}
.btn-ol:hover {
  background: #ffcad2;
  color: #832734;
}

#photo-banner {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
}
#photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

#prices {
  background: #ffccd3;
  padding: 60px 80px 70px;
  position: relative;
  overflow: hidden;
}

#prices .section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #832734;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}
#prices .section-title .hl {
  color: #f9a5b1;
  background: white;
  padding: 2px 14px;
  font-weight: 900;
}
.prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pc-card {
  background: white;
  border-radius: 22px;
  padding: 26px 28px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.pc-card.pc-package {
  background: #fea6a6;
}
.pc-tag {
  display: inline-block;
  background: #ffccd3;
  color: #832734;
  font-size: 0.99rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  align-self: flex-start;
  letter-spacing: 0.2px;
}
.pc-card.pc-package .pc-tag {
  background: rgba(255, 255, 255, 0.35);
  color: #832734;
}
.pc-dur {
  font-size: 2.4rem;
  font-weight: 900;
  color: #832734;
  margin-bottom: 6px;
  line-height: 1;
}
.pc-card.pc-package .pc-dur {
  color: #832734;
}
.pc-desc {
  font-size: 1.1rem;
  color: #ba6a75;
  line-height: 1.5;
  flex: 1;
  padding-bottom: 0;
  margin-bottom: 18px;
  font-weight: 800;
}
.pc-card.pc-package .pc-desc {
  color: #ba6a75;
}
.pc-economy {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  margin-top: auto;
  text-align: right;
}
.pc-card:not(.pc-package) .pc-economy {
  display: none;
}
.pc-price-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: auto;
  align-self: flex-end;
}
.pc-amt {
  background: #ffccd3;
  border-radius: 12px;
  padding: 10px 20px 8px;
  font-size: 2rem;
  font-weight: 900;
  color: #832734;
  line-height: 1;
  margin-bottom: 4px;
  display: inline-block;
  font-weight: 800;
}
.pc-card.pc-package .pc-amt {
  background: #ffccd3;
  color: #832734;
}
.pc-per {
  font-size: 1.1rem;
  color: #ba6a75;
  font-weight: 600;
  text-align: right;
  padding-right: 4px;
  font-weight: 800;
}
.pc-card.pc-package .pc-per {
  color: #ba6a75;
}

#contacts {
  background: #f4f4f4;
  padding: 70px 100px 80px;
}
#contacts .section-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #832734;
  text-align: center;
  margin-bottom: 44px;
}
.contacts-wrap {
  display: flex;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  min-height: 480px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}
.ci-card {
  flex: 0 0 450px;
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
}
.ci-label {
  font-size: 1.4rem;
  font-weight: 800;
  color: #832734;
  margin-bottom: 4px;
}
.ci-value {
  font-size: 1.1rem;
  color: #ba6a75;
  font-weight: 700;
  margin-bottom: 26px;
}
.ci-phone {
  font-size: 2rem;
  font-weight: 900;
  color: #832734;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  line-height: 1.1;
}
.ci-phone-note {
  font-size: 1rem;
  color: #ba6a75;
  margin-bottom: 28px;
  line-height: 1.4;
  font-weight: 700;
}
.ci-label.sched-label {
  font-size: 1.4rem;
  font-weight: 800;
  color: #832734;
  margin-bottom: 14px;
}
.ci-schedule {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #ffccd3;
}
.ci-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  font-size: 0.92rem;
  border-bottom: 2px solid white;
}
.ci-row:last-child {
  border-bottom: none;
}
.ci-day {
  font-weight: 700;
  color: #ba6a75;
}
.ci-time {
  font-weight: 700;
  color: #832734;
}
.ci-time.holiday {
  color: var(--pink-deep);
  font-weight: 900;
}
.map-box {
  flex: 1;
  min-height: 480px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#faq {
  background: #fff;
  padding: 90px 100px 100px;
}
#faq .section-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #832734;
  text-align: center;
  margin-bottom: 16px;
}
.faq-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #ba6a75;
  margin-bottom: 56px;
}
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fi {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  background: white;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.fi.open {
  border-color: var(--pink-light);
  box-shadow: 0 6px 32px rgba(249, 165, 177, 0.18);
}
.fq {
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
  color: #832734;
  transition: background 0.2s;
  gap: 20px;
}
.fq:hover {
  background: #fff7f8;
}
.fi.open .fq {
  background: #fff7f8;
}
.fi-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.3s,
    background 0.2s;
}
.fi.open .fi-icon {
  transform: rotate(45deg);
  background: var(--pink-rose);
  color: white;
}
.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.fi.open .fa {
  max-height: 800px;
}
.fa-inner {
  padding: 0 36px 30px;
  font-size: 0.97rem;
  color: #666;
  line-height: 1.85;
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}
.fa-inner p {
  margin-bottom: 10px;
}
.fa-inner ul {
  list-style: none;
  margin: 10px 0 10px 0;
}
.fa-inner ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: #666;
}
.fa-inner ul li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--pink-rose);
  font-size: 1.1rem;
  line-height: 1.4;
}

footer {
  background: #222;
  color: #bbb;
  padding: 56px 60px 30px;
}
.fg {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.f-logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--pink-light);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.f-about {
  font-size: 0.83rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 20px;
}
.f-soc {
  display: flex;
  gap: 10px;
}
.f-s {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 204, 211, 0.1);
  border: 1px solid rgba(255, 204, 211, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: #ccc;
  transition:
    background 0.2s,
    color 0.2s;
}
.f-s:hover {
  background: var(--pink-deep);
  color: white;
}
.fc h4 {
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
  font-size: 0.93rem;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc ul li a {
  color: #999;
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}
.fc ul li a:hover {
  color: var(--pink-light);
}
.fb {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.fb p {
  font-size: 0.8rem;
  color: #555;
}
.fb-links {
  display: flex;
  gap: 22px;
}
.fb-links a {
  color: #555;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.fb-links a:hover {
  color: var(--pink-light);
}
.app-icon {
  width: 20px;
  height: 20px;
}

.proc-fullscreen-btn {
  display: none;
}
.proc-mobile-arrows {
  display: none;
}

#vid-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: black;
  align-items: center;
  justify-content: center;
}
#vid-modal.open {
  display: flex;
}
#vid-modal video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#vid-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.rv.vis {
  opacity: 1;
  transform: translateY(0);
}
.rv.d1 {
  transition-delay: 0.1s;
}
.rv.d2 {
  transition-delay: 0.2s;
}
.rv.d3 {
  transition-delay: 0.3s;
}

@media (max-width: 1024px) {
  #advantages {
    padding: 60px 40px 0;
  }
  .adv-grid {
    grid-template-columns: 1fr 260px 1fr;
    gap: 0 30px;
  }
  #procedure {
    padding: 60px 40px;
  }
  #types {
    padding: 60px 40px;
  }
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #prices {
    padding: 50px 40px 60px;
  }
  #contacts {
    padding: 60px 40px;
  }
  #faq {
    padding: 70px 40px 80px;
  }
  footer {
    padding: 50px 40px 26px;
  }
  .fg {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 10px 14px;
    gap: 8px;
  }
  .nav-logo-pill {
    width: 40px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  .nav-center {
    gap: 2px;
    padding: 4px 5px;
  }
  .nav-pill {
    padding: 7px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .nav-lang {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  #hero {
    margin: 8px 8px 0;
    border-radius: 20px;
    height: auto;
    min-height: 0;
    max-height: none;
    padding-top: 160px;
    padding-bottom: 160px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0) 30%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }
  .hero-watermark {
    display: none;
  }

  .hero-text-top {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
  }
  .hero-title {
    font-size: 3.4rem;
    line-height: 1;
    text-align: center;
  }
  .hero-tag-pill {
    font-size: 0.88rem;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  .hero-title {
    font-size: 3.4rem;
    line-height: 1;
  }
  .hero-brand {
    font-size: 3rem;
    padding: 6px 22px;
    border-radius: 16px;
    margin-top: 12px;
  }

  .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 14px 0;
    gap: 0;
    margin-top: 0;
    z-index: 2;
  }
  .hero-left {
    display: none;
  }
  .hero-card-bottom {
    margin-top: 0;
    padding: 12px 36px 12px 12px;
    gap: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
  }
  .hero-card-thumb {
    width: 52px;
    height: 44px;
    border-radius: 10px;
  }
  .hero-card-text h4 {
    font-size: 0.86rem;
    margin-bottom: 3px;
  }
  .hero-card-text p {
    font-size: 0.74rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-arrow-circle {
    width: 22px;
    height: 22px;
    top: 10px;
    right: 10px;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    display: none;
  }

  #what {
    padding: 40px 20px 44px;
    text-align: left;
  }
  .section-title {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }
  .what-text {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  #advantages {
    padding: 44px 20px 40px;
  }
  .adv-title {
    font-size: 1.85rem;
    margin-bottom: 28px;
    text-align: left;
  }
  .adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
  }
  .adv-center-img {
    display: none;
  }
  .adv-col {
    display: contents;
  }
  .adv-item {
    background: #fff7f8;
    border-radius: 16px;
    padding: 16px 14px;
    border: 1.5px solid #ffccd3;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .adv-item h3 {
    font-size: 0.98rem;
    margin-bottom: 8px;
    color: #f9a5b1;
    line-height: 1.3;
  }
  .adv-col:first-child .adv-item p,
  .adv-col:last-child .adv-item p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #832734;
    flex: 1;
  }

  #gallery {
    margin-top: 0;
    padding: 20px 14px;
    gap: 10px;

    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  #gallery::-webkit-scrollbar {
    display: none;
  }
  .gal-img {
    flex: 0 0 78vw;
    max-width: 300px;
    height: 220px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  #procedure {
    padding: 44px 20px 52px;
  }
  .proc-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .proc-arr-outside {
    display: none;
  }

  .proc-video-card {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 75%;
    position: relative;
    border-radius: 20px;
    min-height: 0;
    max-height: none;
  }

  .proc-video-card > * {
    position: absolute;
  }

  .proc-fullscreen-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 56px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 6;
    backdrop-filter: blur(4px);
  }
  .proc-fullscreen-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
  }
  .proc-mobile-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 4px 0 0;
  }
  .proc-mobile-arrows button {
    background: #f9a5b1;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .proc-mobile-arrows button:active {
    background: #ba6a75;
  }
  .proc-mobile-arrows button img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(10);
  }
  .proc-right {
    padding: 0;
    width: 100%;
  }
  .proc-title-badge {
    font-size: 1.55rem;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 14px;
    display: block;
    width: 100%;
    text-align: center;
  }
  .proc-desc {
    font-size: 0.97rem;
    margin-bottom: 14px;
  }
  .proc-list {
    margin-bottom: 16px;
  }
  .proc-list li {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .proc-note {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .btn-pk {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    border-radius: 14px;
  }

  #vid-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: black;
    align-items: center;
    justify-content: center;
  }
  #vid-modal.open {
    display: flex;
  }
  #vid-modal video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #vid-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    backdrop-filter: blur(4px);
  }

  #types {
    padding: 44px 20px 52px;
  }
  #types .section-title {
    font-size: 1.85rem;
    margin-bottom: 24px;
    text-align: left;
  }

  .types-grid {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
    grid-template-columns: unset;
    max-width: 100%;
  }
  .types-grid::-webkit-scrollbar {
    display: none;
  }
  .type-card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: start;
    padding: 26px 22px 22px;
    border-radius: 18px;
  }
  .tc-body h3 {
    font-size: 1.3rem;
  }
  .tc-body p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  .btn-ol {
    font-size: 0.95rem;
    padding: 9px 22px;
  }

  #photo-banner {
    height: 160px;
  }

  #prices {
    padding: 44px 16px 52px;
  }
  #prices .section-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
  .prices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .pc-card {
    padding: 22px 20px 20px;
    border-radius: 18px;
  }
  .pc-tag {
    font-size: 0.78rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .pc-dur {
    font-size: 1.9rem;
    margin-bottom: 6px;
  }
  .pc-desc {
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.45;
  }
  .pc-economy {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .pc-price-pill {
    align-self: flex-end;
  }
  .pc-amt {
    font-size: 1.6rem;
    padding: 12px 22px;
    border-radius: 14px;
    margin-bottom: 4px;
    display: inline-block;
    min-width: 140px;
    text-align: center;
  }
  .pc-per {
    font-size: 0.82rem;
    text-align: right;
  }

  #contacts {
    padding: 44px 16px 52px;
  }
  #contacts .section-title {
    font-size: 1.85rem;
    margin-bottom: 24px;
    text-align: left;
  }
  .contacts-wrap {
    flex-direction: column;
    border-radius: 20px;
    min-height: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  .ci-card {
    flex: none;
    padding: 28px 20px;
  }
  .ci-label {
    font-size: 1.1rem;
  }
  .ci-value {
    font-size: 0.97rem;
    margin-bottom: 20px;
  }
  .ci-phone {
    font-size: 1.6rem;
  }
  .ci-phone-note {
    font-size: 0.88rem;
    margin-bottom: 22px;
  }

  .map-box {
    min-height: 0;
    height: 240px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    position: relative;
  }
  .map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: auto;
  }

  #faq {
    padding: 44px 16px 56px;
  }
  #faq .section-title {
    font-size: 1.85rem;
    text-align: left;
  }
  .faq-subtitle {
    text-align: left;
    margin-bottom: 28px;
    font-size: 0.9rem;
  }
  .fq {
    padding: 18px 16px;
    font-size: 0.93rem;
    gap: 12px;
  }
  .fi-icon {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .fa-inner {
    padding: 14px 16px 20px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  footer {
    padding: 36px 20px 20px;
  }

  .fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin-bottom: 28px;
  }
  .fg > div:first-child {
    grid-column: 1/-1;
  }
  .f-logo {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .f-about {
    font-size: 0.82rem;
    margin-bottom: 14px;
    line-height: 1.6;
  }
  .f-soc {
    gap: 8px;
  }
  .f-s {
    width: 34px;
    height: 34px;
  }
  .fg .fc:last-child {
    display: none;
  }
  .fc h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    white-space: nowrap;
  }
  .fc ul {
    gap: 7px;
  }
  .fc ul li a {
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .fb {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 18px;
  }
  .fb p {
    font-size: 0.76rem;
  }
  .fb-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .fb-links a {
    font-size: 0.76rem;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .nav-pill {
    padding: 6px 7px;
    font-size: 0.68rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-brand {
    font-size: 1.8rem;
  }
  .hero-card-text p {
    display: none;
  }
  .adv-item {
    padding: 14px 12px;
  }
  .adv-item h3 {
    font-size: 0.95rem;
  }
  .prices-grid {
    grid-template-columns: 1fr;
  }
  .pc-amt {
    font-size: 1.6rem;
  }
}
