/* ═══════════════════════════════════════════════════════════════════
   INFINITE SOUL AWAKENING — global.css  v3.0
   ═══════════════════════════════════════════════════════════════════ */

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

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ── DESIGN TOKENS ───────────────────────────────────────────────── */
:root {
  --cream:          #fdf8f2;
  --parchment:      #f5ede0;
  --linen:          #ede0d0;
  --accent:         #9b7355;
  --accent-dark:    #7a5a3e;
  --accent-light:   #c4a882;
  --text:           #2c1f12;
  --text-soft:      #6b5240;
  --border:         #e3d4c0;
  --white:          #ffffff;
  --whatsapp:       #25D366;
  --whatsapp-dark:  #1da851;
  --shadow-warm:    0 8px 40px rgba(100,65,30,.11);
  --shadow-card:    0 4px 28px rgba(100,70,40,.09);
  --shadow-hover:   0 18px 52px rgba(100,65,30,.16);
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Jost', sans-serif;
  --section-pad:    108px;
  --header-h:       76px;
}

/* ── BASE ────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ──────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
.section-label {
  font-size: .68rem; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 400; font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15; color: var(--text);
}
.section-title em { font-style: italic; font-weight: 300; }
.text-link {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--accent-light); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--accent-dark); border-color: var(--accent); }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: .72rem;
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  padding: 14px 34px; text-decoration: none;
  border: none; cursor: pointer;
  transition: background .28s, color .28s, transform .22s, box-shadow .28s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-filled  { background: var(--accent); color: var(--white); }
.btn-filled:hover { background: var(--accent-dark); box-shadow: 0 6px 28px rgba(122,90,62,.32); }
.btn-ghost   { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-ghost:hover { background: var(--accent); color: var(--white); }
.btn-white   { background: var(--white); color: var(--text); }
.btn-white:hover { background: var(--parchment); box-shadow: var(--shadow-card); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 6px 24px rgba(37,211,102,.3); }
.btn-insta { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.btn-insta:hover { opacity: .9; box-shadow: 0 6px 24px rgba(220,39,67,.3); }
.btn-sm { font-size: .66rem; padding: 10px 22px; letter-spacing: .14em; }

/* ── ANIMATION ───────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── HEADER ──────────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(253,248,242,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 28px rgba(100,70,40,.09); }

/* Container inside header must fill the header's height */
#site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  font-family: var(--font-serif); font-size: 1.18rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  line-height: 1.2; letter-spacing: .02em; flex-shrink: 0;
}
.logo span { display: block; font-weight: 300; font-size: .9rem; color: var(--accent); }

/* ── Image logo + brand name ── */
.logo-img-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  height: 85px; width: auto;
  object-fit: contain; display: block; flex-shrink: 0;
  transition: opacity .2s, transform .3s;
}
.logo-img-wrap:hover .logo-img { opacity: .88; transform: scale(1.02); }

/* Brand name text next to logo */
.logo-text-wrap {
  display: flex; flex-direction: column; line-height: 1.2;
}
.logo-text-main {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 500;
  color: var(--text); letter-spacing: .02em;
}
.logo-text-sub {
  font-size: .78rem; font-weight: 300;
  color: var(--accent); letter-spacing: .04em;
}

/* Footer logo — icon inverted to white, text in accent-light */
.footer-logo-img {
  height: 85px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .92; flex-shrink: 0;
}
.footer-logo-wrap:hover .footer-logo-img { opacity: 1; }
.footer-logo-text .logo-text-main { color: var(--white); }
.footer-logo-text .logo-text-sub  { color: var(--accent-light); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: .74rem; letter-spacing: .11em; text-transform: uppercase;
  text-decoration: none; color: var(--text-soft); font-weight: 400;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--text); }

/* Instagram handle in nav */
.nav-insta {
  font-size: .7rem; letter-spacing: .08em;
  color: var(--accent-light) !important;
  text-transform: none !important;
  font-style: italic;
}
.nav-insta::after { display: none !important; }
.nav-insta:hover { color: var(--accent) !important; }

.header-cta { font-size: .68rem; padding: 10px 22px; letter-spacing: .14em; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: .3s; }

