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

:root {
  --beige:  #F9DFC6;
  --light:  #F2F2F2;
  --red:    #EF4132;
  --navy:   #0C0829;
  --white:  #ffffff;
  --font:   'Montserrat', Arial, sans-serif;
  --cont:   1200px;
  --t:      0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: var(--cont);
  margin: 0 auto;
  padding: 0 28px;
}

/* в”Ђв”Ђ Buttons в”Ђв”Ђ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-red          { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-red:hover    { background: #c7261a;       border-color: #c7261a; }
.btn-outline      { background: transparent;   color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover{ background: var(--white);  color: var(--navy);  border-color: var(--white); }
.btn-white        { background: var(--white);  color: var(--red);   border-color: var(--white); }
.btn-white:hover  { background: var(--navy);   color: var(--white); border-color: var(--navy); }
.btn-ghost-white  { background: transparent;   color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* в”Ђв”Ђ Section labels в”Ђв”Ђ */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.tag-light { color: var(--beige); }

.section-title {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 24px;
}
.accent { color: var(--red); }

/* в”Ђв”Ђ Scroll animations в”Ђв”Ђ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger-children.visible > *             { opacity:1; transform:none; }
.stagger-children.visible > *:nth-child(1)  { transition-delay:.08s; }
.stagger-children.visible > *:nth-child(2)  { transition-delay:.16s; }
.stagger-children.visible > *:nth-child(3)  { transition-delay:.24s; }
.stagger-children.visible > *:nth-child(4)  { transition-delay:.32s; }
.stagger-children.visible > *:nth-child(5)  { transition-delay:.40s; }
.stagger-children.visible > *:nth-child(6)  { transition-delay:.48s; }
.stagger-children.visible > *:nth-child(7)  { transition-delay:.56s; }
.stagger-children.visible > *:nth-child(8)  { transition-delay:.64s; }
.stagger-children.visible > *:nth-child(9)  { transition-delay:.72s; }
.stagger-children.visible > *:nth-child(10) { transition-delay:.80s; }
.stagger-children.visible > *:nth-child(11) { transition-delay:.88s; }
.stagger-children.visible > *:nth-child(12) { transition-delay:.96s; }

/* ================================================================
   HEADER
   ================================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--t), box-shadow var(--t);
}
#site-header.scrolled,
body.single #site-header,
body.page #site-header {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(12,8,41,.11);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 78px;
  gap: 24px;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo img { height: 50px; width: auto; }
.logo-dark  { display: none; }
.logo-light { display: block; }
#site-header.scrolled .logo-dark,
body.single #site-header .logo-dark,
body.page #site-header .logo-dark  { display: block; }
#site-header.scrolled .logo-light,
body.single #site-header .logo-light,
body.page #site-header .logo-light { display: none; }

/* Main nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list > li { position: relative; }

.nav-list > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  border-radius: 4px;
  transition: var(--t);
  white-space: nowrap;
}
.nav-list > li > a:hover { color: var(--red); }
#site-header.scrolled .nav-list > li > a,
body.single #site-header .nav-list > li > a,
body.page #site-header .nav-list > li > a { color: var(--navy); }
#site-header.scrolled .nav-list > li > a:hover,
body.single #site-header .nav-list > li > a:hover,
body.page #site-header .nav-list > li > a:hover { color: var(--red); }

.menu-item-has-children > a::after { content: ' ▾'; font-size: 9px; }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 36px rgba(12,8,41,.14);
  min-width: 200px;
  padding: 16px 0 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--t);
  pointer-events: none;
}
.nav-list > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: var(--t);
}
.sub-menu a:hover { background: var(--beige); color: var(--red); }

/* Lang switcher */
.lang-sw {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 4px;
  transition: var(--t);
  letter-spacing: .5px;
}
.lang-btn.active,
.lang-btn:hover { color: var(--red); }
#site-header.scrolled .lang-btn,
body.single #site-header .lang-btn,
body.page #site-header .lang-btn { color: var(--navy); }
#site-header.scrolled .lang-btn.active,
#site-header.scrolled .lang-btn:hover,
body.single #site-header .lang-btn.active,
body.single #site-header .lang-btn:hover,
body.page #site-header .lang-btn.active,
body.page #site-header .lang-btn:hover { color: var(--red); }
.lang-sep { color: rgba(255,255,255,.3); font-size: 11px; }
#site-header.scrolled .lang-sep,
body.single #site-header .lang-sep,
body.page #site-header .lang-sep { color: rgba(12,8,41,.2); }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
#site-header.scrolled .burger span,
body.single #site-header .burger span,
body.page #site-header .burger span { background: var(--navy); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 950;
  flex-direction: column;
  padding: 96px 32px 48px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav a {
  color: rgba(255,255,255,.88);
  font-size: 19px;
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  display: block;
  transition: var(--t);
}
.mobile-nav a:hover { color: var(--red); padding-left: 8px; }
.mobile-nav .m-lang {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.mobile-nav .m-lang a {
  background: none;
  border: 2px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 4px;
  transition: var(--t);
}
.mobile-nav .m-lang a.active {
  border-color: var(--red);
  color: var(--red);
}
.mobile-nav .m-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 78px;
  position: relative;
  overflow: hidden;
}

