/* ═══════════════════════════════════════════════════════════
   VELA NERA — Stiluri Specifice Pagini
   ═══════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   HOME — HERO
   ════════════════════════════════════════════ */
.home-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
  position: relative; overflow: hidden;
}
/* grid pattern */
.home-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* glow */
.home-hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-55%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}
.home-hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 5px;
  color: var(--gold-dk); text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 48px; height: 1px; background: var(--gold-dim);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 12vw, 130px);
  color: var(--gold); letter-spacing: 6px;
  line-height: .92; margin-bottom: 18px;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--gold-lt); font-style: italic;
  letter-spacing: 2px; margin-bottom: 10px;
}
.hero-tagline { font-size: 13px; color: var(--grey); letter-spacing: 1.5px; margin-bottom: 48px; }

/* hero stages row */
.hero-stages {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--border2);
  margin-bottom: 48px; overflow: hidden;
}
.hs-stage {
  padding: 18px 28px; text-align: center;
  border-right: 1px solid var(--border2); position: relative;
}
.hs-stage:last-child { border-right: none; }
.hs-stage-icon { font-size: 24px; margin-bottom: 8px; display: block; }
.hs-stage-label {
  font-family: 'Playfair Display', serif;
  font-size: 12px; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.hs-stage-desc { font-size: 10px; color: var(--grey); letter-spacing: .5px; }
.hs-arrow {
  display: flex; align-items: center;
  font-size: 16px; color: var(--gold-dim); padding: 0 4px;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 8.5px; letter-spacing: 3px; color: var(--grey); text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(.6); opacity: .3; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ════════════════════════════════════════════
   HOME — CONCEPT SECTION (3 vieți)
   ════════════════════════════════════════════ */
.concept-section { background: var(--charcoal); }
.concept-header { text-align: center; margin-bottom: 56px; }
.concept-header .section-body { margin: 0 auto; text-align: center; }
.lives-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.life-card {
  background: var(--dark);
  padding: 48px 36px;
  position: relative; overflow: hidden;
}
.life-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.life-card:nth-child(1)::before { background: var(--gold); }
.life-card:nth-child(2)::before { background: #555; }
.life-card:nth-child(3)::before { background: var(--green); }
.life-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px; color: rgba(201,168,76,.08);
  line-height: 1; margin-bottom: 6px;
}
.life-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.life-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--gold); margin-bottom: 16px;
}
.life-desc { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--grey); line-height: 1.8; }

/* ════════════════════════════════════════════
   HOME — FEATURED PRODUCTS
   ════════════════════════════════════════════ */
.featured-section { background: var(--black); }
.featured-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.featured-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

/* ════════════════════════════════════════════
   HOME — SCENTS
   ════════════════════════════════════════════ */
.scents-section { background: var(--charcoal); }
.scents-header { text-align: center; margin-bottom: 48px; }
.scents-header .section-body { margin: 0 auto; text-align: center; }
.scents-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.scent-card {
  background: var(--dark); border: 1px solid var(--border);
  border-top: 2px solid var(--gold-dim);
  padding: 30px 20px; text-align: center;
  transition: border-top-color .25s;
}
.scent-card:hover { border-top-color: var(--gold); }
.scent-emoji { font-size: 32px; margin-bottom: 14px; display: block; }
.scent-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px; color: var(--gold); margin-bottom: 8px;
}
.scent-notes {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--grey); font-style: italic; line-height: 1.5;
}

/* ════════════════════════════════════════════
   HOME — WHY US
   ════════════════════════════════════════════ */
.why-section { background: var(--black); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.why-card {
  background: var(--charcoal); border: 1px solid var(--border);
  padding: 32px 28px;
  border-left: 3px solid var(--gold-dim);
  transition: border-left-color .25s;
}
.why-card:hover { border-left-color: var(--gold); }
.why-icon { font-size: 28px; margin-bottom: 16px; }
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--gold); margin-bottom: 10px;
}
.why-text { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--grey); line-height: 1.75; }

/* ════════════════════════════════════════════
   HOME — TESTIMONIALS
   ════════════════════════════════════════════ */
.test-section { background: var(--charcoal); }
.test-header { text-align: center; margin-bottom: 48px; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

/* ════════════════════════════════════════════
   HOME — CTA BANNER
   ════════════════════════════════════════════ */
.cta-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-pretitle { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--gold-dk); font-style: italic; margin-bottom: 12px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,46px); color: var(--white); margin-bottom: 16px; }
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--grey); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   PRODUSE — PAGE
   ════════════════════════════════════════════ */
