/*
Theme Name: Antrenament Sinergetic
Theme URI: https://alexandrusaru.com
Author: Alexandru Saru
Author URI: https://alexandrusaru.com
Description: Temă custom pentru Alexandru Saru | Antrenament Sinergetic. Paletă duală Crepuscul (dark) + Zori de Zi (light). Mișcare. Creație. Prezență.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: antrenament-sinergetic
Tags: custom-menu, custom-logo, featured-images, threaded-comments
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ============================================
   ALEXANDRU SARU — WORDPRESS THEME
   Dual Palette: Crepuscul (dark) + Zori de Zi (light)
   As Above, So Below
   ============================================ */

:root {
  /* Crepuscul (Above — Dark) */
  --dark-bg: #090B12;
  --dark-bg-subtle: #0E1020;
  --dark-bg-elevated: #141630;
  --dark-text: #E8E4F0;
  --dark-text-muted: #8A87A0;
  --dark-accent: #D4944A;
  --dark-accent-hover: #E0A55C;
  --dark-accent-subtle: rgba(212,148,74,0.12);
  --dark-divider: rgba(212,148,74,0.15);
  --dark-indigo: #1E1A38;

  /* Zori de Zi (Below — Light) */
  --light-bg: #FFFFFF;
  --light-bg-subtle: #F8F7FC;
  --light-bg-tinted: #F2F0F8;
  --light-text: #151228;
  --light-text-muted: #6E6A82;
  --light-accent: #D4944A;
  --light-divider: rgba(21,18,40,0.08);
  --light-indigo: #1E1A38;

  /* Typography */
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container: 1140px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden;}

body {
  font-family: var(--font-body);
  color: var(--light-text);
  background: var(--light-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.entry-content .intro-photo img {
	margin-right: auto;
	margin-left: auto;
	max-width: 400px;
	width:100%;
}

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

.h1-brand {
  display: block;
  font-size: 2.5rem;
}

.h1-seo {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Nav menu items */
.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu-wrapper a, #mobileMenu a, footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-menu-wrapper a:hover, #mobileMenu a:hover {
  color: rgba(255, 255, 255, 1);
}

/* Separator · între items */
.nav-menu-wrapper a + a::before {
  content: '·';
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  pointer-events: none;
}

/* --- SECTION UTILITIES --- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
}

/* --- BUTTONS --- */
.btn {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

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

.btn-primary:hover {
  background: var(--dark-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,148,74,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--dark-accent);
  border: 1px solid var(--dark-accent);
  border-bottom-color: rgb(212, 148, 74) !important;
}

.btn-outline:hover {
  background: var(--dark-accent-subtle);
  transform: translateY(-1px);
}

.btn-light-primary {
  background: var(--light-indigo);
  color: var(--dark-text);
}

.btn-light-primary:hover {
  background: #2A2550;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,26,56,0.2);
}

.btn-light-outline {
  background: transparent;
  color: var(--light-indigo);
  border: 1px solid var(--light-indigo);
}

.btn-light-outline:hover {
  background: rgba(30,26,56,0.05);
  transform: translateY(-1px);
}

/* ============================================
   NAVIGATION (Crepuscul)
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 11, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 148, 74, 0.08);
  transition: all 0.4s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  max-width: 100vw;
  box-sizing: border-box;
}

.site-nav.scrolled {
  background: rgba(9, 11, 18, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 36px; width: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-text);
}

.nav-logo-text span { color: var(--dark-accent); }

/* WordPress menu integration */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li { position: relative; }

.nav-menu a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-text-muted);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--dark-accent);
}

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

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
  width: 100%;
}



/* Dropdown submenu */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background: var(--dark-bg-subtle);
  border: 1px solid rgba(212,148,74,0.1);
  border-radius: 6px;
  padding: 12px 0;
  margin-top: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  list-style: none;
  z-index: 100;
}

.nav-menu li:hover > .sub-menu { display: block; }

.nav-menu .sub-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.nav-menu .sub-menu a:hover { background: var(--dark-accent-subtle); }
.nav-menu .sub-menu a::after { display: none; }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--dark-accent);
  color: var(--dark-bg);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-cta:hover { background: var(--dark-accent-hover); }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--dark-text);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark-bg);
  z-index: 999;
  padding: 40px;
  overflow-y: auto;
}

.mobile-menu.active { display: block; }

