/* ============================================================
   RESET & TOKENS
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #f5f0e8;
  --beige:     #e8dcc8;
  --beige-dim: #c4b49a;
  --gold:      #c9a84c;
  --gold-lt:   #e0c070;
  --gold-dim:  rgba(201,168,76,0.25);

  --green:     #1b2e20;
  --green-md:  #162619;
  --green-dk:  #0f1c12;
  --green-lt:  #243428;

  --text:      #d8cdb8;
  --text-dim:  #9a8e78;
  --white:     #ffffff;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.28);
  --shadow-gold: 0 0 0 1px rgba(201,168,76,0.35), 0 8px 40px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--green);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(15,28,18,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.22);
  transition: background 0.4s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-brand img { height: 38px; width: auto; }

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

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

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

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

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

/* ============================================================
   HERO SECTION
============================================================ */
#acasa {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('conac logo.png');
  background-size: 82%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #243830;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 36, 26, 0.05) 0%,
    rgba(20, 36, 26, 0.0)  30%,
    rgba(20, 36, 26, 0.18) 65%,
    rgba(20, 36, 26, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.85);
  max-width: 520px;
  margin: 0 auto 2.4rem;
  letter-spacing: 0.02em;
}

.hero-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

/* ============================================================
   HERO PILASTERS
============================================================ */
.hero-pillar {
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.hero-pillar--left  { left: 3.5%; }
.hero-pillar--right { right: 3.5%; }

.pillar-top,
.pillar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.pillar-cap {
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.pillar-diamond {
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.pillar-tick {
  width: 1px;
  height: 14px;
  background: var(--gold-lt);
  opacity: 0.7;
}

.pillar-shaft {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.pillar-line-outer {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(184,134,11,0.5) 10%,
    rgba(184,134,11,0.5) 90%,
    transparent 100%
  );
}

.pillar-line-outer.left  { left: 8px; }
.pillar-line-outer.right { right: 8px; }

.pillar-line-center {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(184,134,11,0.25) 10%,
    rgba(184,134,11,0.25) 90%,
    transparent 100%
  );
}

.pillar-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.5);
  white-space: nowrap;
}

.hero-pillar--left  .pillar-text {
  writing-mode: vertical-lr;
  transform: translate(-50%, -50%) rotate(180deg);
}

.hero-pillar--right .pillar-text {
  writing-mode: vertical-lr;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .hero-pillar { display: none; }
}

/* ============================================================
   HERO STATS BAR
============================================================ */
.hero-stats {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: stretch;
  background: rgba(20, 14, 4, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 134, 11, 0.35);
  white-space: nowrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  gap: 0.25rem;
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(184, 134, 11, 0.3);
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.6);
}

@media (max-width: 700px) {
  .hero-stats {
    bottom: 5.5rem;
    flex-wrap: wrap;
    width: 90%;
    left: 5%;
    transform: none;
  }
  .hero-stat {
    flex: 1 1 45%;
    padding: 0.9rem 1rem;
  }
  .hero-stat:nth-child(odd) { border-left: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-top: 1px solid rgba(184, 134, 11, 0.3); }
}

/* ============================================================
   HERO HERALDIC BANNER
============================================================ */
.hero-heraldic {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  width: 80%;
}

.heraldic-branch {
  flex: 1;
  min-width: 0;
  height: auto;
  opacity: 0.75;
}

.heraldic-branch--right {
  transform: scaleX(-1);
}

.heraldic-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.heraldic-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.8);
  line-height: 1;
}

.heraldic-star {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.5em;
}

@media (max-width: 700px) {
  .hero-heraldic { top: 12%; }
  .heraldic-branch { width: 70px; }
  .heraldic-label { font-size: 0.55rem; letter-spacing: 0.18em; }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  animation: bounce 2.2s infinite;
}

.scroll-cue span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige);
}

.scroll-cue svg { fill: var(--beige); }

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

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
section { padding: 100px 5%; }

.section-inner { max-width: 1120px; margin: 0 auto; }

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

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 1.4rem;
}

.section-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
  border-radius: 1px;
}

.section-text {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.9;
}

.section-text + .section-text { margin-top: 1.2rem; }

/* ============================================================
   DESPRE CONAC
============================================================ */
#despre {
  background: var(--green-md);
}

.despre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}

.despre-img {
  position: relative;
}

.despre-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}

.despre-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green-dk);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.despre-img-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-lt);
  line-height: 1;
}

.despre-img-badge span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige-dim);
}

/* ============================================================
   TIMELINE
============================================================ */
#cronologie {
  background: var(--green);
}

.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
}

.timeline-header .section-label { justify-content: center; }
.timeline-header .section-label::before { display: none; }
.timeline-header .section-rule { margin: 0 auto 0; }

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201,168,76,0.5) 6%,
    rgba(201,168,76,0.5) 94%,
    transparent 100%
  );
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 2rem;
  margin-bottom: 3.6rem;
  align-items: start;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-content {
  padding: 1.8rem 2rem;
  background: var(--green-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s;
}

.tl-content:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}

.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.tl-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.tl-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.tl-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.9rem;
  gap: 6px;
}

.tl-dot-circle {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}

/* left side: content left, empty right */
.tl-item--left .tl-content { grid-column: 1; text-align: right; }
.tl-item--left .tl-dot     { grid-column: 2; }
.tl-item--left .tl-empty   { grid-column: 3; }

/* right side: empty left, content right */
.tl-item--right .tl-empty   { grid-column: 1; }
.tl-item--right .tl-dot     { grid-column: 2; }
.tl-item--right .tl-content { grid-column: 3; text-align: left; }

/* ============================================================
   CE INCLUDE DOMENIUL
============================================================ */
#domeniu {
  background: var(--green-md);
}

.domeniu-header { text-align: center; margin-bottom: 4rem; }
.domeniu-header .section-label { justify-content: center; }
.domeniu-header .section-label::before { display: none; }
.domeniu-header .section-rule { margin: 0 auto 0; }

.domeniu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.domeniu-card {
  padding: 2.4rem 1.6rem;
  background: var(--green);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.14);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.domeniu-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.domeniu-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 1.2rem;
  opacity: 0.8;
}

.domeniu-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.domeniu-icon-legacy {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
  display: block;
}

.domeniu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.domeniu-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================================
   GALERIE
============================================================ */
#galerie {
  background: var(--green-dk);
  padding-bottom: 112px;
}

.galerie-header { margin-bottom: 3rem; }

.galerie-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(5) { grid-column: span 2; }
.g-item:nth-child(8) { grid-column: span 2; }

.g-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.4s ease;
}

.g-item:nth-child(1) img { height: 448px; }
.g-item:nth-child(5) img,
.g-item:nth-child(8) img { height: 220px; }

.g-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.82);
}

.g-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0);
  transition: background 0.35s ease;
}

.g-overlay svg {
  width: 38px; height: 38px;
  stroke: var(--gold-lt);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}

.g-item:hover .g-overlay { background: rgba(15,28,18,0.18); }
.g-item:hover .g-overlay svg { opacity: 1; transform: scale(1); }

/* ============================================================
   LIGHTBOX
============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,14,10,0.96);
  align-items: center;
  justify-content: center;
}

#lightbox.active { display: flex; animation: fadeIn 0.22s ease; }

.lb-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#lb-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 80px rgba(0,0,0,0.8);
  animation: lbIn 0.28s ease;
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-caption {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(232,220,200,0.55);
}

.lb-counter {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
}

#lb-close {
  position: fixed;
  top: 1.2rem; right: 1.6rem;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  transition: opacity 0.2s;
  z-index: 9001;
}

#lb-close:hover { opacity: 0.6; }
#lb-close svg { width: 26px; height: 26px; stroke: var(--beige); }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(40,30,10,0.55);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(4px);
  cursor: pointer;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  z-index: 9001;
}

.lb-nav:hover { background: rgba(201,168,76,0.28); }
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }
.lb-nav svg { width: 20px; height: 20px; stroke: var(--beige); display: block; }

/* ============================================================
   POTENTIAL / VIZIUNE
============================================================ */
#viziune {
  background: var(--green);
}

.viziune-header { text-align: center; margin-bottom: 4rem; }
.viziune-header .section-label { justify-content: center; }
.viziune-header .section-label::before { display: none; }
.viziune-header .section-rule { margin: 0 auto 0; }

.viziune-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.viziune-card {
  padding: 2.4rem 1.8rem;
  background: var(--green-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.12);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.viziune-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.38);
}

.viziune-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.viziune-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.viziune-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   DATE TEHNICE
============================================================ */
#date-tehnice {
  background: var(--green-dk);
  padding: 80px 5%;
}

.date-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  gap: 0;
  align-items: center;
}

.date-divider {
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
  justify-self: center;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem 3rem;
}

.date-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.01em;
}

.date-value sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold);
}

.date-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.date-desc {
  font-size: 0.85rem;
  color: rgba(154,142,120,0.7);
  margin-top: 0.2rem;
}

/* ============================================================
   LOCALIZARE
============================================================ */
#localizare {
  background: var(--green);
}

.localizare-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6%;
  align-items: start;
}

.loc-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--green-md);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.loc-row-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  opacity: 0.75;
}

.loc-row-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loc-row strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold-lt);
  margin-bottom: 0.15rem;
}

.loc-row span { font-size: 0.88rem; color: var(--text-dim); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
  filter: sepia(0.15) contrast(1.05);
}

/* ============================================================
   QUOTE BAND
============================================================ */
.quote-band {
  background: linear-gradient(135deg, var(--gold) 0%, #a87a20 100%);
  padding: 4rem 5%;
  text-align: center;
}

.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-style: italic;
  color: #2a1a04;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}

.quote-band cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42,26,4,0.65);
  margin-top: 1.1rem;
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
  background: var(--green-md);
  padding: 96px 5%;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-rule {
  margin: 0 auto 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.contact-card {
  padding: 2.8rem 2rem;
  background: var(--green);
  border-top: 2px solid var(--gold);
  border: 1px solid rgba(201,168,76,0.18);
  border-top: 2px solid var(--gold);
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.contact-card:hover {
  background: var(--green-lt);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 1rem;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.contact-card-value {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--green-dk);
  padding: 3rem 5%;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-ornament {
  font-size: 0.6rem;
  letter-spacing: 0.6em;
  color: rgba(201,168,76,0.4);
  margin-bottom: 1rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-lt);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-instagram svg {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-instagram:hover {
  color: var(--gold-lt);
}

.footer-nav-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-lt);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(154,142,120,0.45);
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    align-items: center;
  }
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE – TABLET ≤ 960px
============================================================ */
@media (max-width: 960px) {
  .despre-grid,
  .localizare-grid { grid-template-columns: 1fr; }

  .domeniu-grid,
  .viziune-grid { grid-template-columns: repeat(2, 1fr); }

  .date-inner { grid-template-columns: 1fr; }
  .date-divider { display: none; }
  .date-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }

  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item { grid-column: auto !important; grid-row: auto !important; }
  .g-item img,
  .g-item:nth-child(1) img { height: 240px !important; }

  .tl-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .tl-item--left .tl-content,
  .tl-item--right .tl-content {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }

  .tl-item--left .tl-dot,
  .tl-item--right .tl-dot {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0.5rem;
  }

  .tl-item--left .tl-empty,
  .tl-item--right .tl-empty { display: none; }

  .timeline::before { left: 7px; }
}

/* ============================================================
   RESPONSIVE – MOBILE ≤ 620px
============================================================ */
@media (max-width: 620px) {
  section { padding: 72px 6%; }

  .nav-links {
    position: fixed;
    top: 68px; left: 0;
    width: 100%;
    background: rgba(15,28,18,0.97);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.6rem;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--gold-dim);
  }

  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }

  .domeniu-grid,
  .viziune-grid { grid-template-columns: 1fr; }

  .date-grid { grid-template-columns: repeat(2, 1fr); }

  .galerie-grid { grid-template-columns: 1fr; }
  .g-item img { height: 200px !important; }
}
