/* ============================================================
   FFG.ro — Section Styles
   ============================================================ */

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-block-start: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #3D1E0A 0%,
    #1A1109 60%,
    #0E0B06 100%
  );
  z-index: 0;
}

.hero__line-v {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 108px;
  inset-block-end: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184, 150, 62, 0.3) 30%,
    rgba(184, 150, 62, 0.15) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

/* Hero image (professional photo) */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.45;

}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 860px;
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hero__lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  inset-block-end: 2.5rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184, 150, 62, 0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ════════════════════════════════
   STATS BAND
   ════════════════════════════════ */
.stats-band {
  background: var(--gold-pale);
  padding-block: 4rem;
  border-block: 1px solid var(--line);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ════════════════════════════════
   STORY
   ════════════════════════════════ */
#povestea {
  background: var(--white);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-block-start: 3rem;
}

.story__text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
}

.story__text p:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.story__text strong {
  font-weight: 500;
  color: var(--choco-mid);
}

.story__aside {
  position: sticky;
  top: 140px;
}

.story__milestones {
  list-style: none;
  border-left: 1px solid var(--line);
  padding-inline-start: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.milestone__year {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.milestone__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ════════════════════════════════
   VALUES
   ════════════════════════════════ */
#valori {
  background: var(--ink);
}

.values__head {
  margin-bottom: 4rem;
}

.values__head .section-title {
  color: var(--white);
}

.values__head .section-intro {
  color: rgba(255, 255, 255, 0.42);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 150, 62, 0.15);
  border: 1px solid rgba(184, 150, 62, 0.15);
}

.value-card {
  background: var(--ink);
  padding: 2.5rem;
  transition: background 0.25s ease;
}

.value-card:hover {
  background: #231b10;
}

.value-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(184, 150, 62, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  user-select: none;
}

.value-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.value-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.42);
}

/* ════════════════════════════════
   FOUNDERS / TEAM
   ════════════════════════════════ */
#echipa {
  background: var(--cream-deep);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-block-start: 3.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem;
}

.team-card__initials {
  width: 64px;
  height: 64px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.team-card__bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ════════════════════════════════
   PROJECTS / VENTURES
   ════════════════════════════════ */
#proiecte {
  background: var(--white);
}

.projects__intro {
  max-width: 700px;
  margin-bottom: 4rem;
}

.project-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding-block: 4rem;
  border-top: 1px solid var(--line);
}

.project-feature:first-of-type {
  border-top: none;
  padding-block-start: 0;
}

.project__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.project__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.project__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--choco-mid);
  padding: 4px 12px;
  margin-bottom: 1.25rem;
}

.project__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.project__stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.project__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.project__stat-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.project__link:hover {
  border-bottom-color: var(--gold);
}

.project__link::after {
  content: '→';
  font-size: 14px;
}

/* Project visual card */
.project__visual {
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream-deep);
}

.project__visual--choco {
  background: var(--choco);
  border-color: rgba(184, 150, 62, 0.2);
}

.project__visual-inner {
  text-align: center;
  padding: 2rem;
}

.project__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__visual-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
}

.project__visual-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 8px;
}

/* ════════════════════════════════
   PARTNERS
   ════════════════════════════════ */
#parteneri {
  background: var(--cream-deep);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-block-start: 3.5rem;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem;
  transition: border-color 0.25s ease;
}

.partner-card:hover {
  border-color: var(--gold);
}

.partner-card__domain {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.partner-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.partner-card__tagline {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.partner-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.partner-card__link:hover {
  opacity: 0.7;
}

.partner-card__link::after {
  content: '↗';
}

/* ════════════════════════════════
   RESPONSIVE — Sections
   ════════════════════════════════ */
@media (max-width: 900px) {
  .stats-band__grid          { grid-template-columns: repeat(2, 1fr); }
  .story__grid               { grid-template-columns: 1fr; gap: 2rem; }
  .story__aside              { position: static; }
  .values__grid              { grid-template-columns: 1fr; }
  .team__grid                { grid-template-columns: 1fr; gap: 2rem; }
  .project-feature           { grid-template-columns: 1fr; gap: 2rem; }
  .project__visual           { order: -1; }
  .partners__grid            { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .section-pad               { padding-block: 70px; }
  .section-pad-lg            { padding-block: 80px; }
  .hero__ctas                { flex-direction: column; align-items: center; }
  .project__stats            { gap: 1.25rem; }
  .value-card                { padding: 2rem 1.5rem; }
}