.mobile-menu .nav-menu {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.mobile-menu .nav-menu a {
  font-size: 1.1rem;
  padding: 16px 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(212,148,74,0.08);
}

.mobile-menu .nav-menu .sub-menu {
  display: block;
  position: static;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0 0 20px;
  margin: 0;
}

.mobile-menu .nav-menu .sub-menu a {
  font-size: 0.95rem;
  padding: 12px 0;
  color: var(--dark-text-muted);
}

/* ============================================
   HERO (Crepuscul)
   ============================================ */
.hero {
  background: var(--dark-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(212,148,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark-bg-subtle), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo {
  width: 70px; height: 86px;
  margin: 0 auto 18px;
}

.hero-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.hero-subbrand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark-accent);
  margin-bottom: 30px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-tagline em {
  font-style: normal;
  color: var(--dark-accent);
}

.hero-desc {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 300;
	color: var(--dark-accent);
	line-height: 1.7;
	max-width: 520px;
	margin: 30px auto 35px;
}

.hero-ctas, .page-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ============================================
   THREE GATES SECTION (Crepuscul)
   ============================================ */
.section-dark {
  background: var(--dark-bg-subtle);
  padding: var(--section-pad);
  position: relative;
}
.section-dark.under-fold {
	padding-top: 60px;
}

.section-dark.under-fold .section-header.reveal.visible h2.section-title {
	font-size: 1.6rem;
	color: var(--dark-accent);
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dark-divider), transparent);
}

.section-dark .section-label { color: var(--dark-accent); }
.section-dark .section-title { color: var(--dark-text); }
.section-dark .section-subtitle { color: var(--dark-text-muted); }

.section-dark-alt {
  background: var(--dark-bg);
  padding: var(--section-pad);
  position: relative;
}

.section-dark-alt::before,
.section-dark-alt::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dark-divider), transparent);
}

.section-dark-alt::before { top: 0; }
.section-dark-alt::after { bottom: 0; }

.section-dark-alt .section-label { color: var(--dark-accent); }
.section-dark-alt .section-title { color: var(--dark-text); }
.section-dark-alt .section-subtitle { color: var(--dark-text-muted); }

/* Section light */
.section-light {
  background: var(--light-bg);
  padding: var(--section-pad);
}

.section-light .section-label { color: var(--light-accent); }
.section-light .section-title { color: var(--light-text); }

.section-light-alt {
  background: var(--light-bg-subtle);
  padding: var(--section-pad);
}

.section-light-alt .section-label { color: var(--light-accent); }
.section-light-alt .section-title { color: var(--light-text); }

/* Section header centered */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle { margin: 0 auto; }

/* ============================================
   GATE CARDS
   ============================================ */
.gates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gate-card {
  background: var(--dark-bg);
  border: 1px solid rgba(212,148,74,0.08);
  border-radius: 8px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--dark-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.gate-card:hover {
  border-color: rgba(212,148,74,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.gate-symbol {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--dark-accent);
  display: block;
  line-height: 1;
}

.gate-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.gate-pillar {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-accent);
  margin-bottom: 20px;
  opacity: 0.7;
}

.gate-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.gate-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.gate-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-accent);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gate-link:hover { gap: 10px; }
.gate-link::after { content: '→'; }

/* ============================================
   ABOUT PREVIEW (Zori de Zi)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light-bg-tinted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--light-text-muted);
  letter-spacing: 0.1em;
  border: 1px dashed rgba(21,18,40,0.15);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 2px solid var(--light-accent);
  border-radius: 8px;
  opacity: 0.15;
  z-index: -1;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--light-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-text strong { color: var(--light-text); font-weight: 600; }

.about-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--light-indigo);
  font-style: italic;
  margin: 28px 0;
  padding-left: 20px;
  border-left: 2px solid var(--light-accent);
  line-height: 1.6;
}

/* ============================================
   HOW WE WORK CARDS (Crepuscul)
   ============================================ */
.hww-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.hww-card {
  background: var(--dark-bg-subtle);
  border: 1px solid rgba(212,148,74,0.08);
  border-radius: 8px;
  padding: 44px 36px;
  transition: all 0.4s ease;
}

.hww-card:hover {
  border-color: rgba(212,148,74,0.18);
  transform: translateY(-2px);
}

.hww-card-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--dark-accent);
}

.hww-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.hww-card-sub {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.hww-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hww-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hww-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  background: var(--dark-accent-subtle);
  color: var(--dark-accent);
  border-radius: 20px;
}