/* Decorative concentric arcs вЂ“ bottom-right */
.hero-deco {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 560px;
  height: 560px;
  pointer-events: none;
  opacity: .07;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.72;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 24px 64px rgba(239,65,50,.28));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* ================================================================
   INTRO
   ================================================================ */
#intro {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.intro-deco {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 440px; height: 440px;
  opacity: .05;
  pointer-events: none;
}
.intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.intro-title {
  font-size: clamp(22px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 28px;
}
.intro-text {
  font-size: 17px;
  line-height: 1.82;
  color: #3a3a4a;
}

/* ================================================================
   SLIDER / GALLERY
   ================================================================ */
#gallery {
  background: var(--white);
  padding: 60px 0;
}
.slider-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
  background: var(--navy);
  transform: translateZ(0);
}
/* Owl Carousel вЂ” slide items */
.slide-item {
  height: 520px;
  background-size: cover;
  background-position: center;
}

/* Owl Carousel вЂ” layout overrides */
.owl-slider { height: 100%; }
.owl-slider .owl-stage-outer,
.owl-slider .owl-stage { height: 100%; }
.owl-slider .owl-item { height: 100%; }
.owl-slider .owl-item .slide-item { height: 100%; }

/* Dots вЂ” bottom-center, pill style */
.owl-slider .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.owl-slider .owl-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.4) !important;
  border: none;
  padding: 0;
  margin: 0;
  transition: width var(--t), background var(--t);
  outline: none;
}
.owl-slider .owl-dot span { display: none; }
.owl-slider .owl-dot.active {
  width: 20px;
  background: var(--white) !important;
}

/* Nav arrows вЂ” centered vertically on sides */
.owl-slider .owl-nav { margin: 0; }
.owl-slider .owl-prev,
.owl-slider .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(255,255,255,.15) !important;
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white) !important;
  font-size: 26px;
  line-height: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border-color var(--t);
  backdrop-filter: blur(4px);
}
.owl-slider .owl-prev:hover,
.owl-slider .owl-next:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
}
.owl-slider .owl-prev { left: 16px; }
.owl-slider .owl-next { right: 16px; }

/* ================================================================
   CINE SUNTEM + CE FACEM  (combined)
   ================================================================ */
