/* ============================================================
   Mind Fit Online — styles.css
   Editorial design inspired by fitmindonline.com
   ============================================================ */

/* --- Variables --- */
:root {
  --navy: #2a2a35;
  --terracota: #c17a5a;
  --crema: #f5f0ea;
  --white: #ffffff;
  --navy-rgb: 42, 42, 53;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--crema);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
.serif { font-family: 'Cormorant Garamond', serif; }
.sans { font-family: 'Inter', sans-serif; }
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 500;
}

/* --- Utilities --- */
.container { width: 88%; max-width: 1200px; margin: 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 0;
  transition: background var(--transition), padding var(--transition);
}
.nav--solid { background: var(--navy); }
.nav--solid .nav-logo,
.nav--solid .nav-links a,
.nav--solid .nav-toggle span { color: var(--crema); }
.nav--solid .nav-toggle span { background: var(--crema); }
.nav--solid .nav-cta {
  background: var(--crema) !important;
  color: var(--navy) !important;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.nav--solid .nav-logo img { filter: brightness(0) invert(1); }
.nav--solid .nav-logo span { color: var(--crema); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  transition: opacity var(--transition);
}
.nav-links a:hover { opacity: 0.6; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--crema) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 0;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  transition: opacity var(--transition) !important;
}
.nav-cta:hover { opacity: 0.8 !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    color: var(--crema) !important;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }
}

/* ============================================================
   HERO — index.html
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.hero-inner {
  position: relative;
  width: 100%;
}

.hero-overtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  opacity: 0.6;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-align: right;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
}

.hero-undertitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: right;
  opacity: 0.6;
}

/* Floating hero image */
.hero-float-img {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  z-index: 10;
}
.hero-float-img img {
  width: 100%;
  display: block;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  justify-content: flex-end;
}

/* Explore link */
.hero-explore {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.hero-explore a {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--navy);
  transition: opacity var(--transition);
}
.hero-explore a:hover { opacity: 0.6; }
.hero-explore-line {
  width: 1px;
  height: 50px;
  background: var(--navy);
  margin: 0.8rem auto 0;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero { padding: 140px 0 100px; }
  .hero-headline { text-align: left; font-size: clamp(3rem, 14vw, 5rem); }
  .hero-undertitle { text-align: left; }
  .hero-float-img {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 60%;
    margin-bottom: 2rem;
    opacity: 1;
  }
  .hero-ctas { justify-content: flex-start; flex-wrap: wrap; gap: 1.5rem; }
  .hero-explore { display: none; }
}

/* ============================================================
   HERO — Inner pages
   ============================================================ */
.hero--inner {
  min-height: 60vh;
  background: var(--crema);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
}
.hero--inner .hero-headline {
  text-align: left;
  font-size: clamp(3rem, 8vw, 8rem);
  margin-bottom: 1rem;
}
.hero--inner .hero-sub {
  font-size: 1rem;
  max-width: 540px;
  opacity: 0.6;
  line-height: 1.7;
}

/* Hero with background image */
.hero--img {
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.55);
}
.hero--img .container { position: relative; z-index: 2; }
.hero--img .hero-headline { color: var(--crema); }
.hero--img .hero-sub { color: var(--crema); opacity: 0.8; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition);
}
.btn--navy {
  background: var(--navy);
  color: var(--crema);
}
.btn--navy:hover { opacity: 0.8; }
.btn--outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover { background: var(--navy); color: var(--crema); }
.btn--crema {
  background: var(--crema);
  color: var(--navy);
}
.btn--crema:hover { opacity: 0.85; }
.btn--large { padding: 1.1rem 2.8rem; }

.link-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  transition: opacity var(--transition);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-text:hover { opacity: 0.6; }

/* ============================================================
   MERSI LIST — Efecto lista con imagen flotante
   ============================================================ */
.mersi-section {
  background: var(--crema);
  padding: 120px 0;
}
.mersi-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 4rem;
  opacity: 0.5;
}
.mersi-list { position: relative; }
.mersi-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(var(--navy-rgb), 0.1);
  cursor: default;
  transition: opacity var(--transition);
}
.mersi-item:first-child { border-top: 1px solid rgba(var(--navy-rgb), 0.1); }
.mersi-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 7vw, 5.5rem);
  color: var(--navy);
  line-height: 1.1;
  transition: color var(--transition);
}
.mersi-item:hover .mersi-item-name { color: var(--terracota); }
.mersi-list:hover .mersi-item:not(:hover) { opacity: 0.25; }

/* Cursor floating image */
#cursor-img {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  width: 320px;
  overflow: hidden;
  z-index: 9999;
  will-change: transform, opacity;
}
#cursor-img.active {
  visibility: visible;
}
#cursor-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Mobile: static images */
.mersi-item-img-mobile {
  display: none;
  margin-top: 0.8rem;
  overflow: hidden;
}
.mersi-item-img-mobile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .mersi-section { padding: 80px 0; }
  #cursor-img { display: none !important; }
  .mersi-item-img-mobile { display: block; }
}

/* ============================================================
   WHY SECTION — 3 columnas
   ============================================================ */
