/* Lenonia.site – unique 2026: soft ice + deep forest + coral */
:root {
  --bg: #F2F6F5;
  --bg-alt: #E5EEEC;
  --surface: #FFFFFF;
  --text: #1A2B28;
  --text-soft: #4A5E5A;
  --primary: #1F3A34;
  --primary-hover: #152A25;
  --accent: #D48A6A;
  --accent-soft: #E8B9A0;
  --muted: #7A8F8A;
  --border: #D0DDD9;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 8px 28px rgba(31, 58, 52, 0.08);
  --max: 1060px;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.1rem); margin-bottom: 1.2rem; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2rem); margin: 2.6rem 0 1.1rem; }
h3 { font-size: 1.25rem; margin: 1.7rem 0 0.7rem; }
p { margin-bottom: 1.25rem; }
ul, ol { margin: 0 0 1.4rem 1.5rem; }
li { margin-bottom: 0.5rem; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.2rem 0; }
.section-alt { background: var(--bg-alt); }

/* HEADER – centered logo, different nav style */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242, 246, 245, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo span { color: var(--accent); }
.nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.3rem; align-items: center; }
.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 22px; position: relative; position: absolute; right: 1.5rem; top: 1.3rem;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--primary);
  position: absolute; left: 0; transition: .25s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* HERO – large centered with decorative line */
.hero {
  padding: 5rem 0 4.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-line {
  width: 60px; height: 3px; background: var(--accent);
  margin: 0 auto 1.6rem;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 40ch;
  margin: 0 auto 2.3rem;
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.7rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* CARDS – soft rounded, different */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.7rem;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
}
.card h3 { font-size: 1.2rem; margin: 0 0 0.8rem; }
.card p { color: var(--text-soft); font-size: 0.95rem; flex-grow: 1; }
.card-link { margin-top: 1.3rem; font-weight: 700; font-size: 0.88rem; color: var(--primary); }
.card-link:hover { color: var(--accent); }

/* ARTICLE */
.article-hero {
  padding: 3.6rem 0 2.3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.8rem;
  text-align: center;
}
.article-meta {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.1rem; font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
.article-body { max-width: 680px; margin: 0 auto; }
.article-body h2 { margin-top: 2.9rem; }
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--primary);
  text-align: center;
  margin: 3rem auto;
  max-width: 28ch;
  font-style: italic;
  position: relative;
  padding: 1.2rem 0;
}
.pull-quote::before, .pull-quote::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; background: var(--accent);
}
.pull-quote::before { top: 0; }
.pull-quote::after { bottom: 0; }

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.2rem;
  align-items: start;
}
.about-side {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  position: sticky;
  top: 110px;
}
.about-side h2 { color: #fff; margin-top: 0; font-size: 1.5rem; }
.about-side p { opacity: 0.9; }
.about-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.about-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
}

/* CONTACT – different: info cards on top, form below full */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.contact-card strong {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.4rem;
}
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; background: var(--bg);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 155px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--text-soft); margin-top: 0.9rem; }

/* THANKS */
.thanks-box {
  text-align: center; max-width: 480px; margin: 5rem auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3.4rem 2.4rem; box-shadow: var(--shadow);
}
.thanks-box h1 { font-size: 2.2rem; }

/* FOOTER – different: 4-col feel, different structure */
.site-footer {
  margin-top: auto;
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  padding: 3.6rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem; color: #fff; margin-bottom: 0.8rem;
}
.footer-brand span { color: var(--accent-soft); }
.footer-address { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; }
.footer-col h4 {
  color: #fff; font-size: 0.78rem; margin-bottom: 1rem;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,0.18);
  padding: 1.3rem 0;
  font-size: 0.8rem; opacity: 0.75;
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-legal a { color: rgba(255,255,255,0.75); }
.disclaimer { font-size: 0.78rem; opacity: 0.65; max-width: 520px; margin-top: 1rem; line-height: 1.5; }
.policy-content { max-width: 720px; margin: 0 auto; }
.policy-content h2 { margin-top: 2.6rem; }
.text-center { text-align: center; }

@media (max-width: 900px) {
  .about-layout, .contact-info-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; width: 100%; flex-direction: column; gap: 0.9rem; padding-top: 0.5rem; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { align-items: flex-start; position: relative; }
  .logo { margin-left: 0; }
}
@media (max-width: 560px) {
  html { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.2rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
}