#cine-suntem {
  background: var(--beige);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cs-deco {
  position: absolute;
  bottom: -90px; right: -90px;
  width: 480px; height: 480px;
  opacity: .13;
  pointer-events: none;
}
.despre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.despre-col {
  padding: 0 56px;
}
.despre-col:first-child {
  padding-left: 0;
  border-right: 1px solid rgba(12,8,41,.12);
}
.despre-col:last-child {
  padding-right: 0;
}
.despre-quote {
  padding-left: calc(50% + 56px);
  padding-top: 32px;
}
.cs-subtitle {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  margin-bottom: 22px;
}
.despre-body { font-size: 16px; line-height: 1.82; color: #2d2d3a; }
.despre-body p + p { margin-top: 16px; }

.quote-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.quote-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 48px solid rgba(239,65,50,.13);
}
.quote-box blockquote {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.quote-box blockquote::before {
  content: '\201C';
  font-size: 88px;
  color: var(--red);
  line-height: 0;
  vertical-align: -36px;
  margin-right: 6px;
  font-family: Georgia, serif;
}

/* ================================================================
   VIZIUNEA NOASTRД‚
   ================================================================ */
#viziunea {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.viz-deco {
  position: absolute;
  top: -70px; left: -70px;
  width: 500px; height: 500px;
  opacity: .07;
  pointer-events: none;
}
.viz-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.viz-head .section-title { color: var(--white); }
.viz-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
}
.viz-list { display: flex; flex-direction: column; gap: 14px; }
.viz-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  transition: var(--t);
}
.viz-item:hover { background: rgba(255,255,255,.09); }
.viz-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.viz-item p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.82); }

/* ================================================================
   VALORILE NOASTRE
   ================================================================ */
#valori {
  background: var(--light);
  padding: 100px 0;
}
.valori-head { text-align: center; margin-bottom: 56px; }
.valori-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.val-card {
  background: var(--white);
  border-radius: 14px;
  padding: 34px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.val-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--t);
}
.val-card:hover { transform: translateY(-8px); box-shadow: 0 20px 52px rgba(12,8,41,.12); }
.val-card:hover::after { transform: scaleX(1); }
.val-icon {
  width: 64px; height: 64px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}
.val-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.val-desc { font-size: 13px; color: #666; line-height: 1.6; }

/* ================================================================
   NOUTД‚ИљI
   ================================================================ */
#noutati { background: var(--white); padding: 100px 0; }
.noutati-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 28px rgba(12,8,41,.08);
  transition: transform var(--t), box-shadow var(--t);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(12,8,41,.14);
}
.news-thumb {
  display: block;
  height: 210px;
  overflow: hidden;
  background: var(--light);
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light);
}
.news-body { padding: 26px; }
.news-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
  color: var(--navy);
  margin-bottom: 10px;
}
.news-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.72;
  margin-bottom: 18px;
}
.news-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.news-more::after { content: '→'; }
.news-card:hover .news-more { gap: 10px; }

/* ================================================================
   CTA
   ================================================================ */
#cta {
  background: var(--red);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-deco {
  position: absolute;
  top: -60px; right: -60px;
  width: 520px; height: 520px;
  opacity: .1;
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(30px, 4.8vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.72;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
#site-footer {
  background: var(--navy);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.65);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  margin-bottom: 28px;
}
.footer-brand img { height: 48px; margin-bottom: 18px; }
.footer-desc {
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 24px;
  max-width: 270px;
}
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--t);
}
.soc-btn:hover { background: var(--red); color: var(--white); }
.soc-btn svg { width: 17px; height: 17px; fill: currentColor; }

.foot-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: var(--t);
}
.foot-links a:hover { color: var(--red); padding-left: 4px; }

