/* ============================================================
   ALIN LAZARESCU — style.css
   Design: White-base, Gold & Dark accents, Bebas Neue
   Approach: Mobile-First (min-width breakpoints)
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --gold:         #C8A93E;
  --gold-light:   #E0C960;
  --gold-dark:    #9A7E28;
  --gold-pale:    #F9F5E8;
  --gold-border:  rgba(200, 169, 62, 0.28);

  --bg:           #FFFFFF;
  --bg-2:         #FAFAF8;
  --bg-3:         #F5F3EE;
  --bg-4:         #EDEAD9;

  --ink:          #0D0D0D;
  --ink-2:        #1A1A1A;
  --ink-3:        #2E2E2E;
  --ink-mid:      #555555;
  --ink-faint:    #999999;

  --border:       rgba(0, 0, 0, 0.08);
  --border-dark:  rgba(0, 0, 0, 0.16);

  --hero-bg:      #0D0D0D;
  --lorai-bg:     #05050F;
  --error:        #C0392B;
  --success:      #27AE60;
  --white:        #FFFFFF;

  --font-display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-serif:   'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:        60px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:      cubic-bezier(0.65, 0, 0.35, 1);
  --transition:   0.3s var(--ease);

  --radius-sm:    4px;
  --radius-md:    8px;

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold:  0 8px 32px rgba(200,169,62,0.28);
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--ink-3);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; padding: 0; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }
svg { display: block; }

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── TYPOGRAPHY ─── */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }
.kicker--light { color: var(--gold-light); }
.kicker--light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--gold-dark); }
.section-title--wh { color: var(--white); }
.section-title--wh em { color: var(--gold); }
.section-title--center { text-align: center; }

.section-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink-mid);
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  /* angled corners */
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover, .btn--dark:focus-visible {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-3);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold-border);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--full { width: 100%; }
.btn--lg   { padding: 16px 40px; font-size: 0.78rem; }

/* Focus-visible global */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   NAV — MOBILE FIRST
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav--scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
  display: block;
  -webkit-tap-highlight-color: transparent;
}
.nav__logo span { color: var(--gold-dark); }

/* ── Hamburger button ── */
.nav__burger {
  display: flex;          /* always show on mobile */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 9200;          /* above drawer */
}
.nav__burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center center;
  pointer-events: none;
}

/* Burger open state */
.nav__burger[aria-expanded="true"] .nav__burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav__burger[aria-expanded="true"] .nav__burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Desktop links — hidden on mobile ── */
.nav__links {
  display: none;       /* hidden until ≥1024px */
}

/* ── Mobile Drawer — sits outside the nav, full-screen ── */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8900;
  background: var(--white);
  border-top: 3px solid var(--gold);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 24px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0s linear 0.28s;
  pointer-events: none;
}
.nav__drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0s linear 0s;
  pointer-events: all;
}

.nav__drawer__link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__drawer__link:hover,
.nav__drawer__link:focus-visible { color: var(--gold-dark); }

.nav__drawer__link--book { color: var(--gold-dark); font-weight: 700; }

