/* ============================================================
   LADIES ACADEMY — Design System
   ============================================================ */
:root {
  /* Backgrounds */
  --cream: #F6F0E4;
  --ivory: #FBF7EF;
  --sand: #EBE0CD;
  --camel: #E3D4BB;
  /* Ink / text */
  --ink: #3A3531;
  --ink-soft: #6E665C;
  --burgundy: #7A2E3B;
  --burgundy-deep: #5E222C;
  /* Accents */
  --gold: #C9A24B;
  --gold-soft: #E0C885;
  --bronze: #9C7A35;
  /* Utility */
  --line: rgba(58, 53, 49, 0.12);
  --line-soft: rgba(58, 53, 49, 0.07);
  --shadow-sm: 0 6px 20px rgba(58, 46, 38, 0.08);
  --shadow-md: 0 18px 50px rgba(58, 46, 38, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --header-h: 76px;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
p { color: var(--ink-soft); }

.serif { font-family: var(--font-serif); }
.accent { color: var(--burgundy); }
.gold { color: var(--bronze); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 11vw, 130px) 0; position: relative; }
.section--sand { background: var(--sand); }
.section--ivory { background: var(--ivory); }
.section--camel { background: var(--camel); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--bronze); margin-bottom: 18px;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.divider { width: 56px; height: 2px; background: var(--gold); margin: 22px 0; border: none; }
.center .divider { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--burgundy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--burgundy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(246, 240, 228, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 18px rgba(58,46,38,.06); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-name { font-family: var(--font-serif); font-size: 1.18rem; font-weight: 600; letter-spacing: .03em; }
.brand-name small { display: block; font-family: var(--font-sans); font-size: .56rem; letter-spacing: .32em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .3s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-toggle button { padding: 6px 13px; font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .04em; }
.lang-toggle button.active { background: var(--ink); color: var(--ivory); }

.menu-btn { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center; }
.menu-btn span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: var(--header-h);
  background:
    radial-gradient(120% 90% at 70% 30%, rgba(227,212,187,.7) 0%, rgba(246,240,228,0) 60%),
    linear-gradient(160deg, var(--ivory) 0%, var(--cream) 55%, var(--camel) 130%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; width: 100%; }
.hero__copy { max-width: 560px; }
.hero h1 { margin-bottom: 8px; }
.hero .slogan { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.7rem); color: var(--burgundy); margin: 6px 0 20px; }
.hero .lead { margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__art img { width: min(100%, 460px); border-radius: 14px; object-fit: cover; aspect-ratio: 4/5; box-shadow: 0 30px 70px rgba(94,34,44,.22); }
.hero__art::before {
  content: ""; position: absolute; inset: -5%; border-radius: 20px;
  background: radial-gradient(circle at 50% 30%, rgba(201,162,75,.22), transparent 65%); z-index: -1;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--bronze), transparent); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: scaleY(.3); } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.about-preview__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.about-preview__img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.program-card {
  background: var(--ivory); border-radius: var(--radius); padding: 38px 30px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease; position: relative; overflow: hidden;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.program-card__num { font-family: var(--font-serif); font-size: 3rem; color: var(--camel); line-height: 1; margin-bottom: 14px; }
.program-card h3 { margin-bottom: 8px; }
.program-card .ru-sub { font-style: italic; color: var(--bronze); font-family: var(--font-serif); margin-bottom: 16px; display: block; }
.program-card p { font-size: .96rem; margin-bottom: 20px; }
.program-card a { font-weight: 600; color: var(--burgundy); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.program-card a:hover { gap: 11px; }

/* ============================================================
   GALLERY
   ============================================================ */
.album-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 40px 0 44px; }
.album-tabs button {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--line);
  font-size: .85rem; font-weight: 500; color: var(--ink-soft); transition: all .25s;
}
.album-tabs button.active { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }
.album { display: none; }
.album.active { display: block; animation: fadeUp .6s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: none; } }
.album__meta { text-align: center; margin-bottom: 28px; }
.album__meta .tags { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--bronze); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; grid-auto-flow: dense; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.span-6 { grid-column: span 6; } .gallery-item.span-4 { grid-column: span 4; } .gallery-item.span-8 { grid-column: span 8; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.gallery-item .play::after { content: "▶"; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--burgundy); display: flex; align-items: center; justify-content: center; font-size: .9rem; padding-left: 3px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(31,26,20,.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img, .lightbox video { max-width: 92vw; max-height: 88vh; border-radius: 10px; }
.lightbox__close { position: absolute; top: 22px; right: 26px; font-size: 2rem; color: #fff; line-height: 1; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 46px; }
.price-card {
  background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column; position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 1.5px solid var(--gold); }
.price-card .tag { position: absolute; top: 14px; right: 14px; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; background: var(--gold-soft); color: var(--burgundy-deep); padding: 4px 9px; border-radius: 999px; font-weight: 700; }
.price-card h3 { font-size: 1.22rem; margin-bottom: 4px; }
.price-card .dur { font-size: .82rem; color: var(--bronze); letter-spacing: .08em; text-transform: uppercase; }
.price-card .amount { font-family: var(--font-serif); font-size: 2.4rem; color: var(--burgundy); margin: 16px 0 4px; }
.price-card .amount span { font-size: 1rem; color: var(--ink-soft); }
.price-card .note { font-size: .82rem; margin: 4px 0 18px; min-height: 18px; }
.price-card .btn { margin-top: auto; }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; margin-top: 40px; }
.info-card { background: var(--ivory); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line-soft); }
.info-card h4 { font-family: var(--font-sans); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); margin-bottom: 14px; }
.info-card p, .info-card li { font-size: .95rem; color: var(--ink-soft); }
.info-card li { padding: 3px 0; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badges span { border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: .8rem; font-weight: 600; letter-spacing: .04em; }

/* Rewards */
.rewards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.reward-box { background: var(--ivory); border-radius: var(--radius); padding: 34px; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.reward-box h3 { margin-bottom: 8px; }
.reward-list { margin-top: 18px; }
.reward-list li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.reward-list li:last-child { border-bottom: none; }
.reward-list .pct { font-family: var(--font-serif); color: var(--burgundy); font-weight: 600; white-space: nowrap; }

/* FAQ */
.faq { max-width: 820px; margin: 46px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-size: 1.05rem; font-weight: 500; color: var(--ink); font-family: var(--font-serif); }
.faq-q .ic { font-size: 1.4rem; color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding-bottom: 22px; font-size: .96rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-block { max-width: 820px; margin: 0 auto; padding: clamp(40px,7vw,70px) 0; border-bottom: 1px solid var(--line); }
.testimonial-block:last-child { border-bottom: none; }
.t-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--bronze); margin-bottom: 20px; }
.t-id { background: var(--ink); color: var(--ivory); padding: 4px 12px; border-radius: 999px; letter-spacing: .12em; font-weight: 600; }
.t-quote { font-family: var(--font-serif); font-size: clamp(1.25rem, 3vw, 1.85rem); line-height: 1.5; color: var(--ink); }
.t-quote::before { content: "“"; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.t-author { margin-top: 22px; font-weight: 600; }
.t-shot { margin: 24px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); max-width: 360px; }
.t-cta { margin-top: 22px; background: var(--sand); border-left: 3px solid var(--gold); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .92rem; }
.t-cta strong { color: var(--burgundy); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,6vw,64px); }
.contact-info li { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-info .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info b { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze); }

/* Forms */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--ivory); font-family: inherit; font-size: .98rem; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--bronze); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero { padding-top: calc(var(--header-h) + 60px); padding-bottom: 60px; }
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,70px); align-items: center; }
.about-hero__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/4; }
.about-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.story { max-width: 760px; margin: 0 auto; }
.story h2 { margin-bottom: 14px; }
.story p { margin-bottom: 18px; font-size: 1.06rem; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.chip { background: var(--ivory); border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; font-size: .9rem; font-weight: 500; }
.method-grid, .feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; margin-top: 40px; }
.method-card { background: var(--ivory); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.method-card .n { font-family: var(--font-serif); color: var(--gold); font-size: 1.4rem; }
.method-card h4 { font-family: var(--font-serif); font-size: 1.2rem; margin: 8px 0; }
.method-card p { font-size: .92rem; }

/* Articles published grid */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.article-card { background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-card__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; background: var(--sand); }
.article-card__body { padding: 24px 26px 28px; }
.article-card__body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.article-card__body p { font-size: .98rem; white-space: pre-wrap; }

/* Articles / under construction */
.articles-uc { text-align: center; max-width: 620px; margin: 0 auto; }
.articles-uc img { width: min(340px, 70%); margin: 0 auto 24px; }
.badge-uc { display: inline-block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); border: 1px solid var(--gold); border-radius: 999px; padding: 6px 16px; margin-bottom: 18px; }

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
.program-section { padding: clamp(60px,10vw,120px) 0; }
.program-section:nth-child(even) { background: var(--ivory); }
.program-hero { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.program-hero .num { font-family: var(--font-serif); font-size: 1rem; letter-spacing: .3em; color: var(--gold); }
.prog-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 44px; }
.prog-col h4 { font-family: var(--font-sans); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 14px; }
.prog-col li { padding: 7px 0; font-size: .95rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }

/* ============================================================
   BOOKING WIZARD
   ============================================================ */
.booking { max-width: 760px; margin: 0 auto; }
.steps-bar { display: flex; justify-content: space-between; margin-bottom: 44px; position: relative; }
.steps-bar::before { content: ""; position: absolute; top: 17px; left: 6%; right: 6%; height: 2px; background: var(--line); z-index: 0; }
.step-dot { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.step-dot .num { width: 36px; height: 36px; border-radius: 50%; background: var(--cream); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .9rem; color: var(--ink-soft); transition: all .3s; }
.step-dot .lbl { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); text-align: center; }
.step-dot.active .num { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }
.step-dot.done .num { background: var(--gold); border-color: var(--gold); color: #fff; }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeUp .5s ease; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.choice {
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 22px; cursor: pointer; transition: all .25s;
  background: var(--ivory);
}
.choice:hover { border-color: var(--gold); }
.choice.selected { border-color: var(--burgundy); background: #fff; box-shadow: var(--shadow-sm); }
.choice h4 { font-family: var(--font-serif); font-size: 1.15rem; }
.choice .meta { font-size: .85rem; color: var(--bronze); margin-top: 4px; }
.choice .pr { font-family: var(--font-serif); color: var(--burgundy); font-size: 1.3rem; margin-top: 10px; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(92px,1fr)); gap: 12px; }
.slot { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px; text-align: center; font-weight: 600; font-size: .92rem; cursor: pointer; background: var(--ivory); transition: all .2s; }
.slot:hover { border-color: var(--gold); }
.slot.selected { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.step-nav { display: flex; justify-content: space-between; margin-top: 36px; gap: 14px; }
.confirm-card { background: var(--ivory); border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.confirm-card .ses-id { font-family: var(--font-serif); font-size: 2rem; color: var(--burgundy); letter-spacing: .05em; margin: 10px 0; }
.summary-list { text-align: left; max-width: 420px; margin: 24px auto; }
.summary-list li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.summary-list b { color: var(--ink); font-weight: 600; }
.check-circle { width: 70px; height: 70px; border-radius: 50%; background: var(--gold-soft); color: var(--burgundy-deep); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 14px; }

/* ============================================================
   MANAGE PAGE
   ============================================================ */
.manage-card { max-width: 520px; margin: 0 auto; background: var(--ivory); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.manage-result { max-width: 560px; margin: 30px auto 0; }
.alert { padding: 16px 20px; border-radius: var(--radius-sm); font-size: .92rem; margin-top: 16px; }
.alert.ok { background: #EAF0E6; color: #3E5B3A; border: 1px solid #C5D6BB; }
.alert.warn { background: #F7E9CC; color: #8a6d1f; border: 1px solid #E7D199; }
.alert.err { background: #F3E0E2; color: var(--burgundy-deep); border: 1px solid #E3BCC1; }

/* ============================================================
   LEGAL
   ============================================================ */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 20px); background: var(--ivory); border-radius: var(--radius); padding: 16px; border: 1px solid var(--line-soft); }
.legal-nav button { display: block; width: 100%; text-align: left; padding: 12px 16px; border-radius: var(--radius-sm); font-size: .9rem; color: var(--ink-soft); transition: all .2s; }
.legal-nav button.active { background: var(--burgundy); color: #fff; }
.legal-doc { display: none; max-width: 760px; }
.legal-doc.active { display: block; animation: fadeUp .5s ease; }
.legal-doc h2 { margin-bottom: 18px; }
.legal-doc h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal-doc p, .legal-doc li { font-size: .98rem; margin-bottom: 12px; color: var(--ink-soft); }
.legal-doc ul { list-style: disc; padding-left: 22px; }
.placeholder-data { background: var(--sand); padding: 2px 8px; border-radius: 6px; font-family: monospace; font-size: .85em; color: var(--burgundy-deep); }
.req-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.req-table td { padding: 12px 14px; border: 1px solid var(--line); font-size: .92rem; }
.req-table td:first-child { font-weight: 600; width: 42%; background: var(--ivory); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #D9D1C4; padding: 70px 0 30px; }
.footer a { color: #D9D1C4; }
.footer a:hover { color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand img { width: 64px; height: 64px; background: var(--cream); border-radius: 50%; padding: 4px; }
.footer .brand-name { color: var(--ivory); }
.footer .slogan { font-family: var(--font-serif); font-style: italic; color: var(--gold-soft); margin-top: 14px; max-width: 30ch; }
.footer h5 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer ul li { padding: 7px 0; font-size: .92rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: .82rem; color: #9c948a; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-icons { display: flex; gap: 12px; }
.footer-icons a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); color: var(--gold-soft); transition: all .25s; }
.footer-icons a:hover { background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #fff; transform: translateY(-2px); }
.footer-icons svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom .webmaster { width: 100%; text-align: center; margin-top: 12px; font-size: .8rem; color: #9c948a; }
.footer-bottom .webmaster u { color: var(--gold-soft); }

/* ============================================================
   FLOATING BUTTONS (mobile)
   ============================================================ */
.floating { position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 90; display: none; flex-direction: column; gap: 12px; }
.floating a { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); color: #fff; transition: transform .2s; }
.floating a:hover { transform: scale(1.08); }
.floating .wa { background: #25D366; }
.floating .tg { background: #229ED9; }
.floating svg { width: 26px; height: 26px; fill: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero__copy { max-width: 600px; margin: 0 auto; order: 2; }
  .hero__cta { justify-content: center; }
  .hero__art { order: 1; }
  .hero__art img { width: min(70%, 320px); }
  .programs-grid, .prog-cols { grid-template-columns: 1fr; }
  .about-preview, .about-hero, .contact-grid, .rewards { grid-template-columns: 1fr; }
  .about-preview__img { order: -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; gap: 8px; overflow-x: auto; }
  .legal-nav button { white-space: nowrap; }
  .gallery-item.span-4, .gallery-item.span-8 { grid-column: span 6; }
}
/* Collapse the desktop nav into a hamburger as soon as it can no longer fit
   on one row (full nav needs ~1050px). Prevents the brand/nav overlap and the
   off-screen CTA seen in the 760–1080px tablet range. */
@media (max-width: 1080px) {
  .nav, .header .lang-toggle { display: none; }
  .header.nav-open .nav {
    display: flex; position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream); padding: 16px 24px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .header.nav-open .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .menu-btn { display: flex; }
  .mobile-lang { display: flex !important; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .floating { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer .brand, .footer .slogan { margin: 0 auto; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom ul { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.span-6, .gallery-item.span-4, .gallery-item.span-8 { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .steps-bar .step-dot .lbl { display: none; }
  .t-quote { font-size: 1.3rem; }
}
.mobile-lang { display: none; }

/* ============================================================
   ADDITIONS — contact icon, tree band, gallery carousel, drill-down
   ============================================================ */
/* Contact icon in header */
.contact-ic { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--burgundy); transition: all .25s; }
.contact-ic:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); transform: translateY(-2px); }
.contact-ic svg { width: 19px; height: 19px; fill: currentColor; }

/* Get In Touch — messenger icons in site palette */
.msg-icons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.msg-icon { display: flex; flex-direction: column; align-items: center; gap: 9px; width: 84px; }
.msg-icon .circle { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(140deg, var(--sand), var(--camel)); color: var(--burgundy); border: 1px solid var(--line); transition: all .28s; }
.msg-icon:hover .circle { background: linear-gradient(140deg, var(--gold), var(--bronze)); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.msg-icon b { font-size: .8rem; color: var(--ink); font-weight: 600; }
.msg-icon small { font-size: .72rem; color: var(--ink-soft); }
.msg-icon svg { width: 28px; height: 28px; fill: currentColor; }

/* Integrated tree band (no box/frame) */
.tree-band { text-align: center; }
.tree-band img { width: min(420px, 76%); margin: 0 auto 8px; mix-blend-mode: multiply; }
.tree-band .slogan { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem,3vw,2rem); color: var(--burgundy); max-width: 22ch; margin: 0 auto; }

/* Gallery horizontal carousel */
.gallery-carousel { position: relative; }
.gallery-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 22px; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--camel); border-radius: 999px; }
.g-card {
  flex: 0 0 auto; width: min(78vw, 360px); aspect-ratio: 3/4; border-radius: var(--radius);
  overflow: hidden; position: relative; scroll-snap-align: center; box-shadow: var(--shadow-sm); cursor: pointer; background: var(--sand);
}
.g-card.wide { width: min(88vw, 560px); aspect-ratio: 16/10; }
.g-card img, .g-card video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.g-card:hover img { transform: scale(1.05); }
.g-card .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.g-card .play::after { content: "▶"; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--burgundy); display: flex; align-items: center; justify-content: center; font-size: .9rem; padding-left: 3px; }
.g-card .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px; background: linear-gradient(transparent, rgba(31,26,20,.78)); color: #fff; text-align: left; }
.g-card .cap b { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; display: block; }
.g-card .cap span { font-size: .76rem; opacity: .85; letter-spacing: .04em; }
.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 6px; }
.carousel-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--ivory); color: var(--ink); font-size: 1.1rem; transition: all .2s; }
.carousel-nav button:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }

/* Pricing drill-down */
.consultee-gate { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 40px auto 0; }
.gate-card { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 34px 28px; background: var(--ivory); cursor: pointer; transition: all .25s; text-align: center; }
.gate-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.gate-card.selected { border-color: var(--burgundy); background: #fff; box-shadow: var(--shadow-md); }
.gate-card .ic { font-size: 1.8rem; }
.gate-card h3 { font-size: 1.3rem; margin: 10px 0 6px; }
.gate-card p { font-size: .9rem; }
.price-stage { display: none; margin-top: 40px; }
.price-stage.active { display: block; animation: fadeUp .5s ease; }
.back-gate { background: none; color: var(--burgundy); font-weight: 600; font-size: .9rem; margin-bottom: 8px; display: inline-flex; gap: 6px; align-items: center; }

@media (max-width: 760px) {
  .consultee-gate { grid-template-columns: 1fr; }
  .tree-band img { width: 86%; }
}

/* ============================================================
   MASONRY GALLERY (vigbo-style photo grid)
   ============================================================ */
.masonry { column-count: 3; column-gap: 14px; }
.masonry .m-item {
  break-inside: avoid; margin: 0 0 14px; border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer; box-shadow: var(--shadow-sm); background: var(--sand); display: block;
}
.masonry .m-item img, .masonry .m-item video { width: 100%; height: auto; display: block; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.masonry .m-item:hover img { transform: scale(1.05); }
.masonry .m-item .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.masonry .m-item .play::after { content: "▶"; width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--burgundy); display: flex; align-items: center; justify-content: center; font-size: 1rem; padding-left: 3px; box-shadow: var(--shadow-sm); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 520px) { .masonry { column-count: 2; column-gap: 10px; } .masonry .m-item { margin-bottom: 10px; } }

/* ============================================================
   COOKIE BANNER (bottom-right, with OK)
   ============================================================ */
.cookie-banner {
  position: fixed; right: 20px; bottom: 20px; z-index: 150; max-width: 360px;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 22px 24px; transform: translateY(140%); opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s; bottom: calc(20px + env(safe-area-inset-bottom));
}
.cookie-banner.show { transform: none; opacity: 1; }
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner a { color: var(--burgundy); text-decoration: underline; }
.cookie-banner .row { display: flex; gap: 10px; align-items: center; }
.cookie-banner .btn { padding: 10px 26px; }
@media (max-width: 520px) { .cookie-banner { left: 16px; right: 16px; max-width: none; } }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-wrap { max-width: 1080px; margin: 0 auto; }
.prog-edit { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; background: var(--ivory); }
.prog-edit h3 { font-size: 1.15rem; margin-bottom: 16px; color: var(--burgundy); }
.bi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.bi-grid .lang-tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze); font-weight: 700; margin-bottom: 4px; }
.link-programs { display: inline-flex; align-items: center; gap: 6px; color: var(--burgundy); font-weight: 600; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; transition: all .2s; }
.link-programs:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
@media (max-width: 680px) { .bi-grid { grid-template-columns: 1fr; } }
.login-card { max-width: 420px; margin: 0 auto; background: var(--ivory); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.admin-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.admin-tabs button { padding: 9px 20px; border-radius: 999px; font-size: .88rem; font-weight: 600; color: var(--ink-soft); border: 1px solid transparent; }
.admin-tabs button.active { background: var(--burgundy); color: #fff; }
.admin-tabs button.has-new { background: #C0392B; color: #fff; border-color: #C0392B; animation: tabPulse 1.5s ease-in-out infinite; }
.admin-tabs button.has-new.active { background: #A93226; }
.admin-tabs .tab-badge { display: inline-block; min-width: 18px; height: 18px; line-height: 18px; padding: 0 5px; margin-left: 7px; border-radius: 999px; background: #fff; color: #C0392B; font-size: .72rem; font-weight: 700; text-align: center; }
@keyframes tabPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.45); } 50% { box-shadow: 0 0 0 6px rgba(192,57,43,0); } }
.admin-panel { display: none; } .admin-panel.active { display: block; animation: fadeUp .4s ease; }
.avail-grid { display: grid; grid-template-columns: 130px 1fr; gap: 10px 16px; align-items: center; }
.avail-grid .day { font-weight: 600; }
.time-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.time-pill { border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .82rem; cursor: pointer; user-select: none; transition: all .2s; }
.time-pill.on { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.admin-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.admin-row:last-child { border-bottom: none; }
.badge-st { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.badge-st.pending { background: #F7E9CC; color: #8a6d1f; }
.badge-st.approved { background: #EAF0E6; color: #3E5B3A; }
.badge-st.declined { background: #F3E0E2; color: var(--burgundy-deep); }
.admin-logout { font-size: .85rem; color: var(--burgundy); font-weight: 600; }

/* ============================================================
   POLISH PASS — typography, a11y, micro-interaction, texture
   (additive, low-risk; safe to revert as one block)
   ============================================================ */

/* Display headings: slight negative tracking gives Playfair more presence;
   balance/pretty prevent orphaned words on the last line. */
h1 { letter-spacing: -0.022em; }
h2 { letter-spacing: -0.015em; }
h1, h2, h3 { text-wrap: balance; }
p, .lead, .t-quote, .story p { text-wrap: pretty; }

/* Tabular figures keep prices, IDs and percentages aligned. */
.price-card .amount, .choice .pr, .confirm-card .ses-id,
.reward-list .pct, .program-card__num, .step-dot .num,
.req-table td, .slot { font-variant-numeric: tabular-nums; }

/* Anchor targets clear the fixed header (e.g. #pricing, #contact, #gallery). */
:where([id]) { scroll-margin-top: calc(var(--header-h) + 24px); }

/* Keyboard focus ring — visible only for keyboard users (:focus-visible),
   :where() keeps specificity 0 so existing component styles still win.
   Form fields keep their own gold focus glow (they aren't matched here). */
:where(a, button, .btn, .choice, .gate-card, .slot, [tabindex]):focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Physical "press" feedback on buttons. */
.btn:active { transform: translateY(0) scale(0.97); }

/* Very subtle film grain over the whole page to break digital flatness.
   pointer-events:none keeps it purely visual; header/modals sit above it. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .btn:active { transform: none; } }