.foot-email { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.foot-email a { color: var(--beige); transition: var(--t); }
.foot-email a:hover { color: var(--red); }

.foot-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.foot-cta .btn { text-align: center; padding: 11px 22px; font-size: 14px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { color: rgba(255,255,255,.4); transition: var(--t); font-size: 13px; }
.foot-legal a:hover { color: var(--red); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .valori-grid { grid-template-columns: repeat(3, 1fr); }
  .viz-inner      { grid-template-columns: 1fr; gap: 48px; }
  .despre-inner   { grid-template-columns: 1fr; }
  .despre-col     { padding: 0 0 48px 0; border-right: none !important; border-bottom: 1px solid rgba(12,8,41,.12); }
  .despre-col:last-child { padding-bottom: 0; border-bottom: none; }
  .despre-quote   { padding-left: 0; }
  .hero-inner     { gap: 40px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .lang-sw  { display: none; }
  .burger   { display: flex; margin-left: auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0;
  }
  .hero-visual { order: -1; }
  .hero-visual img { max-height: 260px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }

  .cs-visual { order: -1; }
  .cs-visual img { max-height: 240px; }

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

  .news-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .foot-legal { justify-content: center; }

  .slider-wrap { height: 380px; border-radius: 12px; }
  .slide-item   { height: 380px; }
}

@media (max-width: 480px) {
  .valori-grid { grid-template-columns: 1fr 1fr; }
  .slider-wrap { height: 260px; border-radius: 8px; }
  .slide-item   { height: 260px; }
  .hero-title { font-size: 32px; }
}

/* ================================================================
   ECHIPA NAИљIONALД‚
   ================================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-deco {
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  pointer-events: none;
  opacity: .07;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .tag { color: var(--beige); }
.page-hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.72;
}

.team-section { padding: 80px 0; }
.team-section-head {
  margin-bottom: 48px;
}
.team-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
}

.member-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(12,8,41,.07);
  transition: transform var(--t), box-shadow var(--t);
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(12,8,41,.13);
}
.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--light);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.member-card:hover .member-photo img { transform: scale(1.05); }

.member-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,.25);
  letter-spacing: 2px;
}

.member-body { padding: 20px 22px 24px; }
.member-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.member-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: none; }
}
@media (max-width: 768px) {
  .team-grid,
  .team-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .page-hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .team-grid,
  .team-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 470px) {
  .team-grid,
  .team-grid--3 { grid-template-columns: 1fr; }
}

/* ================================================================
   TRANSPARENИљД‚
   ================================================================ */
.transparency-section {
  background: var(--white);
  padding: 80px 0;
}
.transparency-intro {
  max-width: 930px;
  font-size: 17px;
  line-height: 1.82;
  color: #3a3a4a;
  margin-bottom: 56px;
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 930px;
}
.doc-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--light);
  border-radius: 14px;
  padding: 28px 28px;
  border: 1.5px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.doc-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(12,8,41,.08);
}
.doc-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}
.doc-info { flex: 1; }
.doc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.doc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}
.doc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--t);
  cursor: pointer;
  border: none;
}
.doc-btn--primary {
  background: var(--navy);
  color: var(--white);
}
.doc-btn--primary:hover { background: var(--red); }
.doc-btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(12,8,41,.2);
}
.doc-btn--secondary:hover { border-color: var(--red); color: var(--red); }
.doc-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

@media (max-width: 640px) {
  .doc-grid { grid-template-columns: 1fr; }
  .doc-card { padding: 22px; }
}

/* ================================================================
   IMPLICД‚-TE вЂ“ FORM PAGE
   ================================================================ */

.implica-te-section {
  background: var(--light);
  padding: 80px 0 100px;
}

.implica-te-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* в”Ђв”Ђ Card в”Ђв”Ђ */
.mf-card {
  background: var(--white);
  border: 1px solid rgba(12,8,41,.08);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(12,8,41,.07);
}

/* в”Ђв”Ђ Section headers в”Ђв”Ђ */
.mf-section {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin: 36px 0 24px;
}
.mf-section:first-child { margin-top: 0; }

.mf-req { color: var(--red); }

/* в”Ђв”Ђ Grid в”Ђв”Ђ */
.mf-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 4px;
}

/* в”Ђв”Ђ Fields в”Ђв”Ђ */
.mf-field { margin-bottom: 4px; }

.mf-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.mf-field .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.mf-card input[type="text"],
.mf-card input[type="email"],
.mf-card input[type="number"],
.mf-card input[type="tel"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}

.mf-card input[type="text"]:focus,
.mf-card input[type="email"]:focus,
.mf-card input[type="number"]:focus,
.mf-card input[type="tel"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,65,50,.1);
}

/* в”Ђв”Ђ Radio вЂ“ card-style options в”Ђв”Ђ */
.mf-options { margin-bottom: 4px; }

.mf-options .wpcf7-form-control-wrap,
.mf-options .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mf-options .wpcf7-list-item { margin: 0; padding: 0; }

.mf-options .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 20px;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.mf-options .wpcf7-list-item label:hover {
  border-color: rgba(239,65,50,.4);
  background: rgba(239,65,50,.02);
}

/* Custom radio circle via label::before */
.mf-options .wpcf7-list-item label::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 16px;
  transition: border-color var(--t), background var(--t);
}

