:root {
  --white: #ffffff;
  --white-soft: #F8F7F3;
  --cream: #F4F0E8;
  --navy: #0E2A47;
  --navy-deep: #071827;
  --blue-mist: #DCE7F2;
  --gold: #C8A45D;
  --gold-dark: #A67B2E;
  --silver: #C9CDD2;
  --marble: #E8E6E1;
  --ink: #10243B;
  --muted: #6C7480;
  --shadow: 0 24px 70px rgba(7, 24, 39, .14);
  --shadow-soft: 0 12px 35px rgba(7, 24, 39, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white-soft);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: var(--navy-deep); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 9999;
  background-image: radial-gradient(circle at 20% 30%, #000 0 1px, transparent 1px);
  background-size: 18px 18px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #E6D4A5, var(--navy));
  z-index: 10000;
  box-shadow: 0 0 20px rgba(200, 164, 93, .45);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  width: min(1240px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(248, 247, 243, .82);
  border: 1px solid rgba(200, 164, 93, .26);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(7, 24, 39, .08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 50px;
  height: 30px;
  color: var(--gold);
}
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.brand b {
  display: block;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: .16em;
  line-height: 1;
  font-size: 18px;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta {
  padding: 13px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  transition: .35s ease;
}
.header-cta:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.menu-toggle { display: none; }

.section-light { background: var(--white-soft); }
.section-white { background: var(--white); }
.section-cream { background: linear-gradient(180deg, var(--cream), var(--white-soft)); }
.section-blue { background: radial-gradient(circle at top left, rgba(200,164,93,.28), transparent 34%), linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--white); }
.section { padding: 110px 0; position: relative; }

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  padding: 70px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(248,247,243,.72) 48%, rgba(248,247,243,.92) 100%),
    radial-gradient(circle at 72% 22%, rgba(200,164,93,.25), transparent 28%);
  z-index: 0;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .55;
  animation: floatShape 10s ease-in-out infinite alternate;
}
.shape-1 { width: 480px; height: 480px; background: rgba(220,231,242,.55); right: -120px; top: 80px; }
.shape-2 { width: 360px; height: 360px; background: rgba(200,164,93,.16); left: -120px; bottom: 70px; animation-delay: -4s; }
@keyframes floatShape {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(34px,-28px,0) scale(1.08); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
}
.eyebrow.light { color: #E8CF8D; }
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--navy-deep); }
.section-blue h2, .section-blue h3, .section-blue h1 { color: var(--white); }
h1 {
  font-size: clamp(64px, 8.4vw, 128px);
  letter-spacing: -.055em;
  max-width: 720px;
}
h1 span { display: block; font-weight: 600; color: var(--navy); }
h1 em {
  display: block;
  color: var(--navy);
  font-size: .54em;
  font-weight: 500;
  letter-spacing: -.02em;
  font-style: italic;
  margin-top: -6px;
}
h2 { font-size: clamp(42px, 5vw, 74px); font-weight: 600; letter-spacing: -.04em; }
h3 { font-size: 26px; color: var(--navy); font-family: 'Cormorant Garamond', Georgia, serif; }
.hero-subtitle {
  max-width: 570px;
  margin: 26px 0 0;
  color: #384656;
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}
.center-actions { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #DDBC73); color: var(--white); box-shadow: 0 14px 28px rgba(166,123,46,.24); }
.btn-gold:hover { box-shadow: 0 18px 45px rgba(166,123,46,.35); }
.btn-outline { border-color: rgba(14,42,71,.22); color: var(--navy); background: rgba(255,255,255,.46); }
.btn-outline:hover { background: var(--white); box-shadow: var(--shadow-soft); }
.btn-outline-light { border-color: rgba(255,255,255,.38); color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn.full { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(200,164,93,.18);
  border-radius: 999px;
}
.trust-row span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-visual { perspective: 1400px; }
.portrait-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,247,243,.78));
  border: 1px solid rgba(200,164,93,.24);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.portrait-card img {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(7,24,39,.12);
}
.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(200,164,93,.25);
  box-shadow: 0 16px 40px rgba(7,24,39,.12);
  color: var(--navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 23px;
  font-style: italic;
  animation: badgeFloat 5s ease-in-out infinite alternate;
}
.badge-one { left: -22px; top: 12%; }
.badge-two { right: -24px; bottom: 18%; animation-delay: -2s; }
@keyframes badgeFloat { to { transform: translateY(-14px); } }
.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  border-top: 1px solid rgba(200,164,93,.35);
  border-bottom: 1px solid rgba(200,164,93,.35);
}
.feature-strip div {
  padding: 21px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,.12);
}
.icon-dot {
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.icon-dot::after {
  content: '';
  position: absolute;
  inset: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.split-grid, .experience-grid, .author-grid, .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-grid p, .experience-grid p, .author-grid p { font-size: 18px; color: #4E5966; }
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.glass-panel {
  position: relative;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(200,164,93,.25);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.glass-panel::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: rgba(200,164,93,.18);
}
.check-list, .price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li, .price-card li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
}
.check-list li::before, .price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 900;
}
.centered { text-align: center; max-width: 850px; }
.centered p { margin-inline: auto; }
.section-intro { color: rgba(255,255,255,.76); max-width: 680px; font-size: 18px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.benefit-card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(14,42,71,.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #FAF8F3);
  box-shadow: 0 10px 30px rgba(7,24,39,.06);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.benefit-card::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(200,164,93,.10);
  right: -30px;
  bottom: -30px;
}
.benefit-card span {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 58px;
  color: rgba(200,164,93,.62);
  line-height: 1;
  margin-bottom: 18px;
}
.benefit-card p { color: var(--muted); margin-bottom: 0; }

.diagonal { position: relative; overflow: hidden; }
.diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 44%, rgba(255,255,255,.04) 44% 66%, transparent 66%);
}
.price-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 28px;
  margin-top: 50px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 24px 80px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border-color: rgba(200,164,93,.58);
  transform: translateY(-12px);
}
.ribbon {
  position: absolute;
  top: 24px;
  right: -42px;
  transform: rotate(36deg);
  background: var(--gold);
  color: var(--white);
  padding: 8px 52px;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 900;
  font-size: 11px;
}
.plan-label {
  margin: 0 0 8px;
  color: #E8CF8D;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: 12px;
}
.price-card h3 { color: var(--white); font-size: 42px; }
.price-card p { color: rgba(255,255,255,.74); }
.price {
  margin: 22px 0 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 86px;
  line-height: .8;
  color: var(--gold);
}
.price span { font-size: .45em; vertical-align: super; }
.price small { font-family: 'Inter', sans-serif; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.price-card ul { margin-bottom: 28px; color: rgba(255,255,255,.82); }
.price-card li::before { color: var(--gold); }

.experience-visual {
  padding: 12px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(200,164,93,.28), rgba(220,231,242,.55));
  box-shadow: var(--shadow);
}
.experience-visual img { border-radius: 26px; aspect-ratio: 4 / 3; object-fit: cover; }
.mini-features { display: grid; gap: 14px; margin: 28px 0; }
.mini-features div {
  padding: 18px 20px;
  border: 1px solid rgba(14,42,71,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7,24,39,.05);
}
.mini-features strong { display: block; color: var(--navy); }
.mini-features span { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; }
.author-section { overflow: hidden; }
.author-image { position: relative; }
.author-image::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(200,164,93,.36);
  border-radius: var(--radius-xl);
  transform: rotate(-2deg);
}
.author-image img {
  position: relative;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  margin-top: 45px;
}
.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .45s ease;
}
.gallery-grid img:hover { transform: translateY(-8px) scale(1.015); }
.quote-band {
  padding: 100px 0;
  background:
    linear-gradient(90deg, rgba(7,24,39,.90), rgba(14,42,71,.80)),
    url('../assets/rosario-blue.png') center/cover;
  color: var(--white);
  text-align: center;
  background-attachment: fixed;
}
.quote-band h2 { color: var(--white); max-width: 950px; margin-inline: auto; font-size: clamp(36px, 4vw, 66px); }
.quote-mark { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 88px; line-height: .5; }
.faq-grid { align-items: start; }
.muted { color: var(--muted); }
.faq-list details {
  border: 1px solid rgba(14,42,71,.10);
  border-radius: 18px;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 10px 28px rgba(7,24,39,.04);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--gold-dark); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { padding: 0 24px 22px; margin: 0; color: var(--muted); }
