/* ── Design Tokens ── */
:root {
  --bg:          #0d0d0d;
  --bg-alt:      #080808;
  --bg-card:     #111111;
  --bg-featured:  #131008;
  --gold:        #c9a96e;
  --gold-dim:    #8b6f3e;
  --gold-shine:  linear-gradient(135deg, #a07830 0%, #e8d080 35%, #c9a96e 65%, #a07830 100%);
  --text:        #ffffff;
  --text-muted:  #bbbbbb;
  --text-dim:    #888888;
  --border:      #1a1a1a;
  --border-card: #2a2a2a;
  --wa-green:    #25D366;
  --wa-shadow:   rgba(37, 211, 102, 0.35);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --r:           6px;
  --section-pad: 64px 24px;
}

/* ── Gold shimmer — applied everywhere gold text appears ── */
.section-label,
.section-title em,
.hero-h1 em,
.hero-sub span,
.proof-num,
.pkg-price {
  background: var(--gold-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; }

/* ── Section label ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

/* ── Section title ── */
.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}
.section-title em { color: var(--gold); font-style: italic; }

/* ── Buttons ── */
.btn-wa {
  display: block;
  width: 100%;
  background: var(--gold-shine);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: var(--r);
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(201, 169, 110, 0.28);
}
.btn-call {
  display: block;
  width: 100%;
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 11px;
  border-radius: var(--r);
  text-align: center;
  margin-top: 10px;
}

/* ── Gold divider ── */
.gold-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a07830, #e8d080, #c9a96e, transparent);
  margin: 8px auto;
}

/* ════════════════════════════════════════
   NAV (desktop only — hidden on mobile)
   ════════════════════════════════════════ */
#nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}
.nav-logo {
  font-family: var(--font-serif);
  letter-spacing: 5px;
  font-size: 13px;
  text-transform: uppercase;
  background: var(--gold-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links a {
  background: var(--gold-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #1a1510;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    transparent 35%,
    rgba(0,0,0,0.7) 65%,
    rgba(0,0,0,0.94) 100%
  );
}
.hero-top {
  position: relative;
  z-index: 2;
  padding: 52px 0 0;
  text-align: center;
}
.hero-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 9px;
  text-transform: uppercase;
  background: var(--gold-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 24px 48px;
  text-align: center;
}
.hero-h1 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero-h1 em { color: var(--gold); }
.hero-sub {
  font-size: 13px;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-sub span { color: var(--gold); }

.hero-kw {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ── Desktop hero overrides ── */
@media (min-width: 1024px) {
  #nav { display: flex; }
  #hero { justify-content: space-between; }
  .hero-top {
    padding: 100px 0 0 60px;
    text-align: left;
  }
  .hero-logo { font-size: 28px; letter-spacing: 12px; }
  .gold-line { margin: 10px 0; }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.5) 50%,
      transparent 100%
    );
  }
  .hero-bottom {
    padding: 0 60px 80px;
    text-align: left;
    max-width: 560px;
  }
  .hero-h1 { font-size: 52px; }
  .btn-wa, .btn-call { display: inline-block; width: auto; }
  .btn-wa { padding: 15px 32px; margin-right: 12px; }
  .btn-call { padding: 13px 22px; margin-top: 0; }
  html { scroll-padding-top: 70px; }
}

/* ════════════════════════════════════════
   PROOF BAR
   ════════════════════════════════════════ */
#proof {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 24px 16px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-item--desktop { display: none; }
.proof-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.proof-desc {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

/* ════════════════════════════════════════
   DE CE TUDOR
   ════════════════════════════════════════ */
#de-ce {
  padding: var(--section-pad);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r);
}
.why-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
}
.why-card h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.why-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Desktop overrides ── */
@media (min-width: 1024px) {
  #proof { padding: 28px 60px; justify-content: center; gap: 80px; }
  .proof-item--desktop { display: flex; }
  .proof-num { font-size: 36px; }

  #de-ce { padding: 80px 60px; }
  .why-grid { flex-direction: row; gap: 24px; }
  .why-card { flex: 1; }
  .why-card h3 { font-size: 16px; }
  .why-card p { font-size: 14px; }
  .proof-desc { font-size: 13px; }
}

/* ════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════ */
#galerie {
  padding: var(--section-pad);
  padding-left: 0;
  padding-right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
