/* Colmarena.shop — Unique design 2026
   Warm Stone + Deep Emerald + Soft Coral
   Radius 6px sharp modern, minimal shadows
   Completely different structure
*/

:root {
  --bg: #F7F3EE;
  --bg-alt: #EFE9E1;
  --surface: #FFFFFF;
  --ink: #1A2E2A;
  --ink-soft: #4A5F59;
  --accent: #059669;
  --accent-hover: #047857;
  --deep: #064E3B;
  --coral: #F87171;
  --border: #DDD5C9;
  --highlight: #ECFDF5;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(6, 78, 59, 0.06);
  --max: 1060px;
  --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.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

.logo span {
  color: var(--coral);
  font-weight: 500;
  font-size: 0.75rem;
  margin-left: 0.35rem;
}

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

.nav a {
  color: rgba(255,255,255,0.85);
  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;
}

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

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

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

/* HERO — full width bold */
.hero {
  background: var(--bg-alt);
  padding: 4rem 1.4rem 3.4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  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: 40ch;
  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-hover);
  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.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

/* Articles — single column list style unique */
.posts {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.post {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  transition: border-color 0.18s;
}

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

.post-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  min-width: 2.2rem;
}

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

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

.post-body p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.post-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep);
  white-space: nowrap;
}

.post-meta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  display: block;
  margin-top: 0.4rem;
}

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

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

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

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

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

.article-main 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);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

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

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

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

.side-box 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-box a:last-child { border: none; }
.side-box a:hover { color: var(--accent); }

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

.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;
}

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

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

.form-box {
  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.78rem 1rem;
  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: 130px;
  resize: vertical;
}

/* LEGAL */
.legal {
  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 h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

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

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

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

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

/* THANKS */
.thanks {
  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 h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 0.85rem;
}

/* FOOTER — centered unique */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  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(--coral); }

.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(--coral); }

.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(--coral); }

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .post {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .post-num { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-band { grid-template-columns: 1fr; text-align: center; }
  .about-band p { margin: 0 auto; }
}

@media (max-width: 640px) {
  .menu-btn { 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; }
  .article-main, .legal { padding: 1.5rem 1.25rem; }
  .hero { padding: 2.8rem 1.2rem 2.4rem; }
}
