:root {
  --ivory: #FDF8F4;
  --blush: #F9EDEC;
  --blush-deep: #F3DDD9;
  --rose: #C97E72;
  --rose-deep: #AD5A4E;
  --gold: #C6A15B;
  --gold-deep: #A8843E;
  --charcoal: #403432;
  --muted: #7E6D6A;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(172, 90, 78, 0.12);
  --radius: 18px;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --nav-h: 78px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  font-weight: 400;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.wrap { overflow-x: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.28s ease;
}

.btn-gold {
  background: linear-gradient(135deg, #D3AF6B, var(--gold-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(168, 132, 62, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(168, 132, 62, 0.45); }

.btn-rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 8px 20px rgba(201, 126, 114, 0.35);
}
.btn-rose:hover { background: var(--rose-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose-deep);
}
.btn-outline:hover { background: var(--blush); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.9rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 126, 114, 0.15);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 0.55rem; }
.logo-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.05;
}
.logo-text span { display: block; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); font-family: var(--font-body); font-weight: 600; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }

.nav-cta { display: inline-flex; }
.header .nav-cta { padding: 0.7rem 1.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 1102;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: calc(var(--nav-h) + 24px) 2.4rem 2rem;
    background: #fff;
    box-shadow: -10px 0 40px rgba(64,52,50,0.12);
    transform: translateX(105%);
    transition: transform 0.35s ease;
    z-index: 1101;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--blush);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 30, 28, 0.78) 0%, rgba(40, 30, 28, 0.5) 50%, rgba(40, 30, 28, 0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 4rem 0;
}
.hero-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #F6D9A8;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 1.3rem;
  color: #FFFFFF;
  text-shadow: 0 3px 8px rgba(0,0,0,0.55), 0 8px 30px rgba(0,0,0,0.45);
}
.hero-title em {
  font-style: italic;
  color: #F9DCA6;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 6px 22px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.92);
  max-width: 480px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 34px;
  background: linear-gradient(rgba(255,255,255,0.9), transparent);
  animation: pulseDown 1.8s ease-in-out infinite;
}
@keyframes pulseDown {
  0%,100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ---------- Section base ---------- */
.section { padding: 5.5rem 0; }
.section-tint { background: var(--blush); }
.section-white { background: #fff; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.eyebrow { composes: kicker; }
h1, h2, h3, .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--rose-deep); }
.section-sub { color: var(--muted); font-size: 1.02rem; }
.head-rule {
  width: 64px; height: 3px; margin: 1.1rem auto 0;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
}

/* ---------- About / Welcome ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-frame {
  position: absolute;
  inset: -18px -18px auto auto;
  width: 58%;
}
.about-media .about-frame img {
  border: 8px solid var(--ivory);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.badge-float {
  position: absolute;
  left: -24px; bottom: 26px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.badge-float .badge-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--rose-deep);
  line-height: 1;
}
.badge-float .badge-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }

.about-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 1.2rem; }
.about-copy h2 em { font-style: italic; color: var(--rose-deep); }
.about-copy .lead { color: var(--rose-deep); font-weight: 500; margin-bottom: 1rem; }
.about-copy p { color: var(--muted); margin-bottom: 1.1rem; }
.about-list { margin: 1.4rem 0 1.8rem; display: grid; gap: 0.8rem; }
.about-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--charcoal); font-weight: 500; }
.about-list li::before {
  content: '✦';
  color: var(--gold-deep);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(172,90,78,0.08);
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--rose-deep);
  line-height: 1;
}
.stat-card .stat-label {
  margin-top: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Services preview ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.3rem 2rem;
  box-shadow: 0 6px 24px rgba(172,90,78,0.08);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }

.service-card.popular { border: 2px solid rgba(201,126,114,0.4); }
.popular-tag {
  position: absolute;
  top: 14px; right: -34px;
  transform: rotate(45deg);
  background: var(--rose);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 2.6rem;
  font-weight: 600;
}

.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-deep);
  font-size: 1.6rem;
}
.service-card h3 { font-size: 1.45rem; margin-bottom: 0.3rem; }
.service-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.service-card .price small { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.service-card .desc { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.3rem; }

.center-cta { text-align: center; margin-top: 2.8rem; }

/* ---------- Videos ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(172,90,78,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.video-frame { position: relative; padding-top: 56.25%; background: #161616; }
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-body { padding: 1.3rem 1.6rem 1.7rem; }
.video-body h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.video-body .video-tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--blush);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: rgba(64,52,50,0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(173,90,78,0.92), rgba(201,126,114,0.86)),
    url('https://img1.wsimg.com/isteam/ip/6df8f184-330d-4499-a3f5-8a9874c58d7e/IMG_8631.jpeg/:/rs=w:1600') center/cover;
  background-blend-mode: overlay;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: #fff;
  margin-bottom: 0.9rem;
}
.cta-band h2 em { font-style: italic; color: #F6D9A8; }
.cta-band .cta-sub { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 2.2rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.footer .logo-text { color: #fff; }
.footer p { font-weight: 300; max-width: 320px; }
.footer ul { display: grid; gap: 0.6rem; }
.footer ul a { font-weight: 300; transition: color 0.2s ease; }
.footer ul a:hover { color: #F3CD9A; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: baseline; }
.footer-contact a:hover { color: #F3CD9A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 4.2rem;
  background: linear-gradient(140deg, var(--blush), var(--blush-deep));
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.page-hero h1 em { font-style: italic; color: var(--rose-deep); }
.page-hero .crumb { font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.9rem; font-weight: 600; }

/* ---------- Pricing menu ---------- */
.menu-group { margin-bottom: 3.4rem; }
.menu-group-title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.menu-group-title h2 { font-size: 1.6rem; white-space: nowrap; }
.menu-group-title::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(201,126,114,0.55), transparent);
}
.menu-group-title .menu-note { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.15rem 1.6rem;
  box-shadow: 0 4px 16px rgba(172,90,78,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(172,90,78,0.12); }
.menu-item .mi-name { font-weight: 500; }
.menu-item .mi-desc { font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }
.menu-item .mi-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold-deep);
  font-size: 1.25rem;
  white-space: nowrap;
}
.menu-item.highlight { border: 1px solid rgba(198,161,91,0.55); }