/* Hide native radio */
.mf-options input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Checked state (modern browsers support :has) */
.mf-options .wpcf7-list-item:has(input:checked) label {
  border-color: var(--red);
  background: rgba(239,65,50,.04);
}
.mf-options .wpcf7-list-item:has(input:checked) label::before {
  border-color: var(--red);
  background: radial-gradient(circle, var(--red) 40%, transparent 42%);
}

/* в”Ђв”Ђ Newsletter checkbox в”Ђв”Ђ */
.mf-newsletter {
  margin-top: 30px;
  padding: 18px 20px;
  background: var(--light);
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: border-color var(--t);
}

.mf-newsletter .wpcf7-form-control-wrap,
.mf-newsletter .wpcf7-checkbox { display: block; }

.mf-newsletter .wpcf7-list-item { margin: 0; padding: 0; }

.mf-newsletter .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  line-height: 1.5;
}

/* Custom checkbox box via label::before */
.mf-newsletter .wpcf7-list-item label::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background: var(--white);
  margin-right: 14px;
  margin-top: 1px;
  transition: background var(--t), border-color var(--t);
}

/* Hide native checkbox */
.mf-newsletter input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Checked state */
.mf-newsletter .wpcf7-list-item:has(input:checked) label::before {
  background: var(--red);
  border-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1.5,6 4.5,9.5 10.5,2.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* в”Ђв”Ђ Submit в”Ђв”Ђ */
.mf-submit-wrap {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.mf-card input[type="submit"] {
  width: 100%;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}

.mf-card input[type="submit"]:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.mf-privacy {
  font-size: 12px;
  color: #999;
  text-align: center;
  line-height: 1.5;
}
.mf-privacy strong { color: var(--navy); }

/* в”Ђв”Ђ CF7 validation states в”Ђв”Ђ */
.mf-card .wpcf7-not-valid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(239,65,50,.1) !important;
}
.mf-card .wpcf7-not-valid-tip {
  display: block;
  font-size: 11px;
  color: var(--red);
  margin-top: 5px;
}

/* в”Ђв”Ђ Responsive в”Ђв”Ђ */
@media (max-width: 620px) {
  .mf-card { padding: 28px 20px; }
  .mf-grid2 { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTACT
   ================================================================ */

.contact-section {
  background: var(--light);
  padding: 80px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

/* в”Ђв”Ђ Info column в”Ђв”Ђ */
.contact-org {
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 36px;
}
.contact-org strong { font-weight: 800; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid rgba(12,8,41,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
}

.contact-item a {
  color: var(--navy);
  transition: color var(--t);
}
.contact-item a:hover { color: var(--red); }

/* textarea inside .mf-card */
.mf-card textarea {
  display: block;
  width: 100%;
  min-height: 140px;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color var(--t), box-shadow var(--t);
}

.mf-card textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,65,50,.1);
}

.mf-field .wpcf7-form-control-wrap textarea { width: 100%; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================================
   ECHIPE LOCALE
   ================================================================ */

.el-section { padding: 80px 0 100px; }
.el-section--light { background: var(--light); }
.el-section--white { background: var(--white); }

.el-section-head {
  margin-bottom: 48px;
}
.el-section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-top: 12px;
}

/* в”Ђв”Ђ Grid в”Ђв”Ђ */
.el-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.el-grid--diaspora {
  grid-template-columns: repeat(3, 1fr);
}

/* в”Ђв”Ђ Card в”Ђв”Ђ */
.el-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid rgba(12,8,41,.07);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.el-section--white .el-card {
  background: var(--light);
}

.el-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(12,8,41,.08);
  transform: translateY(-2px);
}

/* Number badge (Moldova districts) */
.el-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.el-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.el-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.el-person {
  font-size: 11px;
  color: #aaa;
  font-weight: 500;
}

.el-person em {
  font-style: normal;
  color: #bbb;
}

/* в”Ђв”Ђ Responsive в”Ђв”Ђ */
@media (max-width: 1024px) {
  .el-grid { grid-template-columns: repeat(3, 1fr); }
  .el-grid--diaspora { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .el-grid,
  .el-grid--diaspora { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .el-grid,
  .el-grid--diaspora { grid-template-columns: 1fr; }
}

/* ================================================================
   NOUTД‚ИљI вЂ“ ARCHIVE PAGE
   ================================================================ */

.noutati-archive {
  background: var(--light);
  padding: 80px 0 100px;
}

.noutati-empty {
  color: #999;
  font-size: 16px;
  text-align: center;
  padding: 60px 0;
}

/* news-title link reset (archive uses <h2> with <a> inside) */
.news-title a {
  color: inherit;
  transition: color var(--t);
}
.news-title a:hover { color: var(--red); }

/* ================================================================
   SINGLE POST
   ================================================================ */

.single-thumb {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}

.single-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.single-article { background: var(--white); }

.single-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 28px 100px;
}

.single-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.single-title {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 44px;
}

.single-body {
  font-size: 17px;
  line-height: 1.82;
  color: #2a2a3a;
}

.single-body p   { margin-bottom: 1.5em; }
.single-body h2  { font-size: 24px; font-weight: 800; color: var(--navy); margin: 2em 0 .75em; }
.single-body h3  { font-size: 20px; font-weight: 700; color: var(--navy); margin: 1.75em 0 .6em; }
.single-body ul,
.single-body ol  { padding-left: 1.4em; margin-bottom: 1.5em; }
.single-body li  { margin-bottom: .4em; }
.single-body a   { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.single-body img { border-radius: 10px; margin: 2em 0; }
.single-body blockquote {
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

/* Prev / Next navigation */
.single-nav {
  display: flex;
  gap: 20px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.single-nav-link {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: var(--light);
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: border-color var(--t), background var(--t);
}

.single-nav-link:hover {
  border-color: var(--red);
  background: var(--white);
}

.single-nav-link--next { text-align: right; }

.single-nav-dir {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
}

.single-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .single-content-wrap { padding: 40px 20px 60px; }
  .single-nav { flex-direction: column; }
  .single-nav-link--next { text-align: left; }
}

@media (max-width: 768px) {
  .noutati-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ================================================================
   ERROR 404 – Header (fundal alb, text lizibil)
   ================================================================ */
body.error404 #site-header {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(12,8,41,.11);
}
body.error404 #site-header .logo-dark  { display: block; }
body.error404 #site-header .logo-light { display: none; }
body.error404 #site-header .nav-list > li > a { color: var(--navy); }
body.error404 #site-header .nav-list > li > a:hover { color: var(--red); }
body.error404 #site-header .lang-btn { color: var(--navy); }
body.error404 #site-header .lang-btn.active,
body.error404 #site-header .lang-btn:hover { color: var(--red); }
body.error404 #site-header .lang-sep { color: rgba(12,8,41,.2); }
body.error404 #site-header .burger span { background: var(--navy); }

/* ================================================================
   ERROR 404 – Secțiunea principală
   ================================================================ */
.page-404 {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.e404-deco {
  position: absolute;
  pointer-events: none;
  opacity: .22;
}
.e404-deco--tr { top: -60px; right: -60px; width: 480px; }
.e404-deco--bl { bottom: -50px; left: -60px; width: 400px; }

.e404-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.e404-num {
  font-size: clamp(160px, 32vw, 280px);
  font-weight: 900;
  line-height: .8;
  color: var(--navy);
  opacity: .04;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -6px;
}

.e404-inner .tag { margin-bottom: 16px; }

.e404-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.e404-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 40px;
}

.e404-links {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(12,8,41,.1);
}

.e404-links-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(12,8,41,.38);
  margin-bottom: 18px;
}

.e404-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.e404-link {
  padding: 11px 22px;
  background: var(--light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid transparent;
  transition: border-color var(--t), color var(--t), background var(--t);
}

.e404-link:hover {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 4px 16px rgba(239,65,50,.1);
}

@media (max-width: 480px) {
  .page-404 { padding: 120px 0 80px; }
  .e404-sub { font-size: 15px; }
  .e404-link { padding: 10px 18px; font-size: 13px; }
}

