/* Zeliana.shop — Unique design 2026
   Soft Clay + Deep Indigo + Coral
   Radius 8px, subtle shadows, bold type
   Completely different layout system
*/

:root {
  --bg: #F9F1E7;
  --bg-alt: #F0E6D8;
  --surface: #FFFFFF;
  --ink: #2B2D42;
  --ink-soft: #5C6378;
  --accent: #E07A5F;
  --accent-dark: #C96A52;
  --deep: #3D405B;
  --deep-soft: #4F5270;
  --gold: #F2CC8F;
  --border: #E5D9C8;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(43, 45, 66, 0.06);
  --shadow-lg: 0 10px 40px rgba(43, 45, 66, 0.1);
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { font-size: 16.5px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.72;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== HEADER — deep solid bar ===== */
.site-header {
  background: var(--deep);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 300;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.95rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.75rem;
  margin-left: 0.35rem;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: all 0.18s;
}

.nav a:hover,
.nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.nav a.cta {
  background: var(--accent);
  color: #fff !important;
  margin-left: 0.4rem;
}

.nav a.cta:hover { background: var(--accent-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  position: absolute;
  transition: 0.2s;
}
.menu-toggle span { top: 10px; }
.menu-toggle span::before { content: ""; top: -7px; }
.menu-toggle span::after { content: ""; top: 7px; }

/* ===== HERO — bold centered + bottom strip ===== */
.hero {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: 4.2rem 1.4rem 3.2rem;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.05rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 auto 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.45rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--deep);
  color: var(--deep);
}
.btn-outline:hover {
  background: var(--deep);
  color: #fff;
}

/* ===== MAIN ===== */
main {
  flex: 1;
  padding: 3.2rem 1.4rem 4rem;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  color: var(--ink);
}

/* Articles — 3-col cards unique */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.55rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card.wide {
  grid-column: span 2;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.card h3 {
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.card h3 a:hover { color: var(--accent); }

.card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 1.1rem;
}

.card-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-meta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

/* About strip */
.about-strip {
  margin-top: 3.5rem;
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.4rem 2.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.about-strip h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.about-strip p {
  opacity: 0.9;
  max-width: 48ch;
  font-size: 1.02rem;
}

/* ===== ARTICLE PAGE ===== */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 2.4rem;
  align-items: start;
}

.article-body {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.4rem 2.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.article-body h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.article-meta {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--deep-soft);
  margin-bottom: 1.7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.article-body p {
  margin-bottom: 1.2rem;
  font-size: 1.03rem;
}

.article-body h2 {
  font-size: 1.25rem;
  font-weight: 750;
  margin: 2rem 0 0.85rem;
  color: var(--deep);
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.3rem 1.3rem;
}

.article-body li { margin-bottom: 0.5rem; }

.article-body blockquote {
  margin: 1.7rem 0;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink-soft);
}

.sidebar {
  position: sticky;
  top: 5rem;
}

.side-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 1.2rem;
}

.side-card h3 {
  font-size: 0.9rem;
  font-weight: 750;
  margin-bottom: 0.75rem;
  color: var(--deep);
}

.side-card a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--border);
}
.side-card a:last-child { border: none; }
.side-card a:hover { color: var(--accent); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-info h1 {
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.contact-info p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.address-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-top: 1.3rem;
  border: 1px solid var(--border);
}

.address-box strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.3rem;
}

.form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.18s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

/* ===== LEGAL ===== */
.legal-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.4rem 2.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 780px;
  margin: 0 auto;
}

.legal-box h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.legal-box .date {
  font-size: 0.85rem;
  color: var(--deep-soft);
  font-weight: 600;
  margin-bottom: 1.7rem;
}

.legal-box h2 {
  font-size: 1.18rem;
  font-weight: 750;
  margin: 1.9rem 0 0.75rem;
  color: var(--deep);
}

.legal-box p,
.legal-box li {
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
}

.legal-box ul {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

/* ===== THANKS ===== */
.thanks-box {
  text-align: center;
  max-width: 500px;
  margin: 3.5rem auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.6rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.thanks-box h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 0.85rem;
}

/* ===== FOOTER — stacked centered unique ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 3rem 1.4rem 1.8rem;
  margin-top: auto;
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand span { color: var(--gold); }

.footer-desc {
  font-size: 0.93rem;
  opacity: 0.8;
  max-width: 40ch;
  margin: 0 auto 1.4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.3rem;
  margin-bottom: 1.6rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--gold); }

.footer-address {
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.75;
  margin-bottom: 1.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.3rem;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  align-items: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }

.disclaimer {
  font-size: 0.74rem;
  opacity: 0.6;
  width: 100%;
  margin-top: 0.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .card.wide { grid-column: span 2; }
  .article-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; text-align: center; }
  .about-strip p { margin: 0 auto; }
}

@media (max-width: 640px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep);
    flex-direction: column;
    padding: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav.open { display: flex; }
  .header-inner { position: relative; }
  .cards { grid-template-columns: 1fr; }
  .card.wide { grid-column: span 1; }
  .article-body, .legal-box { padding: 1.5rem 1.25rem; }
  .hero { padding: 2.8rem 1.2rem 2.4rem; }
}
