/* ============================================================
   EDITORA ESPERANÇA SOLIDÁRIA — Styles
   Editorial premium, clean, institutional
   ============================================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Brand colors derived from logo */
  --gold: #b8923e;
  --gold-light: #d4b06a;
  --gold-pale: #f0e4cc;
  --gold-wash: #faf5eb;
  --beige: #f7f2ea;
  --cream: #fdfbf7;
  --white-warm: #fefdfb;
  --blue-soft: #8bb8d0;
  --blue-pale: #dceef6;
  --green-soft: #6a9e5c;
  --green-pale: #e3f0df;

  /* Neutrals */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4540;
  --text-muted: #7a746b;
  --text-light: #a09889;
  --border: #e5dfd6;
  --border-light: #f0ebe3;
  --bg-page: var(--cream);
  --bg-section-alt: var(--beige);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --header-h: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 250ms;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2.5rem; }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.8125rem 1.75rem;
  border-radius: 4px;
  transition: background-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background-color: #a37e32;
  border-color: #a37e32;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: #a37e32;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5625rem 1.25rem;
}

.btn-header {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 0.5625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-header:hover {
  background-color: #a37e32;
  border-color: #a37e32;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  z-index: 50;
  transition: box-shadow var(--duration) var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .header-inner { padding: 0 2rem; }
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

/* Desktop nav */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--duration) var(--ease);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header CTA */
.header .btn-header {
  display: none;
}

@media (min-width: 1024px) {
  .header .btn-header { display: inline-flex; }
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background-color: var(--cream);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--ease),
              visibility var(--duration) var(--ease);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-2xl) var(--space-lg);
  gap: var(--space-lg);
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--duration) var(--ease);
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-nav-cta {
  margin-top: var(--space-md);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  background-color: var(--cream);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--header-h) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
  }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner { padding: 0 2rem; }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    padding: 0 2.5rem;
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Hero books composition */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-books {
  position: relative;
  width: 320px;
  height: 400px;
}

@media (min-width: 768px) {
  .hero-books {
    width: 380px;
    height: 460px;
  }
}

.hero-book {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease);
}

.hero-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-book-back {
  width: 180px;
  height: 260px;
  top: 60px;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}

.hero-book-mid {
  width: 180px;
  height: 260px;
  top: 20px;
  right: 10px;
  transform: rotate(4deg);
  z-index: 2;
}

.hero-book-front {
  width: 200px;
  height: 290px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

@media (min-width: 768px) {
  .hero-book-back {
    width: 200px;
    height: 290px;
  }
  .hero-book-mid {
    width: 200px;
    height: 290px;
  }
  .hero-book-front {
    width: 220px;
    height: 320px;
  }
}

/* Book cover placeholders — elegant editorial feel */
.book-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    hsl(var(--cover-hue), 28%, 88%) 0%,
    hsl(var(--cover-hue), 22%, 78%) 50%,
    hsl(var(--cover-hue), 18%, 68%) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
}

.book-cover-placeholder::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.book-cover-placeholder::after {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 1.25rem;
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.book-cover-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Hero decorative ornament */
.hero-ornament {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section {
  padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-4xl) 0; }
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-footer {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================================
   EBOOKS EM DESTAQUE
   ============================================================ */
.section-ebooks {
  background-color: var(--bg-section-alt);
}

.ebooks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 600px) {
  .ebooks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ebooks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ebook-card {
  background: var(--white-warm);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  cursor: pointer;
}

.ebook-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.ebook-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ebook-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ebook-cover .book-cover-placeholder {
  border-radius: 0;
}

.ebook-info {
  padding: var(--space-lg);
}

.ebook-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.ebook-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

.ebook-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.ebook-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ============================================================
   PROPÓSITO
   ============================================================ */
.section-proposito {
  background-color: var(--cream);
}

.proposito-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .proposito-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
  }
}

.proposito-text .section-eyebrow {
  text-align: left;
}

.proposito-text .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.proposito-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.proposito-body:last-of-type {
  margin-bottom: var(--space-xl);
}

.proposito-accent-box {
  background-color: var(--bg-section-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: var(--space-xl) var(--space-xl);
}

.proposito-quote p {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.section-manifesto {
  background-color: var(--bg-section-alt);
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-inner .section-eyebrow {
  margin-bottom: var(--space-sm);
}

.manifesto-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-2xl);
}

.manifesto-text {
  text-align: left;
}

.manifesto-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

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

.manifesto-closing {
  text-align: center;
  color: var(--text-primary) !important;
  font-family: var(--font-heading);
  font-size: 1.125rem !important;
  margin-top: var(--space-xl) !important;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.section-newsletter {
  background-color: var(--cream);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.newsletter-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background-color: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color var(--duration) var(--ease);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.btn-newsletter {
  width: 100%;
  margin-top: var(--space-xs);
}

@media (min-width: 600px) {
  .btn-newsletter { width: auto; }
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
  text-align: center;
}

/* Field error messages (shared across site) */
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  min-height: 1rem;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.field-error.visible {
  opacity: 1;
}

.form-input.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

/* ============================================================
   CONTEÚDOS
   ============================================================ */
.section-conteudos {
  background-color: var(--bg-section-alt);
}

.conteudos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .conteudos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.conteudo-card {
  background: var(--white-warm);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  cursor: pointer;
}

.conteudo-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.conteudo-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.conteudo-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    hsl(var(--img-hue), 18%, 88%) 0%,
    hsl(var(--img-hue), 14%, 82%) 100%
  );
}

.conteudo-body {
  padding: var(--space-lg);
}

.conteudo-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.conteudo-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: var(--space-sm);
}

.conteudo-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.conteudo-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--duration) var(--ease);
  cursor: pointer;
}

.conteudo-link:hover {
  color: #a37e32;
}

/* ============================================================
   SOBRE / QUEM SOMOS
   ============================================================ */
.section-sobre {
  background-color: var(--cream);
}

.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .sobre-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--gold-wash);
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.pillar-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.section-cta-final {
  background-color: var(--bg-section-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-final-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  margin-bottom: var(--space-md);
}

.cta-final-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
  }
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--duration) var(--ease);
}

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

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  cursor: pointer;
}

.social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   SCROLL ANIMATIONS (subtle)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .header,
  .menu-toggle,
  .mobile-nav-overlay,
  .hero-visual,
  .section-newsletter,
  .section-cta-final,
  .footer-social {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}