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

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

:root {
  --bg: #faf8f4;
  --bg-2: #f0ece3;
  --card: #ffffff;
  --primary: #1a1208;
  --accent: #b8892a;
  --accent-light: #d4a84b;
  --text: #2d2416;
  --muted: #6b5d4d;
  --line: #ddd5c8;
  --shadow: rgba(26,18,8,0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
  --max-w: 1200px;
  --r: 6px;
}

html { scroll-behavior: smooth; }

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

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

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.site-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.site-brand span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 600;
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184,137,42,0.06);
}

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn svg { width: 24px; height: 24px; stroke: var(--primary); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 200;
  flex-direction: column;
  padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-close { background: none; border: none; cursor: pointer; }
.mobile-nav-close svg { width: 28px; height: 28px; stroke: var(--primary); }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-links a {
  font-size: 1.2rem; font-weight: 600;
  color: var(--primary); text-decoration: none;
  font-family: var(--font-serif);
}
.mobile-nav-footer { margin-top: auto; display: flex; gap: 8px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--img-hero);
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,8,0.45) 0%, rgba(26,18,8,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-scroll svg { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* STATS BAR */
.stats-bar {
  background: var(--primary);
  padding: 40px 24px;
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* INTRO */
.intro {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.intro-img { border-radius: var(--r); overflow: hidden; }
.intro-img img { width: 100%; height: 420px; object-fit: cover; }
.intro-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.2;
}
.intro-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* SECTIONS */
.section { padding: 72px 24px; }
.section-header {
  max-width: var(--max-w); margin: 0 auto 48px;
  text-align: center;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header p { color: var(--muted); font-size: 1.05rem; }

.bg-alt { background: var(--bg-2); }

/* ARTICLE GRID */
.article-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--card);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow); }
.article-card-img { height: 200px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 20px 22px 24px; }
.article-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.article-card-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* EXPANDABLE ARTICLE */
.article-expand-wrap { display: none; }
.article-expand-wrap.open { display: block; }
.article-expand {
  background: var(--card);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-top: -8px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px var(--shadow);
  font-size: 0.98rem; line-height: 1.8; color: var(--text);
}
.article-expand p { margin-bottom: 16px; }
.article-expand p:last-child { margin-bottom: 0; }
.article-toggle {
  display: block; margin: 0 auto 28px;
  padding: 10px 28px;
  border: 1.5px solid var(--accent);
  border-radius: var(--r);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.article-toggle:hover { background: rgba(184,137,42,0.06); }

/* TIPS GRID */
.tips-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tip-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 0 2px 8px var(--shadow);
  border-top: 3px solid var(--accent);
}
.tip-icon {
  width: 40px; height: 40px;
  background: rgba(184,137,42,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.tip-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; }
.tip-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.tip-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* SEASONAL */
.season-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.season-card {
  border-radius: var(--r);
  padding: 28px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.season-card::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  filter: brightness(0.85);
  z-index: 0;
}
.season-card > * { position: relative; z-index: 1; }
.season-spring { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.season-summer { background: linear-gradient(135deg, #9d4b00, #e07b39); }
.season-autumn { background: linear-gradient(135deg, #7f4f24, #b5752a); }
.season-winter { background: linear-gradient(135deg, #1b4965, #3a8fb7); }

.season-icon { margin-bottom: 12px; }
.season-icon svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 2; }
.season-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 4px;
}
.season-period { font-size: 0.78rem; opacity: 0.8; margin-bottom: 12px; }
.season-card p { font-size: 0.85rem; line-height: 1.6; opacity: 0.9; }

/* NEWSLETTER */
.newsletter {
  max-width: 600px; margin: 0 auto;
  text-align: center;
}
.newsletter h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.newsletter p { color: var(--muted); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 220px;
  padding: 13px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.95rem;
  background: var(--card);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  border: none; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--accent-light); }
.newsletter-consent {
  margin-top: 12px;
  font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.newsletter-consent input { accent-color: var(--accent); }
.newsletter-msg {
  margin-top: 14px;
  font-size: 0.88rem; font-weight: 600;
  display: none;
}
.newsletter-msg.show { display: block; }
.newsletter-msg.success { color: #2d6a4f; }
.newsletter-msg.error { color: #c0392b; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question span {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  color: var(--primary);
  padding-right: 20px;
}
.faq-question svg { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--accent); transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

/* FOOTER */
.footer { background: var(--primary); color: rgba(255,255,255,0.75); padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; font-weight: 600; margin-bottom: 12px; }
.footer-brand span { color: var(--accent-light); }
.footer-brand-text { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; }

/* LEGAL PAGES */
.legal-page { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.legal-page h1 { font-family: var(--font-serif); font-size: 2rem; color: var(--primary); margin-bottom: 32px; }
.legal-page h2 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary); margin: 28px 0 12px; }
.legal-page p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page li { color: var(--muted); margin-bottom: 8px; font-size: 0.95rem; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s 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; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-scroll svg { animation: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .intro { grid-template-columns: 1fr; gap: 32px; }
  .intro-img img { height: 300px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 1.8rem; }
  .article-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .newsletter-form { flex-direction: column; }
}