:root {
  --rose: #e8a4b8;
  --rose-soft: #f4c5d2;
  --rose-pale: #fce4ec;
  --rose-bg: #fdf2f6;
  --cream: #fefafb;
  --ink: #3d2c30;
  --ink-soft: #6b555a;
  --line: #f0d5dd;
  --gold: #c44569;
  --cherry: #c44569;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Georgian', 'Noto Serif Georgian', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.display { font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif; }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Language toggle */
.lang-toggle {
  position: fixed;
  top: 72px;
  right: 20px;
  z-index: 100;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(61,44,38,0.08);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.lang-toggle:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(61,44,38,0.12); }

/* Hero */
.hero {
  padding: 140px 0 40px;
  text-align: center;
}

.hero h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 500;
  color: var(--rose);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero .subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}

.hero .faq-label {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--rose);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.hero .faq-label::before,
.hero .faq-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--rose-soft);
}
.hero .faq-label::before { right: 100%; margin-right: 16px; }
.hero .faq-label::after { left: 100%; margin-left: 16px; }

.hero h2 {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h2 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.hero .intro {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.divider-small {
  width: 60px;
  height: 1px;
  background: var(--rose-soft);
  margin: 0 auto 48px;
}

/* Section labels */
.section-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.section-block { margin-bottom: 64px; }

/* Image gallery */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.gallery-img {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--rose-pale);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}


.extra-grid {
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-bottom 0.3s ease;
}
.extra-grid.visible {
  max-height: 3000px;
  opacity: 1;
  margin-bottom: 24px;
}

.view-more-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--rose);
  border-radius: 100px;
  color: var(--rose);
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.view-more-btn:hover { background: var(--rose-bg); }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 50px 24px 0;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--rose); }

.faq-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rose);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--rose);
  color: white;
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 0 28px 0;
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); font-weight: 600; }
.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.faq-answer ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.faq-answer ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--rose);
}

/* Packages */
.packages {
  display: grid;
  gap: 20px;
  margin-top: 16px;
}

.package {
  background: var(--white);
  border: 1px solid var(--rose-pale);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.package.popular {
  border-color: var(--rose);
  box-shadow: 0 8px 30px rgba(201,138,122,0.12);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-soft);
  color: var(--ink);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.package-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.package h3 {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.package-subtitle {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.package-price {
  font-size: 24px;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  padding: 0;
}
.package-features li {
  padding: 6px 0 6px 16px;
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
}
.package-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 18px;
  line-height: 1;
}

/* About card */
.about-card {
  background: var(--white);
  border: 1px solid var(--rose-pale);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  margin: 40px 0;
}

.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--rose-pale);
  margin: 0 auto 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(201,138,122,0.2);
}

.about-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}

.about-role {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--rose);
  margin-bottom: 24px;
}

.about-card p {
  text-align: left;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Booking form */
.booking-card {
  background: var(--white);
  border: 1px solid var(--rose-pale);
  border-radius: 24px;
  padding: 40px 32px;
  margin: 40px 0;
}

.booking-card h2 {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}

.booking-card .form-intro {
  color: var(--rose);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--rose-bg);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 18px;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.2s ease;
}
.submit-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.or-divider {
  text-align: center;
  color: var(--rose);
  font-size: 13px;
  margin: 28px 0 20px;
  position: relative;
}
.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 100px);
  height: 1px;
  background: var(--line);
}
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 100px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s ease;
}
.contact-btn:hover { transform: translateY(-1px); }

.contact-btn.whatsapp { background: #25D366; }
.contact-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-btn.messenger { background: #0084ff; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 60px 0;
  text-align: center;
}

footer .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--rose);
  margin-bottom: 8px;
  font-weight: 500;
}