.wispy-note {
  margin: 0.6rem 0 0 1.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wispy-note::before { content: '✦'; color: var(--gold-deep); }

/* ---------- Booking page ---------- */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.book-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem 2.6rem 2.8rem;
}
.book-card h2 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.book-card > p { color: var(--muted); margin-bottom: 1.8rem; }
.step-list { display: grid; gap: 1rem; margin-bottom: 2rem; }
.step-list li { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-deep);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 0.9rem;
}
.step-list strong { display: block; }
.step-list span { font-size: 0.9rem; color: var(--muted); }
.book-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.book-note { margin-top: 1.3rem; font-size: 0.82rem; color: var(--muted); text-align: center; }

.book-contact-card {
  background: linear-gradient(150deg, var(--charcoal), #5a423d);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.6rem 2.4rem;
}
.book-contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.1rem;
}
.book-contact-card p { color: rgba(255,255,255,0.85); margin-bottom: 1.6rem; font-weight: 300; }
.book-hours { display: grid; gap: 0.7rem; margin-bottom: 1.8rem; }
.book-hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; }
.book-hours li span:last-child { color: #F3CD9A; font-weight: 500; }
.book-contact-card .tel-big {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #F3CD9A;
}
.book-pin {
  display: inline-flex;
  gap: 0.6rem;
  align-items: baseline;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  margin-top: 1.4rem;
}

/* ---------- Booking form ---------- */
.book-form { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--charcoal);
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(201,126,114,0.35);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(201,126,114,0.15);
}
.form-field textarea { resize: vertical; min-height: 92px; }
.form-hint { font-size: 0.78rem; color: var(--muted); }

.form-success {
  display: none;
  text-align: center;
  margin-top: 1.4rem;
  padding: 1.6rem;
  border-radius: 14px;
  background: var(--blush);
  border: 1px solid rgba(201,126,114,0.35);
}
.form-success.open { display: block; }
.form-success .fs-icon { font-size: 1.9rem; }
.form-success h3 { font-size: 1.3rem; margin: 0.4rem 0 0.4rem; }
.form-success p { font-size: 0.9rem; color: var(--muted); }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(32,24,22,0.92);
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 26px;
  background: rgba(255,255,255,0.1);
  border: 0;
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 0;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-count {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.reveal.d-3 { transition-delay: 0.24s; }
.reveal.d-4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-frame { left: auto; }
  .book-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .cards-grid, .videos-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .gallery-item { border-radius: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .badge-float { left: 12px; bottom: 12px; padding: 0.9rem 1.1rem; }
  .hero-content { padding: 3rem 0; }
  .hero-actions .btn { flex: 1; text-align: center; }
}