/* ============================================================
   Renata Genêrinno — Terapia Holística
   Vanilla CSS (converted from Tailwind)
   ============================================================ */

/* -------- Design Tokens -------- */
:root {
  --deep-burgundy: #5B1A2A;
  --burgundy: #722F37;
  --warm-sand: #C9A96E;
  --sand-light: #D9BC94;
  --cream: #F5F1EB;
  --off-white: #FDFCF9;
  --sage-green: #6B7B6E;
  --sage-muted: #8A9A8D;
  --text-dark: #2C1810;
  --text-medium: #5C4A42;
  --text-light: #F5F1EB;
  --border-light: rgba(91, 26, 42, 0.12);

  --shadow-card: 0 4px 20px rgba(91, 26, 42, 0.08);
  --shadow-card-lg: 0 12px 40px rgba(91, 26, 42, 0.12);
  --shadow-btn: 0 6px 20px rgba(201, 169, 110, 0.4);
  --shadow-btn-lg: 0 8px 28px rgba(201, 169, 110, 0.5);

  --container-max: 1200px;
  --container-narrow: 1000px;
  --container-hero: 900px;
  --container-px: clamp(1.5rem, 5vw, 4rem);
  --section-py: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

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

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

/* -------- Scrollbar -------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-burgundy); }

/* -------- Container helper -------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ============================================================
   Scroll Reveal (replaces Framer Motion whileInView)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hero entrance: stagger via delays */
.hero-fade {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.8s ease forwards;
}
.hero-fade-1 { animation-delay: 0.0s; }
.hero-fade-2 { animation-delay: 0.2s; }
.hero-fade-3 { animation-delay: 0.4s; }
.hero-fade-4 { animation-delay: 0.6s; }
.hero-fade-5 { animation-delay: 0.8s; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-down bounce indicator */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(8px); opacity: 1; }
}
.bounce-slow {
  animation: bounce-slow 2.4s ease-in-out infinite;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background-color: rgba(114, 47, 55, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(91, 26, 42, 0.15);
}
.navbar-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
}
.navbar-brand-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.2;
}
.navbar-brand-sub {
  font-weight: 300;
  font-size: 0.7rem;
  color: var(--sage-muted);
  line-height: 1.2;
}
.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar-link {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.2s ease;
}
.navbar-link:hover {
  color: var(--warm-sand);
}
.btn-cta {
  font-weight: 500;
  font-size: 0.85rem;
  background-color: var(--warm-sand);
  color: var(--burgundy);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.btn-cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-btn);
}
.navbar-burger {
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-burger { display: none; }
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background-color: var(--deep-burgundy);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-close {
  align-self: flex-end;
  color: var(--text-light);
  padding: 0.5rem;
  margin-bottom: 2rem;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.drawer-link {
  font-size: 1.125rem;
  color: var(--text-light);
  transition: color 0.2s ease;
}
.drawer-link:hover {
  color: var(--warm-sand);
}
.drawer-cta {
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--warm-sand);
  color: var(--burgundy);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .drawer-overlay, .drawer { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #5B1A2A 0%, #722F37 35%, #FDFCF9 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(91, 26, 42, 0.6);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-hero);
  margin: 0 auto;
  padding: 140px var(--container-px) 5rem;
  text-align: center;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--sage-muted);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text-light);
}
.hero-subtitle {
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--warm-sand);
  margin-top: 0.5rem;
}
.hero-description {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.8);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}
.btn-primary {
  font-weight: 500;
  background-color: var(--warm-sand);
  color: var(--burgundy);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-btn-lg);
}
.btn-secondary {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(245, 241, 235, 0.4);
  color: var(--text-light);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover {
  background-color: rgba(245, 241, 235, 0.1);
  border-color: rgba(245, 241, 235, 0.6);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(245, 241, 235, 0.6);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section {
  width: 100%;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-muted);
}
.section-title {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-dark);
}
.section-description {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-medium);
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  background-color: var(--sand-light);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr 1fr; }
}
.sobre-image {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card-lg);
  border: 1px solid var(--border-light);
}
@media (min-width: 1024px) {
  .sobre-image { margin-left: 0; }
}
.sobre-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-muted);
}
.sobre-title {
  margin-top: 0.75rem;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-dark);
}
.sobre-lede {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--burgundy);
}
.sobre-paragraph {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-medium);
}
.sobre-quote {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--warm-sand);
}
.sobre-quote p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--burgundy);
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  background-color: var(--cream);
}
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .servicos-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .servicos-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.service-card {
  background-color: var(--off-white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lg);
}
.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(114, 47, 55, 0.1);
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.service-title {
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-medium);
}

/* ============================================================
   PACOTES
   ============================================================ */