#galerie .section-label,
#galerie .section-title { padding: 0 24px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 0;
}
.gallery-cell {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.gallery-cell.visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-cell--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-context {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  padding: 0 24px;
}

.gallery-empty {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  padding: 24px;
  font-family: var(--font-sans);
}
.gallery-more {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
}
.btn-outline {
  display: inline-block;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  padding: 11px 28px;
  border-radius: var(--r);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ── Desktop overrides ── */
@media (min-width: 1024px) {
  .section-label { text-align: left; font-size: 12px; }
  .section-title { font-size: 36px; margin-bottom: 48px; text-align: left; }
  .hero-sub { font-size: 15px; }
  #galerie { padding: 80px 60px; }
  #galerie .section-label,
  #galerie .section-title { padding: 0; }
  .gallery-context { text-align: left; padding: 0; font-size: 13px; }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .gallery-cell { aspect-ratio: 1; }
  .gallery-cell--wide { grid-column: span 1; aspect-ratio: 1; }
  /* Ultimul cell singur pe rând → ocupă toată linia */
  .gallery-cell:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
    aspect-ratio: 3 / 1;
  }
}

/* ════════════════════════════════════════
   TUDOR — personal section
   ════════════════════════════════════════ */
#tudor {
  padding: var(--section-pad);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.tudor-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.tudor-photo-wrap {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.tudor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--border-card);
  filter: grayscale(20%);
}
.tudor-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.tudor-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 6px;
  transition: opacity 0.2s;
}
.tudor-link:hover { opacity: 0.75; }

/* ── Desktop ── */
@media (min-width: 1024px) {
  #tudor { padding: 80px 60px; }
  .tudor-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
  .tudor-photo-wrap {
    flex-shrink: 0;
    width: 260px;
    margin: 0;
  }
  .tudor-text { flex: 1; }
  .tudor-quote { font-size: 28px; }
}

/* ════════════════════════════════════════
   PACHETE / PREȚURI
   ════════════════════════════════════════ */
#pachete {
  padding: var(--section-pad);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pkg {
  position: relative;
  padding: 24px 20px;
  border: 1px solid var(--border-card);
  border-radius: var(--r);
  background: var(--bg-card);
}
.pkg--featured {
  border-color: var(--gold);
  background: var(--bg-featured);
}
.pkg-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-shine);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 10px;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
}
.pkg-name {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pkg-price {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.pkg-price span {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
}
.pkg-features {
  list-style: none;
  margin-bottom: 18px;
}
.pkg-features li {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Desktop overrides ── */
@media (min-width: 768px) {
  .pricing-grid { flex-direction: row; align-items: flex-start; gap: 20px; padding-top: 14px; }
  .pkg { flex: 1; }
  .pkg--featured { transform: translateY(-10px); }
}
@media (min-width: 1024px) {
  #pachete { padding: 80px 60px; }
  .pkg--featured { box-shadow: 0 0 40px rgba(201,169,110,0.08); }
  .pkg-name { font-size: 12px; }
  .pkg-price { font-size: 38px; }
  .pkg-features li { font-size: 14px; }
}

/* ════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════ */
#contact {
  padding: 64px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
#contact h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 10px;
}
#contact h2 em { color: var(--gold); }
.cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.btn-wa--lg {
  font-size: 16px;
  padding: 17px;
  border-radius: var(--r);
  margin-bottom: 14px;
}
.cta-phone {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
#footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--border-card);
  text-transform: uppercase;
}
.footer-copy {
  font-size: 10px;
  color: var(--border-card);
  font-family: var(--font-sans);
}

/* ── Desktop overrides ── */
@media (min-width: 1024px) {
  #contact { padding: 100px 60px; }
  #contact h2 { font-size: 42px; }
  .cta-sub { font-size: 15px; }
  .cta-phone { font-size: 17px; }
  .btn-wa--lg { display: inline-block; width: auto; padding: 17px 48px; }
  #footer { padding: 20px 60px; }
}

/* ── Wide desktop — constrain content to readable width ── */
@media (min-width: 1280px) {
  #nav,
  #proof,
  #galerie,
  #tudor,
  #de-ce,
  #pachete,
  #contact,
  #footer {
    padding-left: max(60px, calc(50vw - 600px));
    padding-right: max(60px, calc(50vw - 600px));
  }
}

/* ════════════════════════════════════════
   STICKY WHATSAPP BUTTON (mobile)
   ════════════════════════════════════════ */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--gold-shine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.45);
  transition: transform 0.2s;
}
.wa-sticky:hover { transform: scale(1.08); }

/* Hidden on desktop — nav already has WA button */
@media (min-width: 1024px) {
  .wa-sticky { display: none; }
}