.why-section {
  padding: 120px 0;
  background: var(--navy);
  color: var(--crema);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
.why-card {}
.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--terracota);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.why-card p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-section { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  text-align: center;
}
.cta-section--navy { background: var(--navy); color: var(--crema); }
.cta-section--crema { background: var(--crema); color: var(--navy); }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.cta-section p {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.section-sub {
  max-width: 540px;
  margin-bottom: 4rem;
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES (servicios.html) — vertical list
   ============================================================ */
.services-section { padding: 120px 0; }
.services-list {}
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(var(--navy-rgb), 0.1);
}
.service-item:first-child { border-top: 1px solid rgba(var(--navy-rgb), 0.1); }
.service-item-img {
  height: 320px;
  overflow: hidden;
}
.service-item-img img { width: 100%; height: 100%; object-fit: cover; }
.service-item-body {}
.service-item-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-item-body p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services-section { padding: 80px 0; }
  .service-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-item-img { height: 240px; }
}

/* ============================================================
   SPECIALISTS (servicios.html)
   ============================================================ */
.specialists-section {
  padding: 120px 0;
  background: var(--navy);
  color: var(--crema);
}
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.specialist-card { text-align: center; }
.specialist-card-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}
.specialist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialist-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.specialist-card p { font-size: 0.75rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .specialists-section { padding: 80px 0; }
  .specialists-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TEAM (nosotros.html)
   ============================================================ */
.team-section { padding: 120px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.team-card {
  overflow: hidden;
}
.team-card-img { height: 360px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.5rem 0; }
.team-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.team-card-body .role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracota);
  font-weight: 500;
  margin-bottom: 1rem;
}
.team-card-body p { font-size: 0.85rem; opacity: 0.6; line-height: 1.7; }

@media (max-width: 768px) {
  .team-section { padding: 80px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-img { height: 300px; }
}

/* ============================================================
   MISSION / VISION (nosotros.html)
   ============================================================ */
.mission-section { padding: 120px 0; background: var(--crema); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.mission-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.mission-block p { font-size: 0.95rem; line-height: 1.9; opacity: 0.7; }

@media (max-width: 768px) {
  .mission-section { padding: 80px 0; }
  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   VALUES (nosotros.html)
   ============================================================ */
.values-section { padding: 120px 0; background: var(--navy); color: var(--crema); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.value-item {}
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.value-item p { font-size: 0.85rem; opacity: 0.5; line-height: 1.7; }
.value-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .values-section { padding: 80px 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ============================================================
   PLANS (planes.html)
   ============================================================ */
.plans-section { padding: 120px 0; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.plan-card {
  border: 1px solid rgba(var(--navy-rgb), 0.1);
  overflow: hidden;
  transition: border-color var(--transition);
  position: relative;
}
.plan-card:hover { border-color: var(--navy); }
.plan-card--featured {
  border: 2px solid var(--navy);
}
.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--navy);
  color: var(--crema);
  padding: 0.3rem 0.8rem;
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}
.plan-card-img { height: 200px; overflow: hidden; }
.plan-card-img img { width: 100%; height: 100%; object-fit: cover; }
.plan-card-body { padding: 2rem 1.8rem; }
.plan-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.plan-price-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.plan-features { margin-bottom: 2rem; }
.plan-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(var(--navy-rgb), 0.06);
  font-size: 0.85rem;
  opacity: 0.7;
  padding-left: 1.2rem;
  position: relative;
}
.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .plans-section { padding: 80px 0; }
  .plans-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ ACCORDION — CSS puro
   ============================================================ */
.faq-section { padding: 120px 0; background: var(--crema); }
.faq-item {
  border-bottom: 1px solid rgba(var(--navy-rgb), 0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(var(--navy-rgb), 0.1); }
.faq-toggle { display: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  user-select: none;
  transition: opacity var(--transition);
}
.faq-question:hover { opacity: 0.6; }
.faq-icon {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.8;
}
.faq-toggle:checked ~ .faq-answer { max-height: 300px; }
.faq-toggle:checked ~ .faq-question .faq-icon { transform: rotate(45deg); }

@media (max-width: 768px) {
  .faq-section { padding: 80px 0; }
}

/* ============================================================
   CONTACT FORM (contacto.html)
   ============================================================ */
.contact-section { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
}
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid rgba(var(--navy-rgb), 0.2);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: transparent;
  color: var(--navy);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.contact-info { padding-top: 1rem; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.contact-info-item {
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
}
.contact-info-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-section { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   FOOTER — Minimalista
   ============================================================ */
.footer {
  border-top: 1px solid rgba(var(--navy-rgb), 0.1);
  padding: 3rem 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
}
.footer-links-inline {
  display: flex;
  gap: 2rem;
}
.footer-links-inline a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.footer-links-inline a:hover { opacity: 1; }
.footer-copy {
  font-size: 0.7rem;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links-inline { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

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

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section--navy { background: var(--navy); color: var(--crema); }
.section--crema { background: var(--crema); color: var(--navy); }
.section--white { background: var(--white); color: var(--navy); }
.section-padding { padding: 120px 0; }

@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }
}

/* ============================================================
   LENIS
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ============================================================
   SAFETY: all content visible without JS (file:// compatible)
   ============================================================ */
.hero,
.hero-inner,
.hero-headline,
.hero-line,
.hero-overtitle,
.hero-undertitle,
.hero-ctas,
.hero-explore,
.hero-float-img,
.hero-sub,
.mersi-section,
.mersi-item,
.mersi-item-name {
  opacity: 1 !important;
  visibility: visible !important;
}