.nav__drawer__cta {
  display: block;
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: background 0.25s, transform 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.nav__drawer__cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Body lock when drawer open */
body.nav-open { overflow: hidden; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;     /* safe area aware */
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--hero-bg);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(200,169,62,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(200,169,62,0.04) 0%, transparent 45%);
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(200,169,62,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,62,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero__inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 60px 0 100px;
}
.hero__content { order: 2; }
.hero__kicker   { margin-bottom: 16px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 13vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title em { font-style: normal; color: var(--gold); display: block; }
.hero__sub {
  font-family: var(--font-serif);
  font-size: 1.10rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__ctas .btn { width: 100%; justify-content: center; }

/* Book mockup */
.hero__visual { order: 1; display: flex; justify-content: center; }
.hero__book-wrap { position: relative; width: 240px; }
.hero__book-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse, rgba(200,169,62,0.20) 0%, transparent 65%);
  animation: bookGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bookGlow {
  from { opacity: 0.5; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.06); }
}
.hero__book {
  position: relative; z-index: 1;
  background: linear-gradient(145deg, #1c1c1c, #272727);
  border: 1px solid rgba(200,169,62,0.35);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(200,169,62,0.15);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.hero__book-spine {
  position: absolute; left: 0; top: 0; bottom: 0; width: 12px;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.hero__book-badge {
  position: absolute; top: -12px; right: -12px;
  width: 64px; height: 64px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-gold);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.hero__book-badge span {
  font-family: var(--font-display);
  font-size: 0.6rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1.3; text-align: center;
}
.hero__book-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,62,0.1);
  border: 1px solid rgba(200,169,62,0.22);
  padding: 3px 12px; margin-bottom: 18px; display: inline-block;
}
.hero__book-title {
  font-family: var(--font-display);
  font-size: 2.2rem; line-height: 0.92;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.hero__book-title em { font-style: normal; color: var(--gold); font-size: 2.8rem; display: block; }
.hero__book-divider  { width: 40px; height: 1px; background: var(--gold); margin: 16px auto; }
.hero__book-author   {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero__scroll span {
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--gold); padding: 10px 0; overflow: hidden; }
.ticker__inner {
  display: flex; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: 0.95rem; letter-spacing: 0.1em;
  color: var(--ink); padding: 0 32px;
  text-transform: uppercase; white-space: nowrap;
  display: flex; align-items: center; gap: 14px;
}
.ticker__item::after {
  content: '\25C6'; /* ◆ */
  font-size: 0.45rem; color: rgba(0,0,0,0.25);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BOOK SECTION
   ============================================================ */
.book-section {
  padding: 80px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.book-section::before {
  content: 'ZFM';
  position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 14rem; color: rgba(200,169,62,0.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.book-section__grid {
  display: flex; flex-direction: column; gap: 48px;
}
.book-3d-wrap { display: none; /* shown on desktop */ perspective: 1000px; }
.book-3d {
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(4deg);
  transition: transform 0.6s var(--ease);
  width: 280px; height: 390px; margin: 0 auto; position: relative;
}
.book-3d:hover { transform: rotateY(-5deg) rotateX(2deg); }
.book-3d__front {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, var(--bg-3), var(--bg-4));
  border: 1px solid rgba(200,169,62,0.32);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 36px; text-align: center;
  box-shadow: 20px 20px 56px rgba(0,0,0,0.12), inset 0 1px 0 rgba(200,169,62,0.2);
}
.book-3d__spine {
  position: absolute; left: -18px; top: 0; bottom: 0; width: 18px;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 2px 0 0 2px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.12);
}
.book-3d__shadow {
  position: absolute; bottom: -16px; left: -6px; right: -6px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.09) 0%, transparent 70%);
  filter: blur(10px);
}
.book-3d__tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
  background: rgba(200,169,62,0.08);
  border: 1px solid var(--gold-border);
  padding: 4px 12px; margin-bottom: 20px; display: inline-block;
}
.book-3d__title {
  font-family: var(--font-display);
  font-size: 2rem; line-height: 0.92;
  color: var(--ink); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.book-3d__title em { font-style: normal; color: var(--gold-dark); font-size: 2.6rem; display: block; }
.book-3d__rule { width: 40px; height: 2px; background: var(--gold); margin: 16px auto; }
.book-3d__author {
  font-family: var(--font-display);
  font-size: 0.9rem; letter-spacing: 0.18em;
  color: var(--ink-faint); text-transform: uppercase;
}

.book-content__desc {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--ink-mid);
  line-height: 1.8; margin-bottom: 32px;
}
.book-features { margin-bottom: 36px; }
.book-feature {
  display: flex; align-items: flex-start;
  gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.book-feature:last-child { border: none; }
.book-feature__num {
  font-family: var(--font-display); font-size: 1.8rem;
  color: rgba(200,169,62,0.22); line-height: 1;
  flex-shrink: 0; width: 36px;
}
.book-feature__text strong {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--ink); margin-bottom: 2px;
}
.book-feature__text span { font-size: 0.8rem; color: var(--ink-faint); }

.book-ctas {
  display: flex; flex-direction: column; gap: 12px;
}
.book-ctas .btn { width: 100%; justify-content: center; }

/* ============================================================
   CONSULTING 1-la-1
   ============================================================ */
.consulting {
  padding: 80px 0;
  background: var(--bg-3);
  position: relative; overflow: hidden;
}
.consulting__bg-num {
  position: absolute; left: -10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: 20rem;
  color: rgba(200,169,62,0.04); line-height: 1;
  pointer-events: none; user-select: none;
}
.consulting__inner { display: flex; flex-direction: column; gap: 48px; }

.consulting__live {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gold-border);
  padding: 5px 14px 5px 10px; margin-bottom: 20px;
}
.consulting__dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;
}
.consulting__live span {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark);
}
.consulting__desc {
  font-family: var(--font-serif);
  font-size: 1.08rem; color: var(--ink-mid);
  line-height: 1.8; margin-bottom: 36px;
}
.c-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.c-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 20px; transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.c-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 6px 20px rgba(200,169,62,0.07);
  transform: translateY(-2px);
}
.c-card__icon  { font-size: 1.3rem; margin-bottom: 10px; display: block; }
.c-card__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; }
.c-card__text  { font-size: 0.78rem; color: var(--ink-faint); line-height: 1.6; }

