/*
 * ╔══════════════════════════════════════════╗
 * ║  AppleMobDesign.ro — Global Stylesheet   ║
 * ║  Apple Mob Design, Baia Mare, România    ║
 * ║  Versiune: 1.0 | Creat: Martie 2025     ║
 * ╚══════════════════════════════════════════╝
 *
 * STRUCTURĂ:
 * 1. Variabile CSS (Design Tokens)
 * 2. Reset & Base
 * 3. Navigație
 * 4. Butoane
 * 5. Componente comune (secțiuni, carduri, formulare)
 * 6. Hero (pagina principală)
 * 7. Services Band
 * 8. About
 * 9. Portfolio
 * 10. Services
 * 11. Process
 * 12. Brands
 * 13. Testimonials
 * 14. Contact & Formular
 * 15. Newsletter
 * 16. Footer
 * 17. Animații & Reveal
 * 18. Blog — pagina listing
 * 19. Article — pagina articol
 * 20. Responsive (toate paginile)
 */

:root {
  --green:       #2D7A3A;
  --green-dark:  #1F5A2A;
  --green-light: #3B9649;
  --green-pale:  #EBF5EC;
  --green-mid:   #C8E6CB;
  --orange:      #F5A623;
  --orange-dark: #E09415;
  --white:       #FFFFFF;
  --off-white:   #F8FAF8;
  --gray-light:  #F2F4F2;
  --gray:        #E0E4E0;
  --text:        #1A2E1C;
  --text-mid:    #4A6B4D;
  --text-light:  #7A9B7D;
  --serif:       'Fraunces', Georgia, serif;
  --sans:        'Plus Jakarta Sans', sans-serif;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --shadow-sm:   0 2px 12px rgba(45,122,58,0.08);
  --shadow-md:   0 8px 32px rgba(45,122,58,0.12);
  --shadow-lg:   0 20px 60px rgba(45,122,58,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 10px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.35s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  box-shadow: 0 2px 20px rgba(45,122,58,0.1);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
.nav-logo-text {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--green); display: block; font-weight: 400; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.25s;
}
.nav-links a:hover { background: var(--green-pale); color: var(--green); }
.nav-links a.active { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-wrap {
  display: flex; gap: 2px;
  background: var(--gray-light);
  border-radius: 100px;
  padding: 3px;
}
.lang-btn {
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-mid);
  padding: 5px 14px; border-radius: 100px;
  border: none;
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.lang-btn:hover { color: var(--green); }
.lang-btn.active {
  background: white;
  color: var(--green);
  box-shadow: 0 1px 4px rgba(45,122,58,0.15);
}
.btn-nav {
  background: var(--green);
  color: white;
  font-size: 0.8rem; font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; display: block; }
.mob-menu {
  position: fixed; inset: 0; background: white; z-index: 150;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transform: translateY(-100%); transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.mob-menu.open { transform: translateY(0); }
.mob-menu a { font-size: 1.8rem; font-family: var(--serif); font-weight: 300; color: var(--text); }
.mob-menu a:hover { color: var(--green); }
.mob-close { position: absolute; top: 24px; right: 28px; font-size: 2rem; cursor: pointer; color: var(--text-mid); line-height: 1; }
.mob-lang { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.mob-lang-sep { color: var(--gray); font-size: 1.2rem; }
.mob-lang-btn {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: var(--text-light); background: none; border: none; cursor: pointer;
  transition: color 0.2s;
}
.mob-lang-btn:hover, .mob-lang-btn.active { color: var(--green); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding: 110px 48px 60px;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.hero-left { }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-headline em { font-style: italic; color: var(--green); }
.hero-headline strong { font-weight: 700; }
.hero-sub {
  font-size: 1rem; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-btns {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.4s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green);
  color: white;
  font-size: 0.85rem; font-weight: 600;
  padding: 14px 30px;
  border-radius: 100px;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-mid);
  font-size: 0.85rem; font-weight: 500;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--gray);
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--gray);
  animation: fadeUp 0.6s ease 0.5s both;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 400;
  color: var(--text); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 12px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.hero-img:first-child { grid-row: span 2; border-radius: var(--radius-xl); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-img:hover img { transform: scale(1.05); }
.hero-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { color: var(--green); width: 18px; height: 18px; }
.hero-badge-label { font-size: 0.72rem; color: var(--text-light); }
.hero-badge-val { font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.hero-green-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; padding: 20px;
  text-align: center;
}
.hero-green-card-num { font-family: var(--serif); font-size: 2.4rem; color: white; line-height: 1; font-weight: 300; }
.hero-green-card-label { font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── SECTION BASE ─── */
.section-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: 100px 48px;
  overflow-x: hidden;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-body {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; max-width: 540px;
}

/* ─── SERVICES BAND ─── */
.services-band {
  background: var(--off-white);
  padding: 28px 48px;
  display: flex; justify-content: center; gap: 0;
  overflow-x: auto;
}
.service-pill {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-right: 1px solid var(--gray);
  cursor: pointer; transition: all 0.25s;
  min-width: 120px;
}
.service-pill:last-child { border-right: none; }
.service-pill:hover { background: var(--green-pale); border-radius: var(--radius-md); }
.service-pill-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--green);
}
.service-pill-icon svg { width: 22px; height: 22px; }
.service-pill-label { font-size: 0.75rem; font-weight: 600; color: var(--text-mid); text-align: center; }

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.about-imgs {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sec {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid white;
}
.about-img-sec img { width: 100%; height: 100%; object-fit: cover; }
.about-float-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
  margin: 0;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 10;
  padding: 10px 16px;
  gap: 10px;
  border-radius: 12px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.about-float-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.about-float-icon svg { width: 20px; height: 20px; }
.about-float-num { font-family: var(--serif); font-size: 1.6rem; color: var(--text); line-height: 1; font-weight: 400; }
.about-float-label { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }
.about-right { }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 36px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.25s;
}
.about-feature:hover { background: var(--green-pale); transform: translateX(4px); }
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.feature-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }
.about-stats-row { display: flex; gap: 20px; margin-top: 36px; }
.about-stat-card {
  flex: 1;
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 22px 20px; text-align: center;
}
.about-stat-card:nth-child(even) { background: var(--off-white); }
.about-stat-card:nth-child(even) .asc-num { color: var(--green); }
.about-stat-card:nth-child(even) .asc-label { color: var(--text-light); }
.asc-num { font-family: var(--serif); font-size: 2rem; color: white; line-height: 1; font-weight: 300; }
.asc-label { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ─── PORTFOLIO ─── */
#portfolio { background: var(--off-white); }
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.portfolio-filters {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.pf-btn {
  background: white; border: 1.5px solid var(--gray);
  color: var(--text-mid);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  padding: 9px 20px; border-radius: 100px; cursor: pointer;
  transition: all 0.25s;
}
.pf-btn:hover, .pf-btn.active { background: var(--green); border-color: var(--green); color: white; }

/* Masonry-style grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 12px;
}
.p-item {
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  cursor: pointer;
  min-height: 250px;
  grid-column: span 4; grid-row: span 4;
}
.p-item:nth-child(1)  { grid-column: span 5; grid-row: span 6; }
.p-item:nth-child(2)  { grid-column: span 4; grid-row: span 5; }
.p-item:nth-child(3)  { grid-column: span 3; grid-row: span 5; }
.p-item:nth-child(4)  { grid-column: span 4; grid-row: span 5; }
.p-item:nth-child(5)  { grid-column: span 3; grid-row: span 5; }
.p-item:nth-child(6)  { grid-column: span 5; grid-row: span 5; }
.p-item:nth-child(7)  { grid-column: span 7; grid-row: span 5; }
.p-item:nth-child(8)  { grid-column: span 5; grid-row: span 5; }
.p-item:nth-child(9)  { grid-column: span 4; grid-row: span 5; }
.p-item:nth-child(10) { grid-column: span 3; grid-row: span 5; }

.p-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.p-item:hover img { transform: scale(1.07); }
.p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,90,42,0.82) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
}
.p-item:hover .p-overlay { opacity: 1; }
.p-cat {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 5px;
}
.p-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: white; line-height: 1.2; }
.p-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  transform: scale(0); transition: transform 0.3s;
}
.p-item:hover .p-arrow { transform: scale(1); }
.p-arrow svg { width: 14px; height: 14px; }
.portfolio-cta {
  text-align: center; margin-top: 48px;
}

/* ─── SERVICES PAGE ─── */
#services { background: var(--white); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 0;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.svc-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s;
  cursor: default; position: relative; overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.svc-card:hover { background: var(--green-pale); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--gray); line-height: 1; margin-bottom: 14px;
}
.svc-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-desc { font-size: 0.83rem; color: var(--text-light); line-height: 1.75; }

/* ─── PROCESS ─── */
#process { background: var(--green); }
#process .section-tag { color: rgba(255,255,255,0.7); }
#process .section-tag::before { background: rgba(255,255,255,0.7); }
#process .section-title { color: white; }
#process .section-title em { color: var(--orange); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 60px; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%;
  height: 1px; background: rgba(255,255,255,0.2);
}
.proc-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center; position: relative;
  transition: all 0.3s;
}
.proc-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.proc-num-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.proc-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--green); line-height: 1; }
.proc-title { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.proc-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ─── BRANDS ─── */
#brands { background: var(--white); padding: 80px 48px; }
.brands-inner { max-width: 1400px; margin: 0 auto; }
.brands-title { text-align: center; margin-bottom: 48px; }
.brands-title .section-tag { justify-content: center; }
.brands-title h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--text); }
.brands-title h2 em { font-style: italic; color: var(--green); }
.brands-row {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.brand-card {
  flex: 1; min-width: 140px; max-width: 200px;
  background: var(--off-white);
  border-radius: var(--radius-lg); padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all 0.25s; cursor: default;
}
.brand-card:hover { background: var(--green-pale); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.brand-name {
  font-size: 1.1rem; font-weight: 700; color: var(--text-mid);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.brand-card:hover .brand-name { color: var(--green); }
.brand-tag { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--off-white); }
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 56px;
}
.testi-card {
  background: white;
  border-radius: var(--radius-xl); padding: 36px 36px 28px;
  position: relative; transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-card.featured {
  background: var(--green);
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.testi-card.featured .testi-text { color: white; }
.testi-card.featured .testi-name { color: white; }
.testi-card.featured .testi-role { color: rgba(255,255,255,0.65); }
.testi-card.featured .testi-stars { color: var(--orange); }
.testi-stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  font-weight: 300; color: var(--text); line-height: 1.75; margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-pale); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--green); flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--text-light); }
.featured-img {
  border-radius: var(--radius-lg); overflow: hidden; height: 280px;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── CONTACT ─── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.ci-card {
  background: var(--off-white);
  border-radius: var(--radius-md); padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.25s;
}
.ci-card:hover { background: var(--green-pale); transform: translateX(4px); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label { font-size: 0.68rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.ci-val { font-size: 0.9rem; font-weight: 600; color: var(--text); }
/* CONTACT RIGHT COLUMN */
.contact-right-col {
  display: flex; flex-direction: column; gap: 16px;
}

/* TEAM ROW — full width, 3 equal cards below contact grid */
.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.team-card {
  background: var(--green);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.team-card-left {
  display: flex; align-items: center; gap: 16px; min-width: 0;
}
.team-photo {
  width: 60px; height: 60px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.3);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  color: white; font-size: 1.3rem; font-weight: 700;
  border-radius: 50%;
}
.team-info { min-width: 0; }
.team-name { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 3px; }
.team-role { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.team-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; color: var(--green);
  font-size: 0.75rem; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  transition: all 0.25s; white-space: nowrap;
}
.team-cta:hover { background: var(--orange); color: white; }
.team-card-logo {
  height: 48px; width: auto;
  opacity: 0.15;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* FORM */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl); padding: 40px;
}
.form-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 0.83rem; color: var(--text-light); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 0.72rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.05em; }
.form-input, .form-select, .form-textarea {
  background: white; border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--sans); font-size: 0.87rem;
  padding: 12px 16px; outline: none; transition: border-color 0.25s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; background: var(--green); color: white;
  border: none; border-radius: 100px;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 700;
  padding: 15px 28px; cursor: pointer; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.25s;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.form-submit svg { width: 16px; height: 16px; }

/* ─── FAQ ─── */
#faq { background: var(--off-white); }
.faq-grid {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  color: var(--text);
  padding: 22px 56px 22px 24px;
  position: relative; line-height: 1.4;
  transition: color 0.2s;
}
.faq-q::after {
  content: '';
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.3s;
}
.faq-item.open .faq-q { color: var(--green); }
.faq-item.open .faq-q::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234a7c59' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  transform: translateY(-50%) rotate(180deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  margin: 0; padding: 0 24px 22px;
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--green);
  margin: 0 48px;
  border-radius: var(--radius-xl);
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin-bottom: 80px;
}
.nl-left {}
.nl-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.nl-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: white; line-height: 1.2; }
.nl-right { display: flex; gap: 10px; flex-shrink: 0; }
.nl-input {
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px; padding: 13px 22px;
  color: white; font-family: var(--sans); font-size: 0.87rem;
  outline: none; width: 300px; transition: border-color 0.25s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.55); }
