/* ========================================
   giorgiomonticelli.com — Design System v2
   ======================================== */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg:          #F7F7F4;
  --bg-dark:     #1D1D1B;
  --bg-alt:      #EFEFE9;
  --fg:          #1D1D1B;
  --fg-inv:      #F7F7F4;
  --accent:      #1E3A8A;
  --accentHover: #1B2F73;
  --accentLight: rgba(30, 58, 138, 0.06);
  --border:      #E6E6E0;
  --muted:       #6B6B66;
  --radius:      12px;
  --radius-lg:   20px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accentHover); }

/* ── Layout ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 1080px;
}

/* ── Label ── */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(247, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.header-logo img {
  height: 18px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-social {
  color: var(--fg);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.header-social:hover {
  color: var(--accent);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================
   Drawer
   ======================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 27, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 300;
  transform: translateX(110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 88px 32px 40px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-nav { list-style: none; }
.drawer-nav li { border-bottom: 1px solid var(--border); }
.drawer-nav a {
  display: block;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-nav a:hover { color: var(--accent); padding-left: 8px; }
.drawer-cta { margin-top: 36px; }

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: url('/assets/hero-bg.jpg') center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(29, 29, 27, 0.85) 0%,
    rgba(29, 29, 27, 0.6) 50%,
    rgba(29, 29, 27, 0.4) 100%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-name {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.5);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
  color: var(--fg-inv);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(247, 247, 244, 0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ========================================
   Buttons
   ======================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.btn-cta:hover {
  background: var(--accentHover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
}

.btn-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.btn-cta:hover svg {
  transform: translateX(3px);
}

/* ── Link button (text style) ── */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 24px;
  transition: gap 0.2s;
}

.btn-link:hover { gap: 10px; color: var(--accentHover); }

.btn-link svg {
  width: 16px;
  height: 16px;
}

.btn-link--inv { color: rgba(247, 247, 244, 0.7); }
.btn-link--inv:hover { color: var(--fg-inv); }

/* ========================================
   Sections — base
   ======================================== */
.section {
  padding: 64px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-body p {
  margin-bottom: 16px;
  color: var(--fg);
  font-size: 15.5px;
}

.section-body p:last-child { margin-bottom: 0; }

/* ── Section divider ── */
.section--bordered {
  border-top: 1px solid var(--border);
}

/* ── Dark section variant ── */
.section--dark {
  background: var(--bg-dark);
  color: var(--fg-inv);
}

.section--dark .section-title { color: var(--fg-inv); }
.section--dark .section-body p { color: rgba(247, 247, 244, 0.75); }
.section--dark .label { color: rgba(247, 247, 244, 0.5); }

/* ── Alt background section ── */
.section--alt {
  background: var(--bg-alt);
}

/* ========================================
   1. Meaning — statement, impattante
   ======================================== */
.meaning-section {
  border-top: 1px solid var(--border);
}

.meaning-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 32px;
}

.meaning-text p {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}

.meaning-text p:first-child {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--fg);
  font-weight: 500;
}

.meaning-text p:last-child { margin-bottom: 0; }

/* ========================================
   Journey section — portrait + text
   ======================================== */
.journey-header {
  margin-left: 328px;
  margin-bottom: 32px;
}

.journey-layout {
  display: flex;
  gap: 48px;
  align-items: center;
}

.journey-portrait {
  flex-shrink: 0;
  width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.journey-content {
  flex: 1;
  min-width: 0;
}

/* ========================================
   Problems section — numbered grid
   ======================================== */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
}

.problem-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}

.problem-card:hover {
  box-shadow: 0 8px 32px rgba(29, 29, 27, 0.08);
  transform: translateY(-2px);
}

.problem-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accentLight);
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.problem-card-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.problem-card-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ========================================
   4. Approach — dark con step timeline
   ======================================== */
.approach-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.approach-header {
  flex-shrink: 0;
  width: 280px;
  position: sticky;
  top: 100px;
}

.approach-steps {
  flex: 1;
}

.approach-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.approach-step:last-child { margin-bottom: 0; }

.approach-step-line {
  flex-shrink: 0;
  width: 3px;
  min-height: 100%;
  background: rgba(247, 247, 244, 0.12);
  border-radius: 3px;
  position: relative;
}

.approach-step:last-child .approach-step-line {
  background: var(--accent);
}

.approach-step-content p {
  color: rgba(247, 247, 244, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.approach-step:last-child .approach-step-content p {
  color: var(--fg-inv);
  font-weight: 500;
}

/* ========================================
   5. Moment — card con highlight laterale
   ======================================== */
.moment-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.moment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), rgba(30, 58, 138, 0.15));
}

.moment-content {
  flex: 1;
}

.moment-aside {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.moment-highlight {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--accent);
  padding: 20px 24px;
  background: var(--accentLight);
  border-radius: var(--radius);
}

/* ========================================
   Manifesto — sfondo scuro, stile citazione
   ======================================== */
.manifesto-section {
  background: var(--bg-dark);
  color: var(--fg-inv);
}

.manifesto-section .label { color: rgba(247, 247, 244, 0.4); text-align: right; display: block; }
.manifesto-section .section-title { color: var(--fg-inv); text-align: right; }

.manifesto-body {
  max-width: 680px;
  margin-left: auto;
  position: relative;
  padding-right: 28px;
  border-right: 3px solid rgba(247, 247, 244, 0.15);
  text-align: right;
}

.manifesto-body p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: rgba(247, 247, 244, 0.6);
}

.manifesto-body p:last-child {
  color: var(--fg-inv);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin-top: 24px;
}

/* ========================================
   Projects
   ======================================== */
.projects-group { margin-bottom: 40px; }
.projects-group:last-child { margin-bottom: 0; }

.projects-group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.project-card {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
  box-shadow: 0 4px 16px rgba(29, 29, 27, 0.06);
  transform: translateY(-1px);
}

.project-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.project-card-summary { color: var(--muted); font-size: 14px; }
.project-card-link { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 600; }

/* ========================================
   CTA section (before footer)
   ======================================== */
.cta-section {
  text-align: center;
  padding: 64px 0;
  background: var(--accentLight);
}

.cta-section .section-title {
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 15px;
}

/* ========================================
   Contact Form
   ======================================== */
.form-page {
  padding: 140px 0 100px;
}

.form-page h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.form-page .subtitle {
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 15px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fg);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.08);
}

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

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-group-checkbox input[type="checkbox"] { width: auto; margin-top: 4px; }
.form-group-checkbox label { font-size: 13px; font-weight: 400; color: var(--muted); }