.consulting__cta-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  padding: 32px 28px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 10px 36px rgba(200,169,62,0.07);
}
.consulting__cta-card h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--ink); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 8px;
}
.consulting__cta-card > p {
  font-size: 0.85rem; color: var(--ink-faint);
  margin-bottom: 22px; line-height: 1.6;
}
.consulting__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.consulting__price-amt {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--gold-dark); line-height: 1;
}
.consulting__price-lbl { font-size: 0.76rem; color: var(--ink-faint); letter-spacing: 0.06em; line-height: 1.5; }
.btn-gap { margin-top: 10px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 80px 0; background: var(--bg); }
.about__grid { display: flex; flex-direction: column; gap: 48px; }
.about__photo-wrap { display: block; position: relative; }
.about__photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--ink-faint); overflow: hidden;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-deco {
  position: absolute; bottom: -16px; right: -16px;
  width: 80px; height: 80px; background: var(--gold); opacity: 0.12; z-index: -1;
}
.about__body p {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--ink-mid);
  margin-bottom: 16px; line-height: 1.8;
}
.about__body p strong { color: var(--ink); font-style: italic; }
.about__stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--font-display); font-size: 2.8rem;
  color: var(--gold-dark); line-height: 1; display: block;
}
.stat__lbl {
  font-size: 0.68rem; color: var(--ink-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-top: 3px;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { padding: 80px 0; background: var(--bg-3); }
.timeline__header { margin-bottom: 56px; }
.timeline__track { position: relative; padding-left: 36px; }
.timeline__track::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.tl-item { padding: 0 0 48px 20px; position: relative; }
.tl-item::before {
  content: '';
  position: absolute; left: -5px; top: 7px;
  width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid var(--bg-3);
  box-shadow: 0 0 0 3px rgba(200,169,62,0.2);
}
.tl-item__year {
  font-family: var(--font-display);
  font-size: 0.85rem; color: var(--gold-dark);
  letter-spacing: 0.15em; display: block; margin-bottom: 5px;
}
.tl-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 7px;
}
.tl-item p {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--ink-mid);
  line-height: 1.45; max-width: 480px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 80px 0; background: var(--bg); }