.nl-input:focus { border-color: white; }
.nl-btn {
  background: var(--orange); color: white;
  border: none; border-radius: 100px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 700;
  padding: 13px 26px; cursor: pointer; white-space: nowrap;
  transition: all 0.25s;
}
.nl-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  padding: 64px 48px 32px;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo-mark {
  width: 48px; height: 48px;
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.footer-brand-name { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand-name span { color: var(--green); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 700;
  transition: all 0.25s;
}
.footer-social-btn:hover { background: var(--green); border-color: var(--green); color: white; }
.footer-col-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: color 0.25s; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact-item { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.fci-label { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fci-val { font-size: 0.83rem; color: rgba(255,255,255,0.65); }
.fci-val a:hover { color: var(--green-light); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-credit { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-credit a { color: var(--green-light); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

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

/* ─── RESPONSIVE ─── PAGINA PRINCIPALĂ ─── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; padding: 100px 32px 60px; }
  .hero-right { height: 400px; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .hero-img:first-child { grid-row: span 1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { height: 360px; overflow: visible; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .featured-img { height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-right-col { gap: 14px; }
  .team-row { grid-template-columns: 1fr 1fr; }
  .newsletter { flex-direction: column; gap: 24px; }
  .nl-right { flex-direction: column; width: 100%; }
  .nl-input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 90px 24px 48px; }
  .hero-right { display: none; }
  .hero-badge { padding: 8px 12px; gap: 8px; }
  .hero-badge-icon { width: 28px; height: 28px; border-radius: 7px; }
  .hero-badge-icon svg { width: 14px; height: 14px; }
  .hero-badge-label { font-size: 0.62rem; }
  .hero-badge-val { font-size: 0.75rem; }
  .hero-green-card { padding: 12px; gap: 2px; }
  .hero-green-card-num { font-size: 1.6rem; }
  .hero-green-card-label { font-size: 0.6rem; }
  .section-wrap { padding: 72px 24px; }
  .services-band { padding: 16px 24px; gap: 0; }
  .service-pill { min-width: 90px; padding: 12px 16px; }
  .services-header { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .brands-row { gap: 8px; }
  .brand-card { min-width: 110px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .portfolio-filters { width: 100%; }
  .portfolio-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px; gap: 10px;
  }
  .p-item { grid-column: span 1 !important; grid-row: span 2 !important; border-radius: var(--radius-md); }
  .p-item:nth-child(1) { grid-column: span 2 !important; grid-row: span 3 !important; }
  .p-item:nth-child(4) { grid-row: span 3 !important; }
  .p-item:nth-child(7) { grid-column: span 2 !important; grid-row: span 3 !important; }
  .newsletter { margin: 0 16px; padding: 36px 24px; margin-bottom: 48px; }
  footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  /* About section mobile fixes */
  #about, #contact { overflow-x: hidden; }
  .about-float-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    margin: 0;
    white-space: nowrap;
    z-index: 10;
    padding: 10px 16px;
    gap: 10px;
    border-radius: 12px;
  }
  .about-float-icon { width: 36px; height: 36px; border-radius: 10px; }
  .about-float-icon svg { width: 18px; height: 18px; }
  .about-float-num { font-size: 1.2rem; }
  .about-float-label { font-size: 0.65rem; }
  .about-grid { gap: 32px; }
  .about-right { width: 100%; max-width: 100%; }
  .about-features { margin: 20px 0; }
  .about-feature { width: 100%; box-sizing: border-box; }
  .about-feature > div:last-child { flex: 1; min-width: 0; overflow-wrap: break-word; }
  .feature-desc { overflow-wrap: break-word; word-break: break-word; }
  .about-stats-row { flex-wrap: wrap; gap: 10px; }
  .about-stat-card { flex: 1 1 calc(50% - 5px); min-width: 0; }
  .section-body { max-width: 100%; overflow-wrap: break-word; }
  /* Contact section mobile fixes */
  .contact-grid { gap: 32px; }
  .ci-card > div:last-child { flex: 1; min-width: 0; overflow-wrap: break-word; }
  .ci-val { overflow-wrap: break-word; word-break: break-word; }
  .team-row { grid-template-columns: 1fr; }
  .team-card-logo { height: 36px; opacity: 0.12; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-input, .form-select, .form-textarea { width: 100%; box-sizing: border-box; }
}

/* ══════════════════════════════
   BLOG PAGE
══════════════════════════════ */

/* ─── BLOG HERO ─── */
.blog-hero {
  padding: 140px 48px 80px;
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.blog-hero-left {}
.blog-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
}
.blog-tag::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.blog-hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 20px;
}
.blog-hero-title em { font-style: italic; color: var(--green); }
.blog-hero-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.75; max-width: 440px; }
.blog-hero-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.blog-hero-stat {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 24px 20px; text-align: center;
}
.blog-hero-stat:first-child { background: var(--green); }
.blog-hero-stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--green); line-height: 1; margin-bottom: 6px; }
.blog-hero-stat:first-child .blog-hero-stat-num { color: white; }
.blog-hero-stat-label { font-size: 0.72rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-hero-stat:first-child .blog-hero-stat-label { color: rgba(255,255,255,0.7); }

/* ─── FILTER BAR ─── */
.filter-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray);
  padding: 0 48px;
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; position: sticky; top: 72px; z-index: 50;
}
.filter-btn {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  color: var(--text-light); padding: 18px 24px;
  border: none; background: transparent; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s; white-space: nowrap;
}
.filter-btn:hover { color: var(--green); }
.filter-btn.active { color: var(--green); border-bottom-color: var(--green); }
.filter-btn .filter-count {
  background: var(--green-pale); color: var(--green);
  font-size: 0.65rem; font-weight: 700;
  padding: 2px 7px; border-radius: 100px;
}
.filter-btn.active .filter-count { background: var(--green); color: white; }

/* ─── ARTICLES GRID ─── */
.articles-section {
  max-width: 1400px; margin: 0 auto;
  padding: 64px 48px 100px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ─── ARTICLE CARD ─── */
.article-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-mid); }
.article-card.featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
}
.article-card.featured:hover { transform: translateY(-4px); }
.article-img {
  position: relative; overflow: hidden;
  height: 220px;
}
.article-card.featured .article-img { height: 100%; min-height: 340px; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-img img { transform: scale(1.05); }
.article-cat-badge {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.cat-sfaturi  { background: rgba(45,122,58,0.85);  color: white; }
.cat-proiecte { background: rgba(245,166,35,0.9);  color: white; }
.cat-materiale{ background: rgba(26,46,28,0.8);    color: white; }
.cat-tendinte { background: rgba(59,150,73,0.85);  color: white; }

.article-body {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.article-card.featured .article-body { padding: 40px; justify-content: center; }
.article-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.article-date { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }
.article-meta-dot { width: 3px; height: 3px; background: var(--gray); border-radius: 50%; }
.article-read-time { font-size: 0.72rem; color: var(--text-light); }
.article-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 300;
  color: var(--text); line-height: 1.3; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.article-card.featured .article-title { font-size: 1.8rem; margin-bottom: 16px; }
.article-title em { font-style: italic; color: var(--green); }
.article-excerpt { font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.article-card.featured .article-excerpt { font-size: 0.9rem; }
.article-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--gray-light);
  margin-top: auto;
}
.article-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.author-name { font-size: 0.75rem; font-weight: 600; color: var(--text); }
.article-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; color: var(--green);
  transition: gap 0.25s;
}
.article-link:hover { gap: 10px; }
.article-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════
   ARTICLE PAGE
══════════════════════════════ */

/* ─── ARTICLE HERO ─── */
.article-hero {
  padding: 120px 48px 0;
  max-width: 860px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-light); margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: var(--gray); }
