/* Creolade.shop — Unique 2026 design system
   Palette: Soft sage-mint + deep indigo + coral
   Radius: 20px soft
   Soft layered shadows
   Pill buttons, generous spacing
   Completely different from previous projects
*/

:root {
  --bg: #F4F9F5;
  --bg-soft: #E8F3EC;
  --surface: #FFFFFF;
  --ink: #1B2A4A;
  --ink-muted: #4A5D7A;
  --accent: #FF6B4A;
  --accent-hover: #E85A3A;
  --deep: #0F3D3E;
  --deep-soft: #1A5A5C;
  --border: #D4E5DB;
  --highlight: #FFF5F2;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 30px rgba(27, 42, 74, 0.07);
  --shadow-hover: 0 12px 40px rgba(27, 42, 74, 0.12);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, 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.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== HEADER — centered minimal ========== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(8px);
}

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

.logo {
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  transition: all 0.2s;
}

.nav a:hover,
.nav a.active {
  background: var(--bg-soft);
  color: var(--deep);
}

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

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

/* Mobile toggle */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  position: absolute;
  transition: 0.25s;
}

.menu-btn span { top: 11px; }
.menu-btn span::before { content: ""; top: -8px; }
.menu-btn span::after { content: ""; top: 8px; }

/* ========== HERO — full + side card ========== */
.hero {
  padding: 4rem 1.5rem 3.5rem;
  background: linear-gradient(165deg, var(--bg-soft) 0%, var(--bg) 55%);
}

.hero-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--accent);
  display: inline;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  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.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--deep);
  background: var(--surface);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.85rem 1.7rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 4px;
  background: var(--accent);
  border-radius: 4px;
}

.hero-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.7rem;
}

.hero-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
}

/* ========== MAIN ========== */
main {
  flex: 1;
  padding: 3.25rem 1.5rem 4rem;
}

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

.section-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 120px;
}

/* Articles — staggered 2-col unique */
.posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.post {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--highlight) 0%, var(--surface) 100%);
  padding: 2rem 2rem;
}

.post-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.post h3 {
  font-size: 1.28rem;
  font-weight: 750;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

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

.post h3 a:hover {
  color: var(--accent);
}

.post p {
  font-size: 0.96rem;
  color: var(--ink-muted);
  flex: 1;
  margin-bottom: 1.15rem;
}

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

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

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

.about-band h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

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

.about-band .btn {
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
}

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

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

.article-main h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

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

.article-main p {
  margin-bottom: 1.25rem;
  font-size: 1.04rem;
}

.article-main h2 {
  font-size: 1.28rem;
  font-weight: 750;
  margin: 2.1rem 0 0.9rem;
  color: var(--deep);
}

.article-main ul,
.article-main ol {
  margin: 1.1rem 0 1.4rem 1.35rem;
}

.article-main li {
  margin-bottom: 0.55rem;
}

.article-main blockquote {
  margin: 1.8rem 0;
  padding: 1rem 1.3rem;
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-muted);
}

.side {
  position: sticky;
  top: 5.5rem;
}

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

.side-box h3 {
  font-size: 0.92rem;
  font-weight: 750;
  margin-bottom: 0.8rem;
  color: var(--deep);
}

.side-box a {
  display: block;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.side-box a:last-child { border: none; }
.side-box a:hover { color: var(--accent); }

/* ========== CONTACT ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.75rem;
}

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

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

.info-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  margin-top: 1.4rem;
  border: 1px solid var(--border);
}

.info-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.35rem;
}

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

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

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

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

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

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

.legal h1 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

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

.legal h2 {
  font-size: 1.2rem;
  font-weight: 750;
  margin: 2rem 0 0.8rem;
  color: var(--deep);
}

.legal p,
.legal li {
  margin-bottom: 0.85rem;
  color: var(--ink-muted);
}

.legal ul {
  margin-left: 1.25rem;
  margin-bottom: 1.1rem;
}

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

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

/* ========== FOOTER — different structure ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 3.25rem 1.5rem 2rem;
  margin-top: auto;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto 2.25rem;
  text-align: center;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover { color: var(--accent); }

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

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--accent); }

.disclaimer {
  font-size: 0.76rem;
  opacity: 0.65;
  margin-top: 0.4rem;
  max-width: 55ch;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }
  .posts {
    grid-template-columns: 1fr;
  }
  .post.featured {
    grid-template-columns: 1fr;
  }
  .article-page {
    grid-template-columns: 1fr;
  }
  .side { position: static; }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-band p { margin: 0 auto; }
}

@media (max-width: 680px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-inner { position: relative; }
  .article-main,
  .legal {
    padding: 1.6rem 1.3rem;
  }
  .hero { padding: 2.75rem 1.25rem 2.5rem; }
}
