/* ============================================================
   Retreat Yoga in Luminis @ Alunis - landing page
   Font: Comfortaa | Paleta extrasa din PDF original
   ============================================================ */

:root {
  --cream:        #fffdf8;
  --cream-2:      #fdf6ec;
  --terracotta:   #c46a4b;
  --teal:         #3d8a7c;
  --teal-dark:    #2f7367;
  --pink:         #e8899a;
  --pink-soft:    #f6e1e0;
  --orange:       #f2a93b;
  --green-quote:  #559569;
  --ink:          #4f4a45;
  --ink-soft:     #6b645d;
  --gray:         #8d877f;
  --card-teal:    #dcebe2;
  --card-pink:    #f8e4e1;
  --peach:        #fdefd6;
  --peach-2:      #fbe6c4;
  --shadow:       0 14px 34px rgba(90, 70, 50, 0.14);
  --shadow-soft:  0 8px 22px rgba(90, 70, 50, 0.10);
  --radius:       20px;
  --radius-lg:    26px;
  --maxw:         860px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Comfortaa', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.72;
  font-size: 17px;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 50% -10%, #fffefb 0%, var(--cream) 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  background-attachment: fixed;
}

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

a { color: var(--teal); text-decoration: none; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; }
.section { padding: 64px 0; position: relative; }
.section--tight { padding: 40px 0; }

/* recurring lotus brand accent (top-right of content column) */
.lotus-accent {
  position: absolute;
  top: 6px;
  right: 20px;
  width: 60px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 480px) { .lotus-accent { width: 44px; top: 2px; right: 16px; } }

/* ---------- Eyebrow + heading ---------- */
.eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--teal);
  margin-top: 12px;
  opacity: 0.85;
}
.eyebrow--teal { color: var(--teal); }
.eyebrow--teal::after { background: var(--teal); }

h1, h2, h3 { font-weight: 700; line-height: 1.25; letter-spacing: 0.2px; }

.h-section {
  color: var(--pink);
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 26px;
}
.h-section--teal { color: var(--teal); }

/* ============================================================
   HERO
   ============================================================ */