/* ── MOBILE NAV ──────────────────────────────────────────────────── */
#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--cream); flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: var(--font-serif); font-size: 2.2rem;
  font-weight: 400; color: var(--text); text-decoration: none; transition: color .2s;
}
#mobile-nav a:hover { color: var(--accent); }
#mobile-nav .btn { font-size: .72rem; margin-top: 8px; }
.mobile-close {
  position: absolute; top: 28px; right: 32px;
  background: none; border: none; font-size: 1.8rem; color: var(--text); line-height: 1;
}

/* ── TRUST BAR ───────────────────────────────────────────────────── */
.trust-bar {
  background: var(--parchment);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex; justify-content: center;
  align-items: stretch; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 42px; border-right: 1px solid var(--border);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(155,115,85,.05); }
.trust-icon svg { width: 19px; height: 19px; stroke: var(--accent); fill: none; stroke-width: 1.4; }
.trust-label {
  font-size: .74rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-soft); font-weight: 400;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────────── */
.page-hero {
  position: relative; padding-top: var(--header-h);
  height: 460px; overflow: hidden; display: flex; align-items: flex-end;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: brightness(.55) saturate(.85);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,3,.04) 0%, rgba(20,10,3,.6) 100%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; padding: 0 0 60px; width: 100%; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb-sep { color: rgba(255,255,255,.22); }
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400; color: var(--white); line-height: 1.08; max-width: 720px;
}
.page-hero-content h1 em { font-style: italic; font-weight: 300; color: rgba(255,218,178,.92); }
.page-hero-content p {
  font-size: .93rem; color: rgba(255,255,255,.64);
  max-width: 500px; margin-top: 16px; line-height: 1.84;
}

/* ── FINAL CTA (shared) ──────────────────────────────────────────── */
.final-cta { position: relative; overflow: hidden; }
.final-cta-img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: center 40%;
  filter: brightness(.48) saturate(.82);
}
.final-cta-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.final-cta-overlay .section-label { color: rgba(255,255,255,.48); }
.final-cta-overlay h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400; color: var(--white);
  line-height: 1.12; margin-bottom: 16px; max-width: 640px;
}
.final-cta-overlay h2 em { font-style: italic; font-weight: 300; }
.final-cta-overlay p {
  font-size: .92rem; color: rgba(255,255,255,.66);
  max-width: 420px; margin-bottom: 34px; line-height: 1.86;
}
.cta-btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
#site-footer {
  position: relative; background: #1c0f06;
  color: rgba(255,255,255,.52); padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo { display: inline-block; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--accent-light); }
.footer-brand p { font-size: .84rem; line-height: 1.88; max-width: 240px; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.footer-contact a {
  font-size: .82rem; color: rgba(255,255,255,.52);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--accent-light); }
.footer-contact svg { width: 14px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.footer-insta-handle {
  font-size: .78rem; color: var(--accent-light);
  text-decoration: none; font-style: italic; letter-spacing: .04em;
  transition: opacity .2s;
}
.footer-insta-handle:hover { opacity: .7; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.46); text-decoration: none;
  font-size: .8rem; transition: border-color .2s, color .2s, background .2s;
}
.footer-socials a:hover { border-color: var(--accent-light); color: var(--accent-light); background: rgba(196,168,130,.08); }
.footer-col h4 {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 18px; font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .83rem; color: rgba(255,255,255,.46);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-disclaimer {
  background: rgba(0,0,0,.2);
  padding: 20px 0;
  margin-top: 0;
}
.footer-disclaimer p {
  font-size: .75rem; color: rgba(255,255,255,.3);
  line-height: 1.7; text-align: center; max-width: 820px; margin: 0 auto;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px; font-size: .77rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--accent-light); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .site-nav { gap: 20px; }
  .nav-insta { display: none; }
  .trust-item { padding: 20px 28px; }
}
@media (max-width: 900px) {
  .site-nav, #site-header .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-hero { height: 380px; }
  .final-cta-img { height: 420px; }
}
@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .page-hero { height: 340px; }
  .final-cta-img { height: 380px; }
}