footer .location {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-links a {
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  color: white;
  font-weight: 500;
}
.footer-links a.wa { background: #25D366; }
.footer-links a.ig { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.footer-links a.fb { background: #1877f2; }
.footer-links a.gm { background: #3d2c26; }

.address {
  color: var(--ink-soft);
  font-size: 13px;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero > * { animation: fadeUp 0.8s ease backwards; }
.hero h1 { animation-delay: 0.1s; }
.hero .subtitle { animation-delay: 0.2s; }
.hero .faq-label { animation-delay: 0.3s; }
.hero h2 { animation-delay: 0.4s; }
.hero .intro { animation-delay: 0.5s; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .image-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .container { padding: 0 20px; }
  .booking-card, .about-card { padding: 32px 24px; }
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(254,250,251,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(61,44,48,0.08);
}
.nav-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--rose);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.2s ease;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 600px) {
  .nav-inner { height: 52px; }
  .nav-brand { display: none; }
  .nav-links { gap: 6px; width: 100%; justify-content: space-between; flex-wrap: nowrap; }
  .nav-links a { font-size: 11px; padding: 4px 1px; white-space: nowrap; letter-spacing: 0.01em; }
}


/* FAQ Intro Section */
.faq-intro-section {
  text-align: center;
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}
.faq-intro-section .faq-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}
.faq-intro-section h2 {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.faq-intro-section h2 em {
  font-style: italic;
  color: var(--rose);
}
.faq-intro-section .intro {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}


/* Certified badge */
.certified-badge {
  display: flex;
  justify-content: center;
  margin: 12px 0 44px;
}
.certified-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff0f5, #fce4ec);
  border: 1.5px solid var(--rose-soft);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cherry);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(232,164,184,0.25);
}


@media (max-width: 600px) {
  .hero { padding: 80px 0 32px; }
  .certified-inner { font-size: 12px; padding: 9px 16px; }
  .certified-badge { margin: 8px 0 32px; }
}

/* ===== Multi-page additions ===== */
.nav-links a.active { color: var(--rose); }
.nav-links a.active::after { width: 100%; }

/* Inner page header (pages without the full hero) */
.page-head {
  text-align: center;
  padding: 130px 0 8px;
}
.page-head .section-label {
  display: inline-block;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 18px;
}
.page-head h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif Georgian', serif;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-head h1 em { font-style: italic; color: var(--rose); }
.page-head .intro {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 8px;
}
.page-head .divider-small { margin-top: 36px; }

/* Home intro + section intros */
.home-intro {
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 8px;
  line-height: 1.75;
}

/* Call-to-action block */
.cta-block {
  text-align: center;
  margin: 8px 0 64px;
}
.cta-btn {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 16px 40px;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: all 0.2s ease;
}
.cta-btn:hover { background: var(--ink); transform: translateY(-1px); }
.cta-btn.outline {
  background: transparent;
  border: 1px solid var(--rose);
  color: var(--rose);
}
.cta-btn.outline:hover { background: var(--rose-bg); color: var(--rose); transform: translateY(-1px); }

/* Pricing page: show package cards directly */
.packages.open { margin-top: 24px; }

/* ===== Testimonials ===== */
.reviews-stat {
  text-align: center;
  color: var(--rose);
  font-size: 14px;
  font-weight: 500;
  margin: 4px 0 28px;
  letter-spacing: 0.02em;
}
.reviews-stat a { color: var(--rose); text-decoration: none; border-bottom: 1px solid var(--rose-soft); }
.testimonials { display: flex; flex-direction: column; gap: 16px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--rose-pale);
  border-radius: 16px;
  padding: 24px 26px;
}
.testimonial p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial .who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testimonial .name { color: var(--ink); font-weight: 600; font-size: 14px; font-style: normal; }
.testimonial .src {
  font-size: 12px;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}


/* Per-package add-ons (pricing page) */
.pkg-addons { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }
.pkg-addons .addons-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.pkg-addons ul { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.85; }
.pkg-addons ul li::before { content: "· "; color: var(--rose); font-weight: 600; }


/* Pricing: prominent bundle banner */
.bundle-banner { margin: 0 0 32px; padding: 22px 28px; background: var(--rose-pale); border: 1px solid var(--rose); border-radius: 16px; text-align: center; }
.bundle-banner .bundle-title { font-size: 1.12rem; color: var(--cherry); font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.bundle-banner .bundle-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* Pricing: session-type accordion */
.sessions { margin-top: 8px; }
.session { border-bottom: 1px solid var(--line); }
.session:first-child { border-top: 1px solid var(--line); }
.session-head { width: 100%; background: transparent; border: none; cursor: pointer; padding: 22px 50px 22px 0; text-align: left; position: relative; font-family: inherit; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.session-name { font-size: 18px; font-weight: 500; color: var(--ink); transition: color 0.2s ease; }
.session-head:hover .session-name { color: var(--rose); }
.session-price { font-size: 14px; color: var(--ink-soft); }
.session-toggle { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--rose); color: var(--rose); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s ease; }
.session.open .session-toggle { background: var(--rose); color: #fff; transform: translateY(-50%) rotate(45deg); }
.session-body { display: none; padding-bottom: 28px; }
.session.open .session-body { display: block; }


/* Gallery: filter pills + Pinterest masonry */
.gallery-filter { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin:0 0 26px; }
.gallery-filter button { border:1px solid var(--line); background:var(--white); color:var(--ink-soft); font-family:inherit; font-size:13px; padding:8px 18px; border-radius:999px; cursor:pointer; transition:.2s; }
.gallery-filter button:hover { border-color:var(--rose); color:var(--rose); }
.gallery-filter button.active { background:var(--cherry); color:#fff; border-color:var(--cherry); }
.gallery-masonry { column-count:3; column-gap:12px; }
@media (max-width:640px){ .gallery-masonry { column-count:2; column-gap:10px; } }
.gallery-masonry .gallery-img { aspect-ratio:auto; break-inside:avoid; margin:0 0 12px; border-radius:14px; display:block; }
.gallery-masonry .gallery-img img { width:100%; height:auto; object-fit:initial; display:block; }