.hero { text-align: center; padding: 46px 0 56px; }
.hero__logo {
  width: min(290px, 64vw);
  margin: 6px auto 26px;
  filter: drop-shadow(0 6px 14px rgba(120, 90, 60, 0.12));
}
.hero__title {
  color: var(--terracotta);
  font-size: clamp(1.78rem, 4.6vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 34px;
  line-height: 1.2;
}
.hero__gallery {
  display: grid;
  grid-template-columns: 0.92fr 1.12fr;
  gap: 18px;
  margin: 0 auto 30px;
}
.hero__gallery img {
  width: 100%;
  height: clamp(310px, 37vw, 470px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__gallery img:first-child { object-position: center 65%; }
.hero__gallery img.wide { object-position: center 45%; }
.hero__date {
  color: var(--gray);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 38px;
  align-items: start;
}
.intro__lead { font-size: 1.06rem; color: var(--ink-soft); margin-bottom: 18px; }
.prose p { margin-bottom: 16px; color: var(--ink); }
.prose p:last-child { margin-bottom: 0; }
.intro__photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  max-width: 340px;
  margin: 6px auto 0;
}
.statement {
  text-align: center;
  color: var(--pink);
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 720px;
  margin: 48px auto 40px;
}
.full-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* ============================================================
   INSTRUCTOR
   ============================================================ */
.deco-lotus { width: 80px; margin: 0 0 8px; opacity: 0.95; }
.instructor__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 30px;
}
.instructor__photo {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  max-width: 300px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.quote {
  position: relative;
  color: var(--green-quote);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.8;
  padding: 10px 26px 10px 30px;
  border-left: 3px solid var(--pink);
  margin: 18px 0 36px;
  max-width: 700px;
}
.quote::before {
  content: "\201C";
  position: absolute;
  left: 6px; top: -10px;
  font-size: 3rem;
  color: var(--pink);
  font-style: normal;
  line-height: 1;
  opacity: 0.7;
}
.instructor__images {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 22px;
  align-items: end;
}
.instructor__images img:first-child {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 3 / 2;
  width: 100%;
}
.instructor__cutout {
  height: clamp(360px, 34vw, 480px);
  width: auto;
  max-width: 100%;
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 16px 22px rgba(80, 60, 40, 0.18));
}

/* ============================================================
   LOCATION
   ============================================================ */
.gallery {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}
.gallery--3 { grid-template-columns: repeat(3, 1fr); }
.gallery--2 { grid-template-columns: repeat(2, 1fr); }
.gallery img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.gallery--portrait img { aspect-ratio: 3 / 4; }
.caption {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin-top: 18px;
  font-style: italic;
}

/* ============================================================
   PROGRAM
   ============================================================ */
.program { position: relative; }
.program__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 36px;
  align-items: start;
}
.program__intro { color: var(--ink-soft); margin-bottom: 28px; }
.program__photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center 72%;
  width: 100%;
  aspect-ratio: 4 / 5;
  position: sticky;
  top: 24px;
}
.day { margin-bottom: 26px; }
.day__name {
  color: var(--terracotta);
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.slot {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(141, 135, 127, 0.25);
  align-items: baseline;
}
.slot:last-child { border-bottom: none; }
.slot__time {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
}
.slot__act { color: var(--ink); font-size: 1rem; }
.slot--free .slot__act { color: var(--ink-soft); font-style: italic; }

/* ============================================================
   INCLUS / PRET / INSCRIERE
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
.card {
  border-radius: var(--radius-lg);
  padding: 30px 30px 32px;
}
.card--inc { background: var(--card-teal); }
.card--exc { background: var(--card-pink); }
.card__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 18px; }
.card--inc .card__title { color: var(--teal-dark); }
.card--exc .card__title { color: var(--terracotta); }
.card ul { list-style: none; }
.card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.55;
}
.card li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.card--inc li::before { background: var(--teal); }
.card--exc li::before { background: var(--pink); }

/* Pret */
.price-wrap { margin-top: 56px; }
.price-label {
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 700;
  text-align: right;
  margin-bottom: 14px;
}
.price-box {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-2) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.earlybird { text-align: center; position: relative; min-width: 230px; }
.earlybird svg { width: 230px; height: auto; display: block; margin: 0 auto -6px; }
.earlybird__price {
  color: var(--teal);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
}
.price-late { }
.price-late__when { color: var(--terracotta); font-weight: 700; font-size: 1.15rem; }
.price-late__amount { color: var(--terracotta); font-weight: 700; font-size: 1.55rem; margin-top: 4px; }
.price-note { color: var(--gray); margin-top: 16px; font-size: 0.98rem; }

/* Inscriere */
.signup { margin-top: 56px; }
.signup__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 8px;
}
.signup__link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 4px;
  max-width: 320px;
  display: inline-block;
  line-height: 1.5;
}
.signup__link:hover { color: var(--teal); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 15px 28px;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--teal); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(61, 138, 124, 0.32); }
.btn__arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.22s ease;
}
.btn:hover .btn__arrow { background: #fff; color: var(--teal); }

/* solid (filled) button variant */
.btn--solid {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 10px 22px rgba(61, 138, 124, 0.26);
}
.btn--solid .btn__arrow { background: #fff; color: var(--teal); }
.btn--solid:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.btn--solid:hover .btn__arrow { background: #fff; color: var(--teal-dark); }

/* mid-page CTA band */
.cta-band { text-align: center; padding: 26px 0 30px; }
.cta-band__text {
  color: var(--ink-soft);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.cta-band .btn { font-size: 1.3rem; padding: 16px 34px; }
@media (max-width: 480px) {
  .cta-band__text { font-size: 1.05rem; }
  .cta-band .btn { font-size: 1.05rem; padding: 14px 24px; }
}
.contact-note {
  text-align: center;
  color: var(--gray);
  margin-top: 36px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.contact-note a { color: var(--gray); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.contact-note a:hover { color: var(--teal); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(141, 135, 127, 0.2);
}
.faq__item:last-child { border-bottom: none; }
.faq__q {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.faq__a { color: var(--ink-soft); }
.faq__a br { content: ""; display: block; margin-bottom: 4px; }

/* ============================================================
   CLOSING / FOOTER
   ============================================================ */
.closing { text-align: center; padding: 30px 0 70px; }
.closing__title {
  color: var(--terracotta);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 26px;
}
.closing__logo { width: 150px; margin: 0 auto; opacity: 0.96; }

/* ---------- decorative lotus separator ---------- */
.sep { text-align: center; padding: 14px 0 0; }
.sep img { width: 64px; margin: 0 auto; opacity: 0.9; }

/* ============================================================
   SCROLL REVEAL (no-JS safe: only hidden when html.js)
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 46px 0; }
  .intro__grid,
  .instructor__grid,
  .program__grid { grid-template-columns: 1fr; gap: 26px; }
  .intro__photo, .instructor__photo { max-width: 260px; }
  .program__photo { position: static; aspect-ratio: 3/2; object-position: center; }
  .program__grid { display: flex; flex-direction: column; }
  .program__photo { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .price-box { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .price-label { text-align: center; }
  .earlybird { margin: 0 auto; }
  .price-late { text-align: center; }
  .signup__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .signup__link { text-align: center; }
  .instructor__images { grid-template-columns: 1fr; }
  .instructor__cutout { height: 400px; width: auto; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero__gallery { grid-template-columns: 1fr; }
  .hero__gallery img, .hero__gallery img.wide { height: clamp(240px, 62vw, 320px); }
  .slot { grid-template-columns: 86px 1fr; gap: 8px; }
  .card { padding: 24px 22px; }
  .btn { font-size: 0.98rem; padding: 13px 20px; gap: 9px; }
  .btn__arrow { width: 26px; height: 26px; }
}
