/* ===== VARIABLES ===== */
:root {
  --green-dark: #0f2920;
  --green: #1a3c34;
  --green-light: #264d42;
  --gold: #c9a96e;
  --gold-light: #e0c992;
  --gold-pale: #f5ecd7;
  --white: #fafaf8;
  --gray: #b0b0a8;
  --text: #e8e6e0;
  --text-muted: #9a9a90;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--green-dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 41, 32, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, .15);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem; color: var(--gold); font-weight: 700;
  letter-spacing: .02em;
}
.nav-logo span { color: var(--text); font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: .875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Mobile menu */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold);
  margin: 5px 0; transition: .3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(15, 41, 32, .97);
    flex-direction: column; align-items: center; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s;
  }
  .nav-links.open { max-height: 300px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 16px; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, .08) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(26, 60, 52, .6) 0%, transparent 60%),
    var(--green-dark);
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px; margin-bottom: 24px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white);
  max-width: 820px; margin: 0 auto 20px;
}
.hero h1 em {
  font-style: normal; color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px; margin: 0 auto 16px;
}
.hero-desc {
  font-size: 1rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 40px;
  line-height: 1.8;
}

/* ===== SIGNUP FORM ===== */
.signup-form {
  display: flex; gap: 12px;
  max-width: 480px; margin: 0 auto;
  justify-content: center;
}
.signup-form input {
  flex: 1; padding: 14px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: 6px;
  color: var(--white); font-size: .95rem;
  font-family: var(--font-body);
  outline: none; transition: border-color .2s;
}
.signup-form input::placeholder { color: var(--text-muted); }
.signup-form input:focus { border-color: var(--gold); }
.signup-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--green-dark);
  border: none; border-radius: 6px;
  font-weight: 600; font-size: .9rem;
  font-family: var(--font-body);
  cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.signup-form button:hover { background: var(--gold-light); }
.signup-note {
  margin-top: 12px; font-size: .8rem; color: var(--text-muted);
}

@media (max-width: 520px) {
  .signup-form { flex-direction: column; }
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
section:nth-child(even) { background: rgba(26, 60, 52, .25); }

.section-label {
  display: inline-block;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white); margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  color: var(--text-muted); max-width: 600px;
  margin-bottom: 48px; font-size: 1.05rem;
}
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step {
  padding: 36px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201, 169, 110, .1);
  border-radius: 12px;
  transition: border-color .3s;
}
.step:hover { border-color: rgba(201, 169, 110, .35); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem; color: var(--gold);
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--white);
  margin-bottom: 10px;
}
.step p { font-size: .9rem; color: var(--text-muted); }

/* ===== ORIGINS GRID ===== */
.origins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.origin-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201, 169, 110, .1);
  border-radius: 12px;
  transition: border-color .3s, transform .3s;
}
.origin-card:hover {
  border-color: rgba(201, 169, 110, .35);
  transform: translateY(-2px);
}
.origin-flag {
  font-size: 2.4rem; flex-shrink: 0; line-height: 1;
}
.origin-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--gold);
  margin-bottom: 6px;
}
.origin-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== MAP VISUAL ===== */
.europe-map-visual {
  text-align: center; margin-bottom: 56px;
}
.europe-map-visual svg {
  max-width: 500px; width: 100%; height: auto;
  opacity: .5;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201, 169, 110, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.blog-card:hover {
  border-color: rgba(201, 169, 110, .35);
  transform: translateY(-3px);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: .7;
}
.blog-card-body { padding: 28px; }
.blog-card-tag {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem; color: var(--white);
  margin-bottom: 10px; line-height: 1.35;
}
.blog-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-card .read-more {
  font-size: .85rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  padding: 140px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 169, 110, .06) 0%, transparent 60%),
    var(--green-dark);
}
.article-hero .section-label { margin-bottom: 16px; }
.article-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white); max-width: 700px; margin: 0 auto 16px;
  line-height: 1.2;
}
.article-meta { font-size: .85rem; color: var(--text-muted); }

.article-content {
  max-width: 720px; margin: 0 auto;
  padding: 60px 24px 100px;
}
.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem; color: var(--gold);
  margin: 48px 0 16px;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--white);
  margin: 32px 0 12px;
}
.article-content p {
  margin-bottom: 18px; color: var(--text);
  font-size: 1.02rem; line-height: 1.8;
}
.article-content ul, .article-content ol {
  margin: 0 0 18px 24px; color: var(--text);
}
.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px; margin: 28px 0;
  background: rgba(201, 169, 110, .05);
  border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--text-muted);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 140px 0 60px; text-align: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 169, 110, .06) 0%, transparent 60%),
    var(--green-dark);
}
.about-content {
  max-width: 760px; margin: 0 auto;
  padding: 60px 24px 100px;
}
.about-content p {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--text); margin-bottom: 24px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px;
}
.about-value {
  padding: 32px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201, 169, 110, .1);
  border-radius: 12px;
  text-align: center;
}
.about-value-icon { font-size: 2rem; margin-bottom: 16px; }
.about-value h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; color: var(--gold);
  margin-bottom: 8px;
}
.about-value p { font-size: .85rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-top: 1px solid rgba(201, 169, 110, .15);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white); margin-bottom: 12px;
}
.cta-banner p {
  color: var(--text-muted); margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(201, 169, 110, .1);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; }
.footer-links a { font-size: .85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .78rem; color: var(--text-muted); }

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: .5;
}
