/* ============================================
   amazonspecialistalmelo.nl
   Editorial-luxury aesthetic
   ============================================ */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE2;
  --surface: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #3D3D3D;
  --muted: #6B6862;
  --line: #E8E2D5;
  --ember: #D9531E;
  --ember-soft: #F4E4D8;
  --teal: #0F4C5C;
  --gold: #B89968;
  --success: #2D6A4F;
  --shadow-sm: 0 1px 2px rgba(26,26,26,0.04);
  --shadow-md: 0 8px 24px rgba(26,26,26,0.06);
  --shadow-lg: 0 24px 48px rgba(26,26,26,0.08);
  --radius: 4px;
  --radius-lg: 12px;
  --container: 1200px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ember); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal); }
button { font-family: inherit; cursor: pointer; }

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.25rem; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-block;
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
@media (max-width: 768px) {
  .section, .section-lg { padding: 3.5rem 0; }
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--ember);
  border-radius: 50%;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav-menu a:hover { color: var(--ember); }
.nav-menu a.active { color: var(--ember); }
.nav-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--ember); color: white; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
}
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: var(--line);
  margin-left: 0.5rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ember); }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--ember); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ember); padding: 0.5rem 0; }
.btn-ghost:hover { gap: 0.75rem; }
.btn-ghost::after { content: '→'; transition: transform .2s ease; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3rem 0; }
}
.hero h1 .accent {
  font-style: italic;
  color: var(--ember);
  font-weight: 300;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.18em;
  background: var(--ember-soft);
  z-index: -1;
}
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-meta-item strong { color: var(--ink); font-weight: 600; }
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Hero visual / quote card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}
.hero-card::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--ember);
  line-height: 1;
}
.hero-card-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  font-weight: 400;
}
.hero-card-attribution {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-card-attribution::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--muted);
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  background: var(--bg-alt);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.trust-item {
  text-align: center;
}
.trust-item-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.trust-item-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* Section header */
.section-header {
  max-width: 700px;
  margin-bottom: 3.5rem;
}
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--ember);
  transition: height .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { height: 100%; }
.service-card-number {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-card p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-card .btn-ghost {
  margin-top: auto;
}

/* USPs */
.usp-section {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.usp-section h2, .usp-section h3 { color: var(--bg); }
.usp-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(217,83,30,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .usp-grid { grid-template-columns: 1fr; } }
.usp-item {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.2);
}
.usp-item-icon {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ember);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}
.usp-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.usp-item p {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 0;
}

/* Editorial split: text + photo/quote */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .editorial-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.editorial-split-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ember-soft) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial-split-image-placeholder {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.editorial-split-image-decor {
  position: absolute;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(217, 83, 30, 0.12);
  font-weight: 300;
  line-height: 1;
  bottom: -2rem;
  right: -1rem;
  pointer-events: none;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--line);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ember);
  font-size: 2rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--ember);
  border-width: 2px;
  background: var(--bg-alt);
}
.pricing-card.featured::before {
  content: 'Populair';
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--ember);
  color: white;
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}
.pricing-card h3 {
  margin-bottom: 0.5rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ember);
  margin: 1.5rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.pricing-amount span {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}
.pricing-card p.description {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.pricing-features li::before {
  content: '+';
  color: var(--ember);
  font-weight: 600;
  flex-shrink: 0;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--ember);
  font-weight: 300;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--ink-soft);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}
.faq-answer p { margin-bottom: 0; }

/* Article / blog typography */
.article-header {
  padding: 3.5rem 0 2rem;
  text-align: center;
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.article-meta-dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.article-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
}
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.article-body h2 {
  font-size: 1.875rem;
  margin: 2.5rem 0 1rem;
}
.article-body h3 {
  font-size: 1.375rem;
  margin: 2rem 0 1rem;
}
.article-body p { margin-bottom: 1.5rem; color: var(--ink-soft); }
.article-body ul, .article-body ol { margin: 0 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; color: var(--ink-soft); }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  margin: 2rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid var(--ember);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--ink);
}
.article-body code {
  background: var(--bg-alt);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.9em;
}
.article-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--ember-soft), var(--bg-alt));
  position: relative;
  overflow: hidden;
}
.blog-card-cover::after {
  content: attr(data-letter);
  position: absolute;
  bottom: -2rem;
  right: 0.5rem;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(217, 83, 30, 0.15);
  line-height: 1;
  font-weight: 300;
}
.blog-card-content { padding: 1.75rem; }
.blog-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--ember); }
.blog-card-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info { padding-top: 1rem; }
.contact-info-item {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--ink);
}
.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--ember); }

.form { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 0.375rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--ember);
}
.form textarea { min-height: 120px; resize: vertical; }

/* Page header (smaller hero) */
.page-header {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 1rem; }

/* CTA section */
.cta-section {
  background: var(--ember);
  color: white;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: white; max-width: 700px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 2rem; }
.cta-section .btn-primary { background: white; color: var(--ember); }
.cta-section .btn-primary:hover { background: var(--ink); color: white; }
.cta-decor {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22rem;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  bottom: -6rem;
  right: -2rem;
  pointer-events: none;
  user-select: none;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.7);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand {
  color: var(--bg);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.footer-col h4 {
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--ember); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { margin: 0; }

/* Utility */
.bg-alt { background: var(--bg-alt); }
.bg-surface { background: var(--surface); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 2rem; }
.italic { font-style: italic; }

/* Smooth reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}
