/*
Theme Name: Kriszta
Theme URI: https://milickriszta.me
Author: Milic Media
Description: Custom theme for Milic Krisztina — Dianetika Auditor. Hungarian one-pager + blog.
Version: 1.0.0
Text Domain: kriszta
*/

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

:root {
  --deep: #1c1a2e;
  --mid: #2e2a45;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f3ec;
  --warm: #f0ead8;
  --text: #2a2535;
  --muted: #7a7590;
  --line: #e0d8c8;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; }

img { max-width: 100%; height: auto; display: block; }

/* — NAV — */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(28,26,46,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-logo span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,236,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--deep) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 500 !important;
  opacity: 1 !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--deep) !important; }

/* — HERO — */
.hero {
  min-height: 100vh;
  background: var(--deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,80,180,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 16px;
  color: rgba(247,243,236,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid rgba(247,243,236,0.25);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
}

.hero-circle::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.hero-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
  z-index: 1;
}

/* — SECTIONS — */
section { padding: 100px 48px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--gold); }

/* — ABOUT — */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4560;
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--text);
  font-weight: 500;
}

.about-creds {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.cred::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.about-photo {
  width: 60%;
  max-width: 260px;
  border-radius: 4px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: contrast(1.05);
}

.about-photo-fallback {
  width: 60%;
  max-width: 260px;
  aspect-ratio: 4/5;
  margin: 0 auto;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep), var(--mid));
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 300;
  border: 1px solid rgba(201,168,76,0.3);
}

.about-quote {
  background: var(--deep);
  border-radius: 4px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: -30px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.about-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-quote cite {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* — WHAT IS DIANETIKA — */
.dianetika { background: var(--warm); }

.dianetika-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.dianetika-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4560;
  margin-bottom: 20px;
}

.dianetika-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.d-card {
  background: var(--white);
  border-radius: 4px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.d-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.d-card-icon { font-size: 24px; margin-bottom: 10px; }

.d-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.d-card-text { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* — BOOK CARD — */
.book-card {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border-radius: 4px;
  padding: 36px 40px;
  margin-top: 48px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.book-cover {
  font-size: 64px;
  flex-shrink: 0;
  line-height: 1;
}

.book-info { display: flex; flex-direction: column; gap: 8px; }

.book-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.book-author {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
}

.book-desc {
  font-size: 14px;
  color: #4a4560;
  line-height: 1.7;
  margin: 4px 0 12px;
}

/* — SERVICES — */
.services { background: var(--deep); }

.services .section-title { color: var(--cream); }
.services .section-label { color: var(--gold); }

.services-intro {
  font-size: 16px;
  color: rgba(247,243,236,0.6);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.4); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-text {
  font-size: 14px;
  color: rgba(247,243,236,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 10px;
  border-radius: 2px;
}

/* — WHO IS IT FOR — */
.for-whom { background: var(--white); }

.for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.for-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--cream);
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.for-item:hover { transform: translateY(-3px); }

.for-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.for-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* — LEARN MORE — */
.learn { background: var(--warm); }

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.learn-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4560;
  margin-bottom: 20px;
}

.learn-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.learn-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.learn-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  width: 48px;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.step-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* — MARRIAGE — */
.marriage { background: var(--deep); position: relative; overflow: hidden; }

.marriage::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.marriage .section-title { color: var(--cream); }

.marriage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.marriage-text p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(247,243,236,0.65);
  margin-bottom: 20px;
}

.marriage-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.m-pillar:hover { border-color: rgba(201,168,76,0.4); }

.m-pillar-icon { font-size: 22px; flex-shrink: 0; }

.m-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 4px;
}

.m-pillar-text { font-size: 13px; color: rgba(247,243,236,0.5); line-height: 1.6; }

/* — TESTIMONIALS — */
.testimonials { background: var(--deep); }
.testimonials .section-title { color: var(--cream); }
.testimonials .section-label { color: var(--gold); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.t-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 40px 36px 32px;
  position: relative;
  transition: border-color 0.3s ease;
}

.t-card:hover { border-color: rgba(201,168,76,0.5); }

.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 20px;
}

.t-card p {
  font-size: 15px;
  color: rgba(247,243,236,0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.t-author {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* — CONTACT — */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4560;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  background: var(--deep);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.form-submit:hover { background: var(--gold); color: var(--deep); }

.form-honeypot { position: absolute; left: -9999px; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  padding: 16px;
  color: #2e7d32;
  font-size: 14px;
  text-align: center;
}

.form-error {
  display: none;
  background: #ffebee;
  border: 1px solid #ef9a9a;
  border-radius: 4px;
  padding: 16px;
  color: #c62828;
  font-size: 14px;
  text-align: center;
}

/* — FOOTER — */
.site-footer {
  background: var(--deep);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--cream);
}

.footer-logo span { color: var(--gold); font-style: italic; }

.footer-text {
  font-size: 12px;
  color: rgba(247,243,236,0.35);
}

.footer-text a { color: rgba(247,243,236,0.5); text-decoration: none; }
.footer-text a:hover { color: var(--gold); }

/* — FADE IN — */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* — BLOG — */
.blog-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px 48px 100px;
  background: var(--cream);
}

.blog-header { margin-bottom: 56px; text-align: center; }

.blog-header .section-label { display: inline-block; }

.blog-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

.blog-header h1 em { font-style: italic; color: var(--gold); }

.blog-list { display: flex; flex-direction: column; gap: 32px; }

.blog-item {
  background: var(--white);
  border-radius: 4px;
  padding: 36px 40px;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.blog-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-item h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-item h2 a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.blog-item h2 a:hover { color: var(--gold); }

.blog-excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}

.blog-readmore {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
}

.pagination a, .pagination span {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.pagination a:hover, .pagination .current { color: var(--deep); border-color: var(--gold); background: var(--warm); }

/* — SINGLE POST / PAGE — */
.post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 48px 100px;
}

.post-back {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 32px;
}

.post-back:hover { color: var(--gold-light); }

.post-header { margin-bottom: 48px; }

.post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.post-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.post-content { font-size: 17px; line-height: 1.85; color: #3a3445; }

.post-content > * + * { margin-top: 1.2em; }

.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-top: 2em;
  margin-bottom: 0.6em;
  color: var(--text);
}

.post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.post-content p { margin-bottom: 1.2em; }

.post-content ul, .post-content ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.post-content ul li, .post-content ol li { margin-bottom: 0.4em; }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.4em 0 0.4em 1.4em;
  margin: 1.6em 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--mid);
}

.post-content a { color: var(--mid); border-bottom: 1px solid var(--gold); text-decoration: none; }
.post-content a:hover { color: var(--gold); }

.post-content img { border-radius: 4px; margin: 1.6em auto; }

.post-content code {
  background: var(--warm);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.92em;
}

/* — 404 — */
.error-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 100px;
}

.error-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}

.error-wrap p { font-size: 17px; color: var(--muted); margin-bottom: 32px; }

/* — MOBILE — */
@media (max-width: 768px) {
  .site-nav { padding: 16px 20px; }
  .nav-links { display: none; }
  section { padding: 72px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner,
  .about-grid,
  .dianetika-grid,
  .services-grid,
  .for-grid,
  .learn-grid,
  .marriage-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .site-footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 20px; }
  .blog-wrap, .post-wrap { padding: 100px 20px 60px; }
  .blog-item { padding: 28px 24px; }
  .book-card { flex-direction: column; padding: 28px 24px; }
}