.article-cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-pale); color: var(--green);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.article-cat-pill::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.article-main-title {
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 20px;
}
.article-main-title em { font-style: italic; color: var(--green); }
.article-main-meta {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 28px; border-bottom: 1px solid var(--gray); margin-bottom: 40px;
  flex-wrap: wrap;
}
.meta-author { display: flex; align-items: center; gap: 10px; }
.meta-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.meta-author-name { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.meta-author-role { font-size: 0.72rem; color: var(--text-light); }
.meta-sep { width: 1px; height: 32px; background: var(--gray); }
.meta-item { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.meta-item svg { width: 14px; height: 14px; }

/* ─── COVER IMAGE ─── */
.article-cover {
  max-width: 1100px; margin: 0 auto 0;
  padding: 0 48px;
}
.article-cover img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.cover-caption { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 12px; font-style: italic; }

/* ─── ARTICLE LAYOUT ─── */
.article-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 48px 100px;
  display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start;
}
.article-content { min-width: 0; }

/* ─── ARTICLE BODY TYPOGRAPHY ─── */
.article-content p {
  font-size: 1rem; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 24px;
}
.article-content h2 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
  color: var(--text); margin: 48px 0 16px; letter-spacing: -0.01em;
}
.article-content h2 em { font-style: italic; color: var(--green); }
.article-content h3 {
  font-family: var(--sans); font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin: 32px 0 12px;
}
.article-content ul, .article-content ol {
  padding-left: 20px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px;
}
.article-content li { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }
.article-content ul li::marker { color: var(--green); }
.article-content strong { color: var(--text); font-weight: 700; }

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--green);
  background: var(--green-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 36px 0;
}
.pull-quote p {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  font-weight: 300; color: var(--text); line-height: 1.6;
  margin-bottom: 0 !important;
}

