@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #1a1208;
  --color-primary-dark: #0d0900;
  --color-accent: #b8892a;
  --color-accent-light: #d4a83a;
  --color-red: #8b1a1a;
  --color-bg: #faf8f4;
  --color-bg-alt: #f2ede3;
  --color-text: #1a1208;
  --color-text-light: #5a4a30;
  --color-border: #ddd5c0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 9, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 137, 42, 0.2);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.header-brand { display: flex; flex-direction: column; }
.header-brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.header-brand-sub { font-size: 0.68rem; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.12em; }

.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.lang-toggle {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--color-accent);
  padding: 0.4rem 0.8rem; border: 1px solid rgba(184,137,42,0.4);
  border-radius: 6px; cursor: pointer; background: transparent; transition: all 0.2s;
}
.lang-toggle:hover { background: rgba(184,137,42,0.1); border-color: var(--color-accent); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.mobile-menu-btn span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  position: relative;
  padding-bottom: 5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,9,0,0.92) 0%, rgba(13,9,0,0.6) 40%, rgba(13,9,0,0.2) 70%, transparent 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,137,42,0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto; padding: 0 2rem;
  width: 100%;
}
.hero-pill {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-accent); border: 1px solid rgba(184,137,42,0.5);
  padding: 0.35rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 600px;
  line-height: 1.65; margin-bottom: 2rem;
}
.hero-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--color-accent); color: #fff;
  font-size: 0.95rem; font-weight: 600; padding: 0.85rem 1.8rem;
  border-radius: 8px; transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: var(--color-accent-light); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.4); font-size: 0.68rem; letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* STATS BAR */
.stats-bar {
  background: var(--color-primary-dark);
  padding: 2.5rem 2rem;
}
.stats-grid {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--color-accent); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5); margin-top: 0.5rem;
}

/* INTRO */
.intro-section {
  padding: 6rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.intro-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-accent); font-weight: 600; margin-bottom: 0.8rem;
}
.intro-heading {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem;
}
.intro-text { font-size: 0.98rem; color: var(--color-text-light); margin-bottom: 1rem; line-height: 1.75; }
.intro-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-primary); color: #fff;
  font-size: 0.9rem; font-weight: 600; padding: 0.75rem 1.6rem;
  border-radius: 8px; transition: background 0.2s; margin-top: 0.5rem;
}
.intro-cta:hover { background: var(--color-primary-dark); }
.intro-image-wrap img {
  width: 100%; height: 420px; object-fit: cover; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s, box-shadow 0.4s;
}
.intro-image-wrap img:hover { transform: scale(1.02); box-shadow: 0 28px 80px rgba(0,0,0,0.2); }

/* ARTICLES */
.articles-section {
  background: var(--color-bg-alt);
  padding: 5rem 2rem;
}
.section-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-accent); font-weight: 600; text-align: center; margin-bottom: 0.8rem;
}
.section-heading {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; text-align: center; margin-bottom: 3.5rem; line-height: 1.2;
}

.article-list { max-width: 900px; margin: 0 auto; }

.article-card {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 0; background: #fff; border-radius: 12px; overflow: hidden;
  margin-bottom: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.article-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.article-card.reverse { grid-template-columns: 1fr 340px; }
.article-card.reverse .article-image { order: 2; }
.article-card.reverse .article-body { order: 1; }

.article-image img {
  width: 340px; height: 260px; object-fit: cover; display: block;
}
.article-card.reverse .article-image img { width: 340px; }

.article-body { padding: 2rem 2.2rem; display: flex; flex-direction: column; justify-content: center; }
.article-meta {
  font-size: 0.78rem; color: var(--color-text-light); margin-bottom: 0.8rem;
}
.article-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 0.9rem;
}
.article-excerpt { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: 1rem; }

.article-expand {
  font-size: 0.88rem; font-weight: 600; color: var(--color-accent);
  display: inline-flex; align-items: center; gap: 0.4rem;
  cursor: pointer; transition: gap 0.2s; background: none; border: none; padding: 0;
}
.article-expand:hover { gap: 0.7rem; }

.article-full {
  display: none; padding-top: 1rem;
}
.article-full.open { display: block; }
.article-full p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.75; margin-bottom: 0.9rem; }
.article-full strong { color: var(--color-text); font-weight: 600; }

/* TIPS */
.tips-section { padding: 5rem 2rem; background: #fff; }
.tips-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tip-card {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: 12px; padding: 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tip-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.tip-icon {
  width: 44px; height: 44px; background: rgba(184,137,42,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.tip-icon svg { width: 22px; height: 22px; stroke: var(--color-accent); fill: none; }
.tip-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.tip-text { font-size: 0.88rem; color: var(--color-text-light); line-height: 1.65; }

/* SEASONAL */
.seasonal-section {
  background: var(--color-bg-alt);
  padding: 5rem 2rem;
}
.seasonal-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.season-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s;
}
.season-card:hover { transform: translateY(-4px); }
.season-header { padding: 1.2rem 1.4rem; }
.season-header.spring { background: linear-gradient(135deg, #4a7c59, #6a9c6f); }
.season-header.summer { background: linear-gradient(135deg, #c4782a, #e09540); }
.season-header.autumn { background: linear-gradient(135deg, #8b4a1a, #b06030); }
.season-header.winter { background: linear-gradient(135deg, #3a5a7c, #507898); }
.season-icon svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.9); fill: none; }
.season-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff; margin-top: 0.6rem; }
.season-period { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }
.season-body { padding: 1.2rem 1.4rem; font-size: 0.85rem; color: var(--color-text-light); line-height: 1.65; }

/* NEWSLETTER */
.newsletter-section {
  background: var(--color-primary);
  padding: 5rem 2rem;
}
.newsletter-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.newsletter-heading {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 1rem;
}
.newsletter-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.newsletter-form input {
  padding: 0.9rem 1.1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07); color: #fff; font-size: 0.9rem; font-family: var(--font-body);
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--color-accent); }
.newsletter-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.newsletter-consent input { margin-top: 3px; accent-color: var(--color-accent); }
.newsletter-form button {
  background: var(--color-accent); color: #fff;
  font-size: 0.95rem; font-weight: 600; padding: 0.9rem; border-radius: 8px;
  transition: background 0.2s; cursor: pointer; border: none;
}
.newsletter-form button:hover { background: var(--color-accent-light); }
.newsletter-success { display: none; color: var(--color-accent); font-size: 0.95rem; font-weight: 600; text-align: center; padding: 2rem; }

/* FAQ */
.faq-section { padding: 5rem 2rem; background: #fff; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--color-text); cursor: pointer; text-align: left; background: none; border: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question svg { width: 20px; height: 20px; stroke: var(--color-accent); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 1.4rem; font-size: 0.92rem; color: var(--color-text-light); line-height: 1.7; }

/* FOOTER */
.footer {
  background: var(--color-primary-dark);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.footer-brand-tag { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-col-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.js-reveal .fade-up { opacity: 0; transform: translateY(28px); }
.js-reveal .fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-image-wrap { order: -1; }
  .seasonal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--color-primary-dark); flex-direction: column; padding: 1rem; gap: 0.2rem; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.9rem 1rem; }
  .mobile-menu-btn { display: flex; }
  .hero-content { padding: 0 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .article-card { grid-template-columns: 1fr; }
  .article-card.reverse { grid-template-columns: 1fr; }
  .article-card.reverse .article-image { order: 0; }
  .article-image img { width: 100%; height: 220px; }
  .tips-grid { grid-template-columns: 1fr; }
  .seasonal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stat-number { font-size: 1.8rem; }
  .article-body { padding: 1.5rem; }
}