.pacotes {
  background: linear-gradient(180deg, #F5F1EB 0%, #FDFCF9 100%);
}
.pacotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pacotes-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pacotes-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .pacotes-grid .pacote-featured {
    grid-row: span 2;
  }
}
.pacote-card {
  background-color: var(--off-white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pacote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(91, 26, 42, 0.15);
}
.pacote-card-name {
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.pacote-card-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-medium);
}
.pacote-card-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-light);
  margin: 1rem 0;
}
.pacote-card-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--burgundy);
}
.pacote-card-sessions {
  font-size: 0.75rem;
  color: var(--sage-muted);
  margin-top: 0.25rem;
}
.pacote-card-cta {
  margin-top: 1rem;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  background-color: var(--burgundy);
  color: var(--text-light);
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pacote-card-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(114, 47, 55, 0.25);
}
.pacote-card-foot {
  margin-top: 1.25rem;
}

/* Featured pacote */
.pacote-featured {
  position: relative;
  background-color: var(--burgundy);
  border: 2px solid var(--warm-sand);
  box-shadow: var(--shadow-card-lg);
  padding: 2rem;
}
@media (min-width: 1024px) {
  .pacote-featured {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.pacote-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(91, 26, 42, 0.2);
}
.pacote-featured .pacote-card-name {
  color: var(--text-light);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
}
.pacote-featured .pacote-card-description {
  color: rgba(245, 241, 235, 0.8);
  font-size: 0.95rem;
}
.pacote-featured .pacote-card-divider {
  background-color: rgba(245, 241, 235, 0.2);
  margin: 1.25rem 0;
}
.pacote-featured .pacote-card-price {
  font-size: 1.5rem;
  color: var(--warm-sand);
}
.pacote-featured .pacote-card-sessions {
  color: rgba(245, 241, 235, 0.6);
}
.pacote-featured .pacote-card-cta {
  background-color: var(--warm-sand);
  color: var(--burgundy);
  margin-top: 1.5rem;
}
.pacote-featured .pacote-card-cta:hover {
  box-shadow: var(--shadow-btn);
}
.pacote-featured .pacote-card-foot {
  margin-top: 1.5rem;
}
.pacote-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--warm-sand);
  color: var(--burgundy);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pacotes-note {
  margin-top: 2.5rem;
  text-align: center;
}
.pacotes-note p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--sage-muted);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  background-color: var(--sand-light);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .depoimentos-grid { grid-template-columns: 1fr 1fr; }
}
.depoimento-card {
  position: relative;
  background-color: var(--off-white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.depoimento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91, 26, 42, 0.1);
}
.depoimento-quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(201, 169, 110, 0.4);
}
.depoimento-stars {
  display: flex;
  gap: 0.25rem;
  margin: 1.5rem 0 1rem;
  color: var(--warm-sand);
}
.depoimento-stars svg {
  fill: var(--warm-sand);
}
.depoimento-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.depoimento-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-light);
  margin: 1rem 0;
}
.depoimento-name {
  font-weight: 500;
  color: var(--text-dark);
}
.depoimento-date {
  font-size: 0.75rem;
  color: var(--sage-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-section {
  background-color: var(--cream);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-card-lg);
  background-color: rgba(91, 26, 42, 0.1);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(91, 26, 42, 0.2);
  cursor: pointer;
}
.video-play-btn {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--burgundy);
  color: var(--text-light);
  transition: transform 0.2s ease;
}
.video-play-btn:hover {
  transform: scale(1.05);
}
.video-caption {
  font-size: 0.75rem;
  color: var(--sage-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   FORMAÇÃO (Timeline)
   ============================================================ */
.formacao {
  background-color: var(--sand-light);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(114, 47, 55, 0.2);
}
.timeline-line.desktop {
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.timeline-line.mobile {
  left: 1rem;
}
@media (min-width: 768px) {
  .timeline-line.desktop { display: block; }
  .timeline-line.mobile { display: none; }
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
}
.timeline-dot {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: var(--burgundy);
  border: 2px solid var(--warm-sand);
  z-index: 1;
  left: 1rem;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
  }
}
.timeline-card-wrapper {
  margin-left: 2.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .timeline-item.left .timeline-card-wrapper {
    margin-left: 0;
    margin-right: auto;
    width: 45%;
    padding-right: 2rem;
  }
  .timeline-item.right {
    flex-direction: row-reverse;
  }
  .timeline-item.right .timeline-card-wrapper {
    margin-left: auto;
    width: 45%;
    padding-left: 2rem;
  }
}
.timeline-card {
  background-color: var(--off-white);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.timeline-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--warm-sand);
}
.timeline-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 0.25rem;
}
.timeline-institution {
  font-size: 0.75rem;
  color: var(--sage-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  width: 100%;
  background-color: var(--burgundy);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-brand-title {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text-light);
}
.footer-brand-sub {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--warm-sand);
}
.footer-brand-blurb {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.7);
  margin-top: 1rem;
  max-width: 17.5rem;
  line-height: 1.6;
}
.footer-h4 {
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.footer-h4.mt {
  margin-top: 2rem;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.7);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-link:hover {
  color: var(--warm-sand);
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.6);
  margin-top: 1rem;
}
.footer-cta {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  background-color: var(--warm-sand);
  color: var(--burgundy);
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-btn);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 235, 0.15);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(245, 241, 235, 0.5);
}

/* ============================================================
   Reduced motion preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .hero-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}