.services__header { text-align: center; margin-bottom: 56px; }
.services__header .section-sub { margin: 12px auto 0; max-width: 500px; }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--border); }
.svc {
  background: var(--bg); padding: 40px 28px;
  transition: var(--transition); position: relative;
}
.svc:hover { background: var(--bg-3); }
.svc::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--gold);
  transition: width 0.35s var(--ease);
}
.svc:hover::after { width: 100%; }
.svc__num {
  font-family: var(--font-display); font-size: 3rem;
  color: rgba(200,169,62,0.14); line-height: 1; margin-bottom: 16px;
}
.svc__title {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--ink); text-transform: uppercase;
  letter-spacing: 0.03em; margin-bottom: 12px;
}
.svc__desc {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--ink-mid); line-height: 1.55;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { padding: 80px 0; background: var(--bg-3); }
.packages__header { text-align: center; margin-bottom: 56px; }
.packages__grid { display: flex; flex-direction: column; gap: 2px; background: var(--gold-border); }
.pkg {
  background: var(--white); padding: 40px 28px;
  position: relative; transition: var(--transition);
}
.pkg:hover { background: var(--bg-2); }
.pkg--featured {
  background: var(--bg-3);
  border: 2px solid var(--gold);
}
.pkg--featured::after {
  content: 'RECOMANDAT';
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em;
  padding: 4px 14px;
}
.pkg__badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 16px;
}
.pkg--featured .pkg__badge { color: var(--gold-dark); }
.pkg__title {
  font-family: var(--font-display); font-size: 1.8rem;
  letter-spacing: 0.04em; color: var(--ink);
  text-transform: uppercase; margin-bottom: 20px; line-height: 1;
}
.pkg__price { margin-bottom: 24px; }
.pkg__amount {
  font-family: var(--font-display); font-size: 2.8rem;
  color: var(--ink); line-height: 1; display: block;
}
.pkg--featured .pkg__amount { color: var(--gold-dark); }
.pkg__period { font-size: 0.74rem; color: var(--ink-faint); letter-spacing: 0.06em; }
.pkg__features { margin-bottom: 28px; }
.pkg__features li {
  padding: 9px 0 9px 18px; font-size: 0.86rem;
  color: var(--ink-mid); border-bottom: 1px solid var(--border);
  position: relative;
}
.pkg__features li:last-child { border: none; }
.pkg__features li::before {
  content: '\2014'; /* em dash */
  position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.pkg--featured .pkg__features li { color: var(--ink-3); }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof__label {
  text-align: center; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.25em; color: var(--ink-faint);
  text-transform: uppercase; margin-bottom: 32px;
}
.logos-strip {
  display: flex; align-items: center;
  justify-content: center; gap: 36px; flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-display); font-size: 1rem;
  letter-spacing: 0.1em; color: rgba(0,0,0,0.14);
  text-transform: uppercase; transition: color 0.3s;
}
.logo-item:hover { color: var(--gold-dark); }

.logo-img {
  height: 40px; /* ajustezi în funcție de header */
  width: auto;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 80px 0; background: var(--bg-3); }
.testimonials__header { text-align: center; margin-bottom: 56px; }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--border); }
.testi {
  background: var(--white); padding: 40px 28px;
  transition: var(--transition); position: relative;
}
.testi:hover { background: var(--bg-3); }
.testi__stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi__text {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--ink-mid);
  line-height: 1.75; margin-bottom: 24px; font-style: italic;
}
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bg-4); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; color: var(--gold-dark);
}
.testi__author strong { display: block; font-size: 0.85rem; color: var(--ink); font-weight: 600; }
.testi__author span   { font-size: 0.74rem; color: var(--ink-faint); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 80px 0; background: #0d0d0d; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,62,0.06), transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(200,169,62,0.04), transparent 55%);
}
.cta-banner__inner { position: relative; z-index: 1; text-align: center; }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 10vw, 5rem);
  line-height: 0.94; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 16px;
}
.cta-banner__title em { font-style: normal; color: var(--gold); }
.cta-banner__text {
  font-family: var(--font-serif);
  font-size: 1.25rem; color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-banner__btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-banner__btns .btn { width: 100%; max-width: 360px; justify-content: center; }

/* ============================================================
   LORAI
   ============================================================ */
.lorai { padding: 80px 0; background: #261035; position: relative; overflow: hidden; }
.lorai::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(100,50,200,0.06), transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(200,169,62,0.05), transparent 50%);
}
.lorai__grid { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 48px; }
.lorai__desc {
  font-family: var(--font-serif);
  font-size: 1.10rem; color: rgba(255,255,255,0.45);
  line-height: 1.8; margin-bottom: 36px;
}
.lorai__features { margin-bottom: 36px; }
.lorai__feature {
  display: flex; gap: 16px; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lorai__feature:last-child { border: none; }
.lorai__feature-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(200,169,62,0.08);
  border: 1px solid rgba(200,169,62,0.18);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.lorai__feature-icon svg { width: 15px; height: 15px; }
.lorai__feature strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 2px; }
.lorai__feature p { font-size: 0.78rem; color: rgba(255,255,255,0.36); line-height: 1.5; }

.lorai__phone {
  background: #141425; border: 1px solid rgba(100,50,200,0.3);
  border-radius: 18px; width: 200px; height: 380px;
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.18);
  box-shadow: 0 0 50px rgba(100,50,200,0.12), 0 0 0 1px rgba(200,169,62,0.06);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 80px 0; background: var(--bg); }
.contact__grid { display: flex; flex-direction: column; gap: 48px; }
.contact__desc {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--ink-mid);
  line-height: 1.8; margin-bottom: 32px;
}
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__detail  { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--ink-mid); }
.contact__detail svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; }
.contact__detail a:hover { color: var(--gold-dark); }

/* ============================================================
   FORMS
   ============================================================ */
.form-box {
  background: var(--bg-3); border: 1px solid var(--border);
  padding: 32px 24px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.form__group { position: relative; margin-bottom: 18px; }
.form__input {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border-dark);
  color: var(--ink); padding: 15px 14px 15px 14px;
  font-size: 0.9rem; transition: border-color 0.25s;
  outline: none;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.form__input:focus { border-color: var(--gold); }
.form__input::placeholder { color: transparent; }
.form__label {
  position: absolute; left: 14px;
  top: 50%; transform: translateY(-50%);
  font-size: 0.82rem; color: var(--ink-faint);
  pointer-events: none; transition: all 0.25s; background: transparent;
}
textarea ~ .form__label { top: 18px; transform: none; }

.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown) ~ .form__label {
  top: -9px; left: 10px; transform: translateY(0);
  font-size: 0.66rem; color: var(--gold-dark);
  background: var(--bg-3); padding: 0 4px;
}
textarea:focus ~ .form__label,
textarea:not(:placeholder-shown) ~ .form__label {
  top: -9px; left: 10px; transform: none;
  font-size: 0.66rem; color: var(--gold-dark);
  background: var(--bg-3); padding: 0 4px;
}

textarea.form__input { resize: vertical; min-height: 110px; padding-top: 14px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form__checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 20px;
}
.form__checkbox input[type=checkbox] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.form__checkbox a { color: var(--gold-dark); text-decoration: underline; }
.form__error { font-size: 0.7rem; color: var(--error); margin-top: 3px; display: block; }
.form__input--error { border-color: var(--error) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.5);
  border-top: 3px solid var(--gold); padding: 56px 0 32px;
}
.footer__inner { display: flex; flex-direction: column; gap: 36px; margin-bottom: 40px; }
.footer__logo  {
  font-family: var(--font-display); font-size: 1.5rem;
  letter-spacing: 0.06em; color: var(--white); margin-bottom: 10px;
}
.footer__logo span { color: var(--gold); }
.footer__brand p  { font-size: 0.82rem; line-height: 1.6; max-width: 240px; }
.footer__col h4   {
  font-family: var(--font-display); font-size: 0.82rem;
  letter-spacing: 0.14em; color: var(--white); text-transform: uppercase; margin-bottom: 16px;
}
.footer__col a {
  display: block; font-size: 0.8rem; margin-bottom: 10px;
  transition: color 0.25s; -webkit-tap-highlight-color: transparent;
}
.footer__col a:hover { color: var(--gold); }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.footer__bottom p { font-size: 0.74rem; }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; align-items: flex-end;   /* sheet from bottom on mobile */
  justify-content: center;
  padding: 0; opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.modal__content {
  position: relative; z-index: 1;
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  padding: 32px 20px 48px;
  width: 100%; max-width: 100%;
  max-height: 92vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(24px);
  transition: transform 0.3s var(--ease);
}
.modal.is-open .modal__content { transform: translateY(0); }
.modal__close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--ink-faint);
  transition: color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.modal__close:hover { color: var(--ink); }
.modal__title {
  font-family: var(--font-display); font-size: 1.8rem;
  letter-spacing: 0.05em; color: var(--ink);
  text-transform: uppercase; margin-bottom: 6px; padding-right: 40px;
}
.modal__subtitle {
  font-family: var(--font-serif);
  font-size: 0.98rem; color: var(--ink-faint);
  margin-bottom: 24px; line-height: 1.6;
}
.modal .form-box  { padding: 0; background: transparent; border: none; clip-path: none; }
.modal .form__input { background: var(--bg-3); }
.modal .form__input:focus ~ .form__label,
.modal .form__input:not(:placeholder-shown) ~ .form__label { background: var(--white); }
.modal textarea:focus ~ .form__label,
.modal textarea:not(:placeholder-shown) ~ .form__label { background: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.anim-fade {
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease) forwards;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.36s; }
.anim-delay-4 { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.scroll-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TABLET  ≥ 640px
   ============================================================ */
@media (min-width: 640px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 32px; }
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .hero__ctas .btn { width: auto; }
  .hero__book-wrap { width: 280px; }
  .book-ctas { flex-direction: row; }
  .book-ctas .btn { width: auto; flex: 1; }
  .form__row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .c-cards { gap: 16px; }
  /* Modal: center on tablet */
  .modal { align-items: center; padding: 20px; }
  .modal__content {
    max-width: 540px; border-radius: 0;
    padding: 40px 36px 48px;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  }
  .form-box { padding: 40px 36px; }
}

/* ============================================================
   LAPTOP  ≥ 1024px
   ============================================================ */
@media (min-width: 1024px) {
  :root { --nav-h: 70px; }
  .container { padding: 0 40px; }

  /* Nav: show desktop links, hide burger */
  .nav__burger { display: none !important; }
  .nav__links  {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }
  .nav__link {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-mid); transition: color 0.25s;
    padding: 4px 0; position: relative;
  }
  .nav__link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.3s var(--ease);
  }
  .nav__link:hover        { color: var(--ink); }
  .nav__link:hover::after { width: 100%; }
  .nav__link--book        { color: var(--gold-dark); font-weight: 700; }
  .nav__link--cta {
    background: var(--ink); color: var(--white) !important;
    padding: 8px 20px;
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
    font-size: 0.66rem;
  }
  .nav__link--cta::after  { display: none; }
  .nav__link--cta:hover   { background: var(--gold) !important; color: var(--ink) !important; }

  /* Hero two-column */
  .hero__inner { flex-direction: row; align-items: center; gap: 80px; padding: 80px 0 100px; }
  .hero__content { order: 1; flex: 1; }
  .hero__visual  { order: 2; flex-shrink: 0; }
  .hero__book-wrap { width: 360px; }
  .hero__title { font-size: clamp(4rem, 6.5vw, 8rem); }
  .hero__sub   { font-size: 1.15rem; }
  .hero__ctas  { flex-direction: row; }
  .hero__ctas .btn { width: auto; }

  /* Book section two-column */
  .book-3d-wrap { display: block; }
  .book-section__grid { flex-direction: row; align-items: center; }
  .book-content { flex: 1; }
  .book-ctas .btn { flex: 0 0 auto; }

  /* Consulting two-column */
  .consulting__inner { flex-direction: row; align-items: flex-start; gap: 80px; }

  /* About two-column */
  .about__grid { flex-direction: row; align-items: center; gap: 80px; }
  .about__photo-wrap { display: block; flex: 0 0 360px; }

  /* Services 2x2 */
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  /* Packages 3-col */
  .packages__grid { flex-direction: row; }
  .pkg { flex: 1; }

  /* Testimonials 2-col */
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA banner inline buttons */
  .cta-banner__btns { flex-direction: row; justify-content: center; }
  .cta-banner__btns .btn { width: auto; max-width: none; }

  /* Lorai two-column */
  .lorai__grid { flex-direction: row; align-items: center; }

  /* Contact two-column */
  .contact__grid { flex-direction: row; align-items: flex-start; gap: 80px; }
  .contact__info { flex: 0 0 380px; }

  /* Footer 4-col */
  .footer__inner { flex-direction: row; align-items: flex-start; gap: 48px; }
  .footer__brand { flex: 0 0 240px; }
  .footer__cols  { flex: 1; grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================================
   DESKTOP  ≥ 1280px
   ============================================================ */
@media (min-width: 1280px) {
  .book-section, .consulting, .about, .timeline,
  .services, .packages, .testimonials, .cta-banner, .lorai, .contact {
    padding: 100px 0;
  }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .modal, .hero__scroll, .ticker { display: none !important; }
  body { font-size: 12pt; background: white; color: black; }
  section { page-break-inside: avoid; }
}
