@import url('https://fonts.googleapis.com/css2?family=Della+Respira&family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --cream: #F5F0EB;
  --cream-dark: #EDE6DD;
  --cream-light: #FAF8F5;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-dark: #A8873F;
  --rose: #C9A9A6;
  --rose-light: #E0CCCB;
  --purple-muted: #8B7B8B;
  --white: #FFFFFF;
  --shadow: rgba(44, 44, 44, 0.08);
  --shadow-md: rgba(44, 44, 44, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.85;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Della Respira', serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1.3rem;
  font-size: 1rem;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: 'Della Respira', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.1rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dark);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.lang-switcher {
  display: flex;
  gap: 0.3rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(196, 162, 101, 0.3);
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dark);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  font-weight: 500;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  color: var(--charcoal);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.hero-text {
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Della Respira', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero-tagline {
  font-family: 'Della Respira', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-description {
  color: var(--charcoal-light);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
  background: transparent;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--white);
}

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

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow-md);
  max-height: 70vh;
  object-fit: cover;
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section--alt {
  background: var(--cream-light);
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--dark p {
  color: var(--cream);
}

.section--dark .split-text h3 {
  color: var(--cream);
}

.section--dark .split-text p {
  color: var(--cream);
}

.section--dark .split-text ul li {
  color: var(--cream);
}

.section--dark .split-text ul li::before {
  background: var(--gold);
}

.section--dark .section-label {
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Della Respira', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: var(--cream);
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split-image img {
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

.split-image--contain img {
  object-fit: contain;
  max-height: 550px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.split-text h3 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.split-text p {
  color: var(--charcoal-light);
  line-height: 1.9;
}

.split-text ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.split-text ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal-light);
  font-size: 1rem;
}

.split-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ===== SERVICES / PILLARS GRID ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
  border-top: 2px solid transparent;
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
  border-top-color: var(--gold);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  color: var(--gold);
}

.pillar-card h4 {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ===== INTELLIGENCES GRID ===== */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.intel-card {
  padding: 1.8rem 1.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  border-left: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.intel-card:hover {
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
}

.intel-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.intel-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.intel-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== TAROT SECTION ===== */
.tarot-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.tarot-image img {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 44, 44, 0.25);
  max-height: 500px;
  object-fit: cover;
}

.tarot-info h3 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.tarot-details {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(196, 162, 101, 0.3);
  border-bottom: 1px solid rgba(196, 162, 101, 0.3);
}

.tarot-detail {
  text-align: center;
}

.tarot-detail .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.tarot-detail .value {
  font-family: 'Della Respira', serif;
  font-size: 1.5rem;
  color: var(--cream);
}

/* ===== MODALITES ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  font-family: 'Della Respira', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h4 {
  margin-bottom: 1rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-image img {
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow-md);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.email-display {
  font-family: 'Della Respira', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  padding: 1rem 1.5rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
  user-select: none;
  pointer-events: none;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 50px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.whatsapp-btn:hover {
  background: #1a1a1a;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.contact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ===== INTERNATIONAL ===== */
.international-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intl-image img {
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--cream-dark);
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Della Respira', serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: 'Della Respira', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-socials a {
  color: var(--cream-dark);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  border-top: 1px solid rgba(196, 162, 101, 0.15);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content,
  .split,
  .split--reverse,
  .tarot-content,
  .contact-grid,
  .international-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split--reverse {
    direction: ltr;
  }

  .intel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 50vh;
  }

  .scroll-indicator {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(196, 162, 101, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(196, 162, 101, 0.2);
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

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

  .tarot-details {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content {
    padding-top: 5rem;
    text-align: center;
  }

  .hero-cta {
    margin: 0 auto;
  }

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

@media (max-width: 480px) {
  html { font-size: 16px; }

  .container { padding: 0 1.2rem; }

  .nav-content { padding: 0.8rem 1.2rem; }

  .section { padding: 3rem 0; }

  .section-header { margin-bottom: 2.5rem; }
}