.final-cta { padding: 110px 0; }
.final-cta h2 { max-width: 800px; margin-inline: auto; }
.final-cta p { color: rgba(255,255,255,.76); max-width: 650px; margin: 20px auto 0; }
.site-footer {
  padding: 26px 0;
  background: var(--navy-deep);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-grid strong { color: var(--white); display: block; }
.footer-grid a { color: var(--gold); font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    cursor: pointer;
  }
  .menu-toggle span { width: 19px; height: 2px; background: var(--white); margin-inline: auto; transition: .3s ease; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 84px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    padding: 26px;
    border-radius: 28px;
    background: rgba(248,247,243,.98);
    box-shadow: var(--shadow);
  }
}
@media (max-width: 920px) {
  .hero { padding-top: 50px; }
  .hero-grid, .split-grid, .experience-grid, .author-grid, .faq-grid, .price-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 320px; }
  .quote-band { background-attachment: scroll; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { top: 8px; width: calc(100% - 16px); margin-top: 8px; border-radius: 24px; }
  .brand small { display: none; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding-bottom: 0; }
  h1 { font-size: clamp(56px, 16vw, 86px); }
  h2 { font-size: clamp(38px, 12vw, 56px); }
  .hero-grid { gap: 34px; }
  .hero-actions, .center-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .feature-strip { grid-template-columns: 1fr; margin-top: 44px; }
  .feature-strip div { justify-content: flex-start; }
  .section { padding: 78px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .glass-panel, .price-card { padding: 28px; }
  .floating-badge { display: none; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