/* ============================================
   TESTIMONIALS (Zori de Zi)
   ============================================ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.test-card {
  background: var(--light-bg);
  border: 1px solid var(--light-divider);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.test-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(21,18,40,0.06);
}

.test-stars {
  color: var(--light-accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.test-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--light-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.test-author {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-text);
}

.test-author-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--light-text-muted);
  margin-top: 2px;
}

/* ============================================
   BLOG CARDS (Zori de Zi)
   ============================================ */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.blog-header .section-title { margin-bottom: 0; }

.blog-header-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.blog-header-link:hover { gap: 10px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border: 1px solid var(--light-divider);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21,18,40,0.06);
}

.blog-card-image {
  width: 100%; height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-placeholder {
  width: 100%; height: 200px;
  background: var(--light-bg-tinted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--light-text-muted);
  letter-spacing: 0.1em;
}

.blog-card-body { padding: 24px; }

.blog-card-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-accent);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.blog-card-title a:hover { color: var(--light-accent); }

.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--light-text-muted);
  line-height: 1.6;
}

/* ============================================
   NEWSLETTER (Crepuscul)
   ============================================ */
.newsletter {
  background: var(--dark-bg-subtle);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,148,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-content { position: relative; z-index: 1; }

.newsletter-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.newsletter-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--dark-bg);
  border: 1px solid rgba(212,148,74,0.15);
  border-radius: 3px;
  color: var(--dark-text);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input::placeholder { color: var(--dark-text-muted); }
.newsletter-input:focus { border-color: var(--dark-accent); }

/* ============================================
   FOOTER (Crepuscul)
   ============================================ */
.site-footer {
  background: var(--dark-bg);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(212,148,74,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  width: 48px; height: 48px;
  margin-bottom: 16px;
}

.footer-brand-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-accent);
  margin-bottom: 16px;
}

.footer-brand-sub.below {
	margin-bottom: 5px;
}

.footer-brand-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark-text-muted);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-accent);
  margin-bottom: 20px;
}

/* Footer WP menus */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer li {
	list-style: none;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 7px;
}

.footer-address, .footer-disclaimer {
	color: var(--dark-text-muted);
	font-size:0.9rem;
}

.footer-menu a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark-text-muted);
  transition: color 0.3s ease;
}

.footer-menu a:hover { color: var(--dark-text); }

.footer-bottom {
  border-top: 1px solid rgba(212,148,74,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--dark-text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark-text-muted);
  transition: color 0.3s ease;
}

.footer-social a:hover { color: var(--dark-accent); }

/* ============================================
   PAGE CONTENT (Zori de Zi)
   ============================================ */
.page-hero {
  background: var(--dark-bg);
  padding: 140px 40px 80px;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--dark-text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-content {
  background: var(--light-bg);
  padding-top: 30px;
	padding-bottom: 60px;
}

.page-content.inner-wp {
	margin-bottom: 3em;
}

.page-content .container {
  max-width: 780px;
}

.page-content.inner-wp .container,
.wp-singular.page-template-default.page .page-content .container {
	max-width: unset;
	padding:0;
}
.section--light, .section--dark{
	padding:0 40px;
}
.section--dark {
	background: var(--dark-bg);
	color: var(--dark-text);
	padding-top: 5px;
	padding-bottom:5px;
	margin-top:60px;
	margin-bottom:60px;
}
.inner-wp .section__inner,
.wp-singular.page-template-default.page .page-content .section__inner,
#post-224 .entry-content, #post-237 .entry-content, #post-233 .entry-content, #post-218 .entry-content{
	max-width: 780px;
	margin-right: auto;
	margin-left: auto;
}

/* Pagini Pilon */
#hero .hero-offer-title {
	color: var(--dark-text);
	font-size: 1.8rem;
	font-weight: 300;
	margin-bottom: 10px;
}
#hero .hero-offer-subtitle {
	color: var(--dark-text-muted);
}
#hero .hero-offer-body {
	color: var(--dark-text-muted);
	margin-bottom: 30px;
	max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