.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-feedback.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #f8bbd0;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 13px; color: var(--muted); }

.footer-links { list-style: none; display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ========================================
   About (Chi sono) page
   ======================================== */
.about-page { padding: 0; }

/* ── Hero band ── */
.about-hero {
  padding: 150px 0 64px;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-hero .about-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
}

/* ── Opening: photo float + text ── */
.about-opening {
  padding: 64px 0;
}

.about-opening::after {
  content: "";
  display: table;
  clear: both;
}

.about-opening-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-portrait {
  float: left;
  width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  margin: 0 32px 20px 0;
  shape-outside: margin-box;
}


/* ── Sections ── */
.about-page .section-body p {
  margin-bottom: 24px;
}
.about-page .section-body p:last-child { margin-bottom: 0; }

.about-section .section-title {
  margin-bottom: 24px;
}

.about-section--dark {
  background: var(--bg-dark);
  color: var(--fg-inv);
}
.about-section--dark .section-title { color: var(--fg-inv); }
.about-section--dark .section-body p { color: rgba(247, 247, 244, 0.75); }

/* ── Highlight blocks ── */
.about-highlight {
  clear: both;
  border-left: 4px solid var(--accent);
  background: rgba(30, 58, 138, 0.05);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg);
  font-weight: 500;
}

.about-section--dark .about-highlight {
  background: rgba(147, 180, 255, 0.08);
  border-left-color: #93B4FF;
  color: #93B4FF;
}

/* ── Accent word ── */
.accent-word {
  color: var(--accent);
}

.about-section--dark .accent-word {
  color: #93B4FF;
}

/* ── Year badges ── */
.about-year-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about-opening {
    padding: 48px 0;
  }
  .about-portrait {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 0 24px 0;
  }
  .about-hero {
    padding: 120px 0 48px;
  }
}

/* ========================================
   Blog
   ======================================== */
.blog-page {
  padding: 140px 0 100px;
}

.blog-page-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  line-height: 1.15;
}

/* ── Blog list ── */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-card {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.blog-card:first-child {
  border-top: 1px solid var(--border);
}

.blog-card-date {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.blog-card-title a {
  color: var(--fg);
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--accent);
}

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

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.blog-card-link:hover { gap: 10px; color: var(--accentHover); }

.blog-card-link svg {
  width: 16px;
  height: 16px;
}

/* ── Blog post ── */
.blog-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.blog-back:hover { color: var(--accent); }

.blog-post-date {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-post-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 40px;
}

.blog-post-body {
  margin-bottom: 48px;
}

.blog-post-body h3 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}

.blog-post-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--accent);
}

.blog-post-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--accentLight);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.blog-post-body blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 0;
}

.blog-post-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.blog-post-body ul li {
  font-size: 15.5px;
  margin-bottom: 8px;
  color: var(--fg);
}

.blog-post-footer {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ========================================
   Privacy & Error pages
   ======================================== */
.privacy-page { padding: 140px 0 100px; }
.privacy-page h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.privacy-page h2 { font-size: 1.15rem; font-weight: 700; margin: 36px 0 12px; }
.privacy-page p { margin-bottom: 12px; font-size: 15px; }

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}
.error-page h1 { font-size: 6rem; font-weight: 900; margin-bottom: 12px; color: var(--accent); letter-spacing: -0.04em; }
.error-page p { color: var(--muted); margin-bottom: 32px; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .hero { padding: 120px 0 80px; background-position: 75% center; }
  .section { padding: 48px 0; }
  .drawer { width: 100%; }

  .journey-header {
    margin-left: 0;
    margin-bottom: 24px;
  }
  .journey-layout {
    flex-direction: column;
    gap: 28px;
  }
  .journey-portrait {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .approach-layout {
    flex-direction: column;
    gap: 32px;
  }
  .approach-header {
    width: 100%;
    position: static;
  }

  .moment-card {
    flex-direction: column;
    padding: 32px;
    gap: 32px;
  }
  .moment-aside { width: 100%; }

  .manifesto-body {
    padding-right: 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links { justify-content: center; }

  .cta-section { padding: 48px 0; }
}