/* Tip box */
.tip-box {
  background: var(--green-pale); border: 1px solid var(--green-mid);
  border-radius: var(--radius-md); padding: 20px 24px; margin: 28px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.tip-icon { width: 32px; height: 32px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tip-icon svg { width: 16px; height: 16px; color: white; }
.tip-text { font-size: 0.87rem; color: var(--text); line-height: 1.65; }
.tip-text strong { color: var(--green); }

/* Article images */
.article-img-full {
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 36px 0; box-shadow: var(--shadow-md);
}
.article-img-full img { width: 100%; height: 400px; object-fit: cover; }
.article-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 36px 0; }
.article-img-grid .article-img-full { margin: 0; }
.article-img-grid .article-img-full img { height: 260px; }
.img-caption { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 8px; font-style: italic; }

/* Tags row */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 0; padding-top: 32px; border-top: 1px solid var(--gray); }
.article-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gray-light); color: var(--text-mid);
  font-size: 0.72rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  transition: all 0.2s;
}
.article-tag:hover { background: var(--green-pale); color: var(--green); }
.article-tag::before { content: '#'; opacity: 0.5; }

/* Share row */
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.share-label { font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.share-btn {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid var(--gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.7rem; font-weight: 700;
  transition: all 0.25s; cursor: pointer;
}
.share-btn:hover { background: var(--green); border-color: var(--green); color: white; }

/* ─── SIDEBAR ─── */
.article-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }

.sidebar-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }

/* TOC */
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc-list a { font-size: 0.8rem; color: var(--text-mid); padding: 6px 10px; border-radius: 8px; display: block; transition: all 0.2s; border-left: 2px solid transparent; }
.toc-list a:hover, .toc-list a.active { background: var(--green-pale); color: var(--green); border-left-color: var(--green); }

/* CTA sidebar card */
.sidebar-cta { background: var(--green); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.sidebar-cta-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: white; line-height: 1.3; margin-bottom: 10px; }
.sidebar-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.5; }
.sidebar-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: white; color: var(--green); font-size: 0.8rem; font-weight: 700; padding: 11px 20px; border-radius: 100px; transition: all 0.25s; width: 100%; }
.sidebar-cta-btn:hover { background: var(--orange); color: white; }
.sidebar-cta-btn svg { width: 14px; height: 14px; }

/* Related articles */
.related-art { display: flex; gap: 12px; margin-bottom: 14px; }
.related-art:last-child { margin-bottom: 0; }
.related-thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-info {}
.related-cat { font-size: 0.6rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.related-title { font-size: 0.78rem; font-weight: 600; color: var(--text); line-height: 1.4; transition: color 0.2s; }
.related-art:hover .related-title { color: var(--green); }

/* ─── NEXT/PREV ─── */
.article-nav {
  max-width: 1100px; margin: 0 auto;
  padding: 0 48px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.art-nav-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 24px 28px; transition: all 0.3s;
  display: flex; flex-direction: column; gap: 8px;
  border: 1.5px solid transparent;
}
.art-nav-card:hover { background: var(--green-pale); border-color: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.art-nav-dir { font-size: 0.65rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 6px; }
.art-nav-dir svg { width: 12px; height: 12px; }
.art-nav-title { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--text); line-height: 1.3; }
.art-nav-card:hover .art-nav-title { color: var(--green); }
.art-nav-card.next { text-align: right; }
.art-nav-card.next .art-nav-dir { justify-content: flex-end; }


/* ─── RESPONSIVE ─── BLOG ─── */
@media (max-width: 1100px) {
  .blog-hero { grid-template-columns: 1fr; padding: 120px 32px 60px; }
  .blog-hero-right { grid-template-columns: repeat(4, 1fr); }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-card.featured { grid-column: span 2; }
  .newsletter { flex-direction: column; }
  .nl-right { flex-direction: column; width: 100%; }
  .nl-input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .blog-hero { padding: 100px 24px 48px; }
  .blog-hero-right { grid-template-columns: 1fr 1fr; }
  .filter-bar { padding: 0 24px; top: 60px; }
  .articles-section { padding: 40px 24px 72px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .article-card.featured .article-img { height: 240px; min-height: unset; }
  .newsletter { margin: 0 16px; padding: 36px 24px; margin-bottom: 48px; }
  footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ─── RESPONSIVE ─── ARTICLE ─── */
@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .newsletter { flex-direction: column; }
  .nl-right { flex-direction: column; width: 100%; }
  .nl-input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .article-hero { padding: 100px 24px 0; }
  .article-cover { padding: 0 24px; }
  .article-cover img { height: 280px; }
  .article-layout { padding: 40px 24px 72px; }
  .article-img-grid { grid-template-columns: 1fr; }
  .article-nav { padding: 0 24px 60px; grid-template-columns: 1fr; }
  .newsletter { margin: 0 16px; padding: 36px 24px; margin-bottom: 48px; }
  footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
/* ── Form feedback states ── */
.form-submit:disabled,
.nl-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