/* Methods Grid — 3 carduri pe orizontală */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Card individual */
.method-card {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.method-card__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.method-card__title {
	font-size: 1rem !important;
	margin-bottom: 0.75rem !important;
	font-weight: bold !important;
	margin-top: 20px !important;
}

.method-card__description {
  flex-grow: 1;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.method-card__meta {
  font-weight: 600;
  margin-bottom: 1rem;
}

.method-card__link {
  font-weight: 500;
  text-decoration: none;
}

/* Coming soon — ușor atenuat */
.method-card--coming-soon {
  opacity: 0.6;
}

/* Responsive — stack pe mobil */
@media (max-width: 768px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }
}

/* WordPress content styles */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display);
  color: var(--light-text);
  font-weight: 500;
  margin: 40px 0 16px;
}

.entry-content h2 { font-size: 1.6rem; }
.entry-content h3 { font-size: 1.3rem; }

.entry-content p {
  font-family: var(--font-body);
  color: var(--light-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.act-header {
	margin-top: 3em;
}

.entry-content h2.act-title{
	margin-top:10px;
}

.inner-wp .entry-content .section--dark p,
.wp-singular.page-template-default.page .page-content .entry-content .section--dark p{
	color:var(--dark-text);
}

.entry-content a {
  color: var(--light-accent);
  border-bottom: 1px solid rgba(212,148,74,0.3);
  transition: border-color 0.3s ease;
  font-weight: bold;
}

.entry-content a.btn-primary{
	color:var(--dark-bg);
}

.entry-content a:hover { border-color: var(--light-accent); }

.entry-content blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--light-accent);
  font-style: italic;
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--light-accent);
  line-height: 1.6;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 20px 24px;
  color: var(--light-text-muted);
}

.entry-content li { margin-bottom: 8px; }

.entry-content img {
  border-radius: 8px;
  margin: 32px 0;
}

.cta-final__details {
	color: var(--light-text-muted);
	margin-top: 1em;
}

/* ============================================
   BLOG INDEX (Zori de Zi)
   ============================================ */
.blog-index {
  background: var(--light-bg);
  padding: 60px 0 100px;
}

/* ============================================
   SINGLE POST
   ============================================ */
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.post-category {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-accent);
}

.post-date {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--light-text-muted);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

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

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* Hero entrance animations */
.hero .hero-logo { animation: fadeInUp 1s ease 0.2s both; }
.hero .hero-brand { animation: fadeInUp 1s ease 0.4s both; }
.hero .hero-subbrand { animation: fadeInUp 1s ease 0.5s both; }
.hero .hero-tagline { animation: fadeInUp 1s ease 0.7s both; }
#hero .hero-offer-title { animation: fadeInUp 1s ease 0.9s both; }
.hero .hero-desc { animation: fadeInUp 1s ease 0.9s both; }
#hero .hero-offer-subtitle { animation: fadeInUp 1s ease 1.0s both; }
#hero .hero-offer-body { animation: fadeInUp 1s ease 1.1s both; }
.hero .hero-ctas { animation: fadeInUp 1s ease 1.2s both; }
.hero .hero-scroll { animation: fadeInUp 1s ease 1.4s both; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }
  .container { padding: 0 24px; }
  .nav-menu-wrapper { display: none; }
  .nav-toggle { display: flex; }
  .gates-grid, .test-grid, .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .hww-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-brand { font-size: 1.2rem; letter-spacing: 0.15em; }
  .section-title { font-size: 1.7rem; }
  .newsletter-form { flex-direction: column; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  
    .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 11, 18, 0.98);
    z-index: 999;
    padding: 40px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .mobile-menu.active {
    display: flex;
  }
  
  .site-nav {
    padding: 0 16px;
  }
  .hero-desc{
	  font-size:1.5rem;
  }
  .hero-subbrand{
	 font-size:0.9rem; 
  }
  .hero-logo {
  width: 70px; height: 86px;
  margin: 0 auto 32px;
}

.h1-brand {
	font-size: 1.7rem;
}

}

@media (max-width: 600px) {
  .hero { padding: 80px 20px 60px; }
  .hero-ctas, .page-ctas { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 120px 20px 60px; }
}

@media (max-width: 480px) {
  .site-nav {
    padding: 0 12px;
  }
  
  .nav-logo img {
    height: 28px;
    width: 28px;
  }
  
  .nav-logo-text {
    font-size: 0.72rem;
  }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.alignwide { max-width: 1140px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; margin-left: 0; margin-right: 0; }
.aligncenter { text-align: center; }

.wp-block-image { margin: 32px 0; }
.wp-block-image img { border-radius: 8px; }

/* Hide admin bar overlap */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
}
</style>
