/* Zealay.site – brand new design system 2026
   Warm Clay & Graphite: sand, dusty rose, deep charcoal
   Medium radius (12px), soft shadows, elegant centered layout
   Completely different from previous Kerrilan & Vievelia sites */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --bg: #F9F5F0;
  --bg-alt: #F0E9E1;
  --text: #2C2A26;
  --muted: #6B6560;
  --accent: #A67C6D;
  --accent-hover: #8C6558;
  --accent-soft: #F0E4DD;
  --card: #FFFFFF;
  --border: #E5DBD1;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --max: 680px;
  --max-wide: 1080px;
  --shadow: 0 6px 28px rgba(44, 42, 38, 0.07);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249, 245, 240, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a:hover, .nav a.active { color: var(--accent); }

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative; z-index: 120;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; background: var(--text);
  position: absolute; left: 0; transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Hero – centered elegant */
.hero {
  padding: 5.5rem 1.5rem 3.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.3rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto 1.8rem;
  font-weight: 300;
}
.hero-author {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Sections */
.section { padding: 3.2rem 1.5rem 4.5rem; }
.section-inner { max-width: var(--max-wide); margin: 0 auto; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-intro {
  text-align: center;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 2.8rem;
  font-size: 1.05rem;
}

/* Articles – elegant vertical cards */
.articles {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}
.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: start;
  box-shadow: var(--shadow);
  transition: border-color 0.25s, transform 0.25s;
}
.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.article-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
}
.article-card h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.article-card h2 a { color: var(--text); }
.article-card h2 a:hover { color: var(--accent); }
.article-card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 0.7rem;
}
.read-more {
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.read-more::after { content: '→'; transition: transform 0.2s; }
.read-more:hover::after { transform: translateX(3px); }

/* Single article */
.article-hero {
  padding: 4.2rem 1.5rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.article-hero .label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.article-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 3.1rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.article-meta {
  color: var(--muted);
  font-size: 0.93rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}
.article-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4.5rem;
}
.article-body p { margin-bottom: 1.45rem; font-size: 1.07rem; }
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}
.article-body blockquote {
  margin: 2.3rem 0;
  padding: 1.5rem 1.7rem;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
}
.article-body ul { margin: 1.3rem 0 1.3rem 1.3rem; }
.article-body li { margin-bottom: 0.5rem; }
.drop-cap::first-letter {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.12em 0 0;
  color: var(--accent);
}

/* About */
.about-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
}
.about-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5.5rem;
  height: fit-content;
}
.about-sidebar h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.about-sidebar .role {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}
.about-main p { margin-bottom: 1.4rem; font-size: 1.06rem; }

/* Contact – new structure: form first on mobile, different layout */
.contact-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.3rem;
  box-shadow: var(--shadow);
  order: 1;
}
.contact-form-box h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.contact-form-box .form-intro {
  color: var(--muted);
  margin-bottom: 1.8rem;
  font-size: 0.98rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0.9rem 1.8rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn:hover { background: var(--accent-hover); color: var(--white); }
.btn-full { width: 100%; text-align: center; }

.contact-side {
  order: 2;
}
.contact-side h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.contact-side p {
  color: var(--muted);
  margin-bottom: 1.8rem;
  font-size: 0.98rem;
}
.contact-info-item {
  margin-bottom: 1.4rem;
}
.contact-info-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-info-item .value {
  font-weight: 500;
}

/* Thanks */
.thanks-page {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.thanks-box { max-width: 460px; }
.thanks-box h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.thanks-box p { color: var(--muted); margin-bottom: 2rem; }

/* Legal */
.legal-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin-bottom: 0.4rem;
}
.legal-page .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.2rem;
}
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 2.2rem 0 0.9rem;
}
.legal-page p, .legal-page li { margin-bottom: 0.95rem; font-size: 1.02rem; }
.legal-page ul { margin: 0.9rem 0 1.2rem 1.3rem; }

/* Footer */
.site-footer {
  background: var(--text);
  color: #A8A29E;
  padding: 3.5rem 1.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-brand span { color: var(--accent); }
.footer-about { font-size: 0.93rem; line-height: 1.6; max-width: 28ch; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #78716C;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #A8A29E; font-size: 0.93rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid #44403C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: #78716C;
}
.footer-address { line-height: 1.5; }
.footer-legal a { color: #78716C; margin-left: 1.1rem; }
.footer-legal a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .about-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { order: 2; }
  .contact-side { order: 1; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; top: 0; right: 0;
    width: min(290px, 82vw); height: 100vh;
    background: var(--bg);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 1.8rem 2rem; gap: 1.3rem;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 110;
  }
  .nav.open { transform: translateX(0); }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2.3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal a { margin-left: 0; margin-right: 1rem; }
  .article-card { grid-template-columns: 1fr; gap: 0.5rem; }
}