.filter-bar {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  background: transparent; border: 1px solid var(--border2);
  color: var(--grey); font-size: 10px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold-dim); color: var(--cream); }
.filter-btn.active { background: var(--dark); border-color: var(--gold); color: var(--gold); }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.product-card.hidden { display: none; }

/* ════════════════════════════════════════════
   DESPRE — PAGE
   ════════════════════════════════════════════ */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual {
  background: var(--dark); border: 1px solid var(--border);
  padding: 56px; text-align: center; position: relative;
}
.story-visual::before, .story-visual::after,
.story-visual .sv-ca::before, .story-visual .sv-ca::after {
  content: ''; position: absolute;
  width: 24px; height: 24px;
  border-style: solid; border-color: var(--gold-dim);
}
.story-visual::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.story-visual::after  { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
.story-visual .sv-ca::before { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }
.story-visual .sv-ca::after  { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
.story-visual-logo { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 24px; }
.story-visual-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--gold-lt); font-style: italic;
  line-height: 1.6;
}
.story-text {}
.story-text .section-body { max-width: none; }
.story-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; color: var(--silver); line-height: 1.85;
  margin-bottom: 18px;
}
.story-text p strong { color: var(--cream); font-weight: 500; }
.story-text p em { color: var(--gold-lt); font-style: italic; }

.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 48px; }
.value-card { background: var(--dark); border: 1px solid var(--border); padding: 28px; }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: rgba(201,168,76,.12); line-height: 1; margin-bottom: 6px;
}
.value-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.value-text { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--grey); line-height: 1.7; }

.team-section { background: var(--charcoal); }
.makers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.maker-card { background: var(--dark); border: 1px solid var(--border); padding: 32px; text-align: center; }
.maker-icon { font-size: 42px; margin-bottom: 16px; }
.maker-role { font-size: 9px; color: var(--gold-dk); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.maker-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); margin-bottom: 12px; }
.maker-text { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ════════════════════════════════════════════
   CONTACT — PAGE
   ════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info {}
.contact-info .section-body { max-width: none; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 3px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--charcoal); border: 1px solid var(--border);
  border-left: 2px solid var(--gold-dim);
  padding: 16px 20px; transition: border-left-color .2s;
}
.contact-item:hover { border-left-color: var(--gold); }
.ci-icon { font-size: 20px; flex-shrink: 0; }
.ci-label { font-size: 9.5px; color: var(--gold-dk); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.ci-value { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--silver); }
.ci-value a { color: var(--silver); transition: color .2s; }
.ci-value a:hover { color: var(--gold); }

.contact-social { display: flex; gap: 10px; }
.cs-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border: 1px solid var(--border2);
  color: var(--grey); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .2s;
}
.cs-btn:hover { border-color: var(--gold-dk); color: var(--gold); }
.cs-btn span { font-size: 16px; }

.contact-form-wrap {
  background: var(--charcoal); border: 1px solid var(--border); padding: 40px;
}
.cf-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); margin-bottom: 28px; }
.form-type-tabs { display: flex; gap: 0; margin-bottom: 24px; }
.form-tab {
  flex: 1; padding: 10px;
  background: transparent; border: 1px solid var(--border2);
  color: var(--grey); font-size: 10px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .2s; border-right: none;
}
.form-tab:last-child { border-right: 1px solid var(--border2); }
.form-tab.active { background: var(--dark); border-color: var(--gold-dk); color: var(--gold); }
.form-tab:hover:not(.active) { color: var(--cream); }

/* ════════════════════════════════════════════
   COMANDA MODAL
   ════════════════════════════════════════════ */
.order-summary {
  background: var(--dark); border: 1px solid var(--border);
  padding: 18px; margin-bottom: 20px;
}
.os-row {
  display: flex; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid var(--border2);
  font-size: 13px;
}
.os-row:last-child { border-bottom: none; font-weight: 600; font-size: 15px; }
.os-key { color: var(--grey); }
.os-val { color: var(--cream); }
.os-row.total .os-val { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 20px; }

/* ════════════════════════════════════════════
   RESPONSIVE — PAGE SPECIFIC
   ════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .lives-grid, .featured-grid, .products-grid,
  .test-grid, .makers-grid { grid-template-columns: 1fr 1fr; }
  .scents-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .story-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .lives-grid, .featured-grid, .products-grid,
  .test-grid, .makers-grid, .why-grid { grid-template-columns: 1fr; }
  .scents-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stages { flex-direction: column; }
  .hs-arrow { display: none; }
  .hero-title { letter-spacing: 2px; }
  .featured-header { flex-direction: column; align-items: flex-start; }
}
