@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --burgundy: #6B2D3E;
  --burgundy-light: #8B3D52;
  --gold: #C9A96E;
  --gold-light: #E8C990;
  --cream: #F5F0E8;
  --cream-dark: #EDE5D8;
  --dark: #1A1210;
  --dark-mid: #2C1A1D;
  --text: #3D2B2E;
  --text-light: #7A6870;
  --white: #FFFFFF;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── NAVIGATION ─────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(26, 18, 16, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex: 1;
}

.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: 2rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,169,110,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--gold);
}

.btn-dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
}

/* ─── SECTION COMMONS ─────────────────────────────────────── */

.section {
  padding: 7rem 5%;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-title em { color: var(--burgundy); font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0 2.5rem;
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 40%, var(--burgundy) 100%);
  display: flex;
  align-items: center;
  padding: var(--nav-height) 5% 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,45,62,0.3) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 3rem; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
  max-width: 560px;
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── INTRO STRIP ─────────────────────────────────────────── */

.intro-strip {
  background: var(--burgundy);
  padding: 2.5rem 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.intro-strip-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.intro-strip-item:last-child { border-right: none; }

.intro-strip-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.intro-strip-item .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── ABOUT PREVIEW ──────────────────────────────────────── */

.about-preview {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-preview-image {
  background: linear-gradient(135deg, var(--dark-mid), var(--burgundy));
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-preview-image .quote {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem; right: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}

.about-preview-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-preview-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-preview-content p strong {
  color: var(--text);
}

/* ─── PILLARS ─────────────────────────────────────────────── */

.pillars {
  background: var(--cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.pillar-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--burgundy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.pillar-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.pillar-card .pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap 0.3s;
}

.pillar-card:hover .pillar-link { gap: 0.8rem; }

/* ─── QUOTE SECTION ──────────────────────────────────────── */

.quote-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, var(--burgundy) 100%);
  padding: 7rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(201,169,110,0.05);
  line-height: 1;
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.quote-section blockquote em { color: var(--gold); }

.quote-section cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── JOURNEY TIMELINE ──────────────────────────────────── */

.journey {
  background: var(--white);
}

.timeline {
  margin-top: 3.5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--burgundy), transparent);
}

.timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-year {
  min-width: 120px;
  text-align: right;
  padding-top: 0.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.timeline-dot {
  position: absolute;
  left: 112px;
  top: 0.4rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── FOR WHO ─────────────────────────────────────────────── */

.for-who {
  background: var(--cream);
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.for-who-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  transition: transform 0.3s;
}

.for-who-card:hover { transform: translateX(6px); }

.for-who-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.for-who-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── CTA SECTION ─────────────────────────────────────────── */

.cta-section {
  background: var(--burgundy);
  padding: 6rem 5%;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section h2 em { color: var(--gold); font-style: italic; }

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ──────────────────────────────────────────────── */

.footer {
  background: var(--dark);
  padding: 4rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 50%, var(--burgundy) 100%);
  padding: calc(var(--nav-height) + 5rem) 5% 5rem;
  text-align: center;
}

.page-hero .hero-label {
  justify-content: center;
}

.page-hero .hero-label::before { display: none; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero h1 em { color: var(--gold); font-style: italic; }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── PROFILE SECTION (Despre) ───────────────────────────── */

.profile-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.profile-sidebar {
  background: linear-gradient(160deg, var(--dark-mid), var(--burgundy));
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profile-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.profile-sidebar h2 {
  font-size: 1.8rem;
  color: var(--white);
}

.profile-sidebar .title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.profile-main {
  padding: 5rem;
}

.profile-main h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.profile-main p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.profile-main p strong { color: var(--text); }

/* ─── CARDS GRID ─────────────────────────────────────────── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.card-header {
  background: linear-gradient(135deg, var(--dark-mid), var(--burgundy));
  padding: 2.5rem;
  position: relative;
}

.card-header .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.3rem;
  color: var(--white);
}

.card-header .card-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.card-body {
  padding: 2rem 2.5rem 2.5rem;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── CONTACT ─────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-detail .icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ─── MOBILE ──────────────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--dark);
    padding: 2rem 5%;
    gap: 1.5rem;
  }

  .intro-strip { grid-template-columns: 1fr; }
  .intro-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .about-preview,
  .profile-section { grid-template-columns: 1fr; }
  .about-preview-content,
  .profile-main { padding: 3rem; }

  .pillars-grid,
  .for-who-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .timeline::before { left: 0; }
  .timeline-item { flex-direction: column; gap: 0.5rem; padding-left: 1.5rem; }
  .timeline-year { text-align: left; min-width: auto; }
  .timeline-dot { left: -8px; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 5%; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
