﻿:root {
  --primary: #1B3B36; /* Deep Forest/Industrial Green */
  --secondary: #D4AF37; /* Premium Gold/Brass */
  --accent: #E67E22; /* Italian Terra Cotta */
  --bg-color: #FAFAFA;
  --text-main: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  
  /* Unconventional Fonts for a distinctive look */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-main); line-height: 1.7; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--primary); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Giant Typography */
h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 2rem; }
p { font-size: 1.125rem; margin-bottom: 1.5rem; color: var(--text-light); }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1.2rem 2.5rem; border: none; font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.btn-primary { background-color: var(--secondary); color: var(--primary); }
.btn-primary:hover { background-color: var(--primary); color: var(--secondary); }
.btn-accent { background-color: var(--accent); color: var(--white); }

/* Header */
header { background: var(--white); padding: 1.5rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo img { width: 40px; height: 40px; }
.desktop-nav { display: none; }

/* Hero */
.hero { padding: 8rem 0 6rem; background: linear-gradient(to right, rgba(250,250,250,0.9), rgba(250,250,250,0.4)), url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; min-height: 90vh; display: flex; align-items: center; }
.hero-content { max-width: 800px; }
.tagline { display: inline-block; padding: 0.5rem 1rem; background: var(--primary); color: var(--secondary); font-weight: bold; text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: 2px; }

/* Non-Standard Section Order - Form directly after Hero */
.lead-section { padding: 6rem 0; background: var(--primary); color: var(--white); position: relative; }
.lead-section h2 { color: var(--secondary); }
.lead-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.form-container { background: var(--white); padding: 3rem; border-top: 6px solid var(--accent); color: var(--text-main); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; text-transform: uppercase; }
.form-control { width: 100%; padding: 1rem; border: 1px solid #ddd; background: #f9f9f9; font-family: var(--font-body); font-size: 1rem; transition: border 0.3s; }
.form-control:focus { outline: none; border-color: var(--secondary); }
.checkbox-wrapper { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1rem; }
.checkbox-wrapper input { margin-top: 0.3rem; width: 18px; height: 18px; }
.checkbox-wrapper label { font-size: 0.85rem; text-transform: none; color: var(--text-light); }
.success-msg { display: none; text-align: center; padding: 4rem 2rem; }
.success-msg i { font-size: 5rem; color: var(--secondary); margin-bottom: 1.5rem; }
.success-msg h3 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary); }

/* Manifesto / Random Section */
.manifesto { padding: 8rem 0; text-align: center; background: var(--bg-color); }
.manifesto-text { font-size: clamp(1.5rem, 3vw, 2.5rem); font-family: var(--font-display); color: var(--primary); line-height: 1.4; max-width: 1000px; margin: 0 auto; }
.manifesto-text span { color: var(--accent); font-style: italic; }

/* Features (Asymmetric) */
.features { padding: 6rem 0; background: var(--white); }
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.feat-image { position: relative; }
.feat-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.feat-image::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 100%; height: 100%; border: 4px solid var(--secondary); z-index: -1; }
.feat-list li { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.feat-icon { font-size: 2rem; color: var(--accent); }
.feat-text h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* About */
.about { padding: 8rem 0; background: #E8ECEF; }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }

/* FAQ Accordion */
.faq { padding: 6rem 0; background: var(--primary); color: var(--white); }
.faq h2 { color: var(--secondary); text-align: center; }
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: rgba(255,255,255,0.05); margin-bottom: 1rem; border-left: 4px solid var(--secondary); transition: all 0.3s; }
details[open] { background: rgba(255,255,255,0.1); }
summary { padding: 1.5rem; font-family: var(--font-display); font-size: 1.3rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; font-weight: bold; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--secondary); }
details[open] summary::after { content: '\f068'; }
.faq-body { padding: 0 1.5rem 1.5rem; color: rgba(255,255,255,0.8); }

/* Footer */
footer { background: #111; color: #fff; padding: 5rem 0 2rem; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 2rem; color: var(--secondary); margin-bottom: 2rem; display: block; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.footer-links a:hover { color: var(--secondary); }
.copyright { color: #666; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--primary); color: var(--white); padding: 2rem 5%; z-index: 9999; transition: bottom 0.6s ease-in-out; border-top: 5px solid var(--accent); }
.cookie-banner.active { bottom: 0; }
.cookie-flex { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; max-width: 1400px; margin: 0 auto; }
.cookie-btns { display: flex; gap: 1rem; }
.btn-cookie { padding: 0.8rem 2rem; border: none; font-weight: bold; cursor: pointer; }
.btn-accept { background: var(--secondary); color: var(--primary); }
.btn-decline { background: transparent; border: 1px solid var(--white); color: var(--white); }

/* Legal Pages */
.legal-page { background: var(--bg-color); padding: 4rem 0 8rem; }
.legal-card { background: var(--white); padding: 4rem; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.legal-card h2 { font-size: 2rem; margin-top: 3rem; border-bottom: 2px solid var(--secondary); padding-bottom: 0.5rem; }
.legal-card h3 { font-size: 1.4rem; margin-top: 2rem; }
.map-wrap { margin-top: 3rem; filter: grayscale(100%); transition: filter 0.5s; }
.map-wrap:hover { filter: grayscale(0%); }

/* Responsive */
@media(min-width: 768px) {
  .desktop-nav { display: flex; gap: 2rem; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
  .lead-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid.reverse .feat-image { order: 2; }
  .cookie-flex { flex-direction: row; justify-content: space-between; text-align: left; }
}
