/* ============================================================
   KUPELO 888 HOLDING — Clean light editorial
   ============================================================ */

:root {
  --bg:        #f4f2ee;
  --bg-tint:   #eceae4;
  --white:     #ffffff;
  --ink:       #1a1a1a;
  --ink-mid:   #484848;
  --ink-light: #909090;
  --blue:      #0a5fd6;
  --blue-pale: #e8f0fc;
  --border:    #d6d2c8;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
  --max-w:      860px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ---------- BG PATTERN (logo tiled across full page) ---------- */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-pattern img {
  position: absolute;
  width: 55%;
  max-width: 780px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  user-select: none;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ---------- HEADER ---------- */
.site-header {
  position: relative;
  z-index: 10;
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 242, 238, 0.92);
}
.site-header .container {
  display: flex;
  align-items: center;
}
.logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.section-tinted {
  background: rgba(236, 234, 228, 0.6);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--border);
}
.tagline-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.tagline-sub::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blue);
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.05rem;
  color: #000;
  margin-bottom: 1rem;
  max-width: 700px;
}
.lead.highlight {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: #000;
  margin: 0.4rem 0;
}

/* ---------- TYPOGRAPHY ---------- */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

p {
  font-size: 1.2rem;
  color: var(--ink-mid);
  margin-bottom: 1rem;
  line-height: 1.85;
  max-width: 700px;
}

.standout {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--blue);
  padding-left: 1.2rem;
  margin: 1.8rem 0;
  max-width: 680px;
  line-height: 1.55;
}

/* ---------- MISSION LIST ---------- */
.mission-list {
  margin: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mission-item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  max-width: 480px;
}

/* ---------- FEATURE LIST ---------- */
.feature-list {
  list-style: none;
  margin: 1.5rem 0 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 680px;
}
.feature-list li {
  font-size: 0.92rem;
  color: var(--ink-mid);
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li::before {
  content: '→';
  color: var(--blue);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- ECOSYSTEM ---------- */
.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.eco-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 28px 26px;
}
.eco-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.6rem;
}
.eco-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.eco-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  margin-bottom: 0;
  line-height: 1.75;
}

/* ---------- ESG PILLARS ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.pillar-letter {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4rem;
  opacity: 0.3;
}
.pillar-letter.e { color: #0a5fd6; }
.pillar-letter.s { color: #0a9d87; }
.pillar-letter.g { color: #7a5fd6; }
.pillar h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.pillar ul { list-style: none; }
.pillar ul li {
  font-size: 0.86rem;
  color: var(--ink-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pillar ul li:last-child { border-bottom: none; }

/* ---------- PARTNERS ---------- */
.partners-section { border-bottom: none; }
.logo-row {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-box {
  width: 140px;
  height: 84px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.logo-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.logo-box:hover { border-color: var(--blue); }
.logo-box img { max-width: 80%; max-height: 52px; object-fit: contain; }
.logo-box span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .eco-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .logo-box { width: 110px; height: 68px; }
  .bg-pattern img { width: 90%; }
}



footer {
  background-color: #ffffff; /* alb */
  color: #000000; /* negru */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 150px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #000; /* text negru */
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #555; /* gri la hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #555;
}


