/* ==========================================================================
   RINO ADVANCE — Fellowship en Rinoplastia Avanzada
   Design tokens tomados de RINO_ADVANCE_Manual_de_Marca.pptx v1.0
   ========================================================================== */

:root {
  --navy: #16233A;
  --navy-2: #1F3050;
  --navy-3: #0F1826;
  --gold: #C9A664;
  --gold-light: #DCC593;
  --ice: #AAB9CB;
  --ink: #4A5568;
  --sand: #F4F6F9;
  --white: #FFFFFF;

  --font-heading: Cambria, Georgia, "Times New Roman", serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;

  --container: 1160px;
  --radius: 4px;
  --gap: 1.75rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 0.6em;
  line-height: 1.25;
  font-weight: 700;
}
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5.5rem 0; }
@media (max-width: 720px) { section { padding: 3.25rem 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-head {
  max-width: 680px;
  margin-bottom: 3rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.section-head p { color: var(--ink); font-size: 1.05rem; }

.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); color: var(--ice); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy .eyebrow { color: var(--gold-light); }
.bg-navy p { color: var(--ice); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn-gold { background: var(--gold); color: var(--navy-3); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(255,255,255,0.05); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Editorial system ---------- */
.divider-orn {
  width: 130px;
  height: 1px;
  margin: 1rem 0 1.7rem;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,166,100,0.1) 100%);
  position: relative;
}
.divider-orn::after {
  content: "◆";
  position: absolute;
  left: 42px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.42rem;
  color: var(--gold);
  background: var(--navy-3);
  padding: 0 0.4rem;
  line-height: 1;
}
.section-head .divider-orn::after,
section:not(.bg-navy):not(.hero-editorial):not(.doctor-spotlight) .divider-orn::after { background: var(--white); }
.bg-sand .divider-orn::after { background: var(--sand); }
.divider-orn.center { margin-left: auto; margin-right: auto; }

.display-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}
.display-title.xl { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.display-title.lg { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.eyebrow-line {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  max-width: 520px;
  line-height: 1.5;
}

.photo-duotone { position: relative; overflow: hidden; }
.photo-duotone img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  object-position: center 12%;
  filter: contrast(1.05) saturate(1.04) brightness(1.02);
}
.photo-duotone::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(22,35,58,0.22) 0%, rgba(15,24,38,0.45) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}
.brand-icon { height: 46px; width: auto; display: block; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.25rem;
}
.nav-links {
  display: flex;
  gap: 2.1rem;
  align-items: center;
}
.nav-links a {
  color: var(--ice);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--white);
  border-color: var(--gold);
}
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover {
  color: var(--navy-3);
  border-bottom: none;
}
.nav-cta { margin-left: 0.5rem; }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--navy-3);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { margin: 0.9rem 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  padding: 6.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,100,0.18);
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 0.55em;
}
.hero p.lead {
  color: var(--ice);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 2.2rem;
}
.page-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  padding: 4.4rem 0 3.8rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -40%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,100,0.15);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
}
.page-hero p { color: var(--ice); max-width: 640px; font-size: 1.02rem; margin: 0; }
.breadcrumb { font-size: 0.82rem; color: var(--gold-light); margin-bottom: 1rem; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--ice); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Editorial hero (Inicio) ---------- */
.hero-editorial {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-editorial .photo-duotone {
  position: absolute; inset: 0; z-index: 0;
}
.hero-editorial .photo-duotone::after {
  background: linear-gradient(0deg, var(--navy-3) 2%, rgba(15,24,38,0.55) 42%, rgba(15,24,38,0.35) 65%, rgba(15,24,38,0.55) 100%);
}
.hero-duo-photos {
  position: absolute; inset: 0; z-index: 0;
  display: flex;
}
.hero-duo-photos .photo-duotone {
  position: relative;
  flex: 1 1 50%;
  height: 100%;
}
.hero-duo-photos .photo-duotone::after {
  background: linear-gradient(0deg, var(--navy-3) 2%, rgba(15,24,38,0.35) 45%, rgba(15,24,38,0.15) 62%, rgba(15,24,38,0.4) 100%);
}
@media (max-width: 720px) {
  .hero-duo-photos { flex-direction: row; }
  .hero-duo-photos .photo-duotone { min-width: 0; }
}
.hero-editorial-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0 0;
  text-align: center;
}
.hero-editorial .eyebrow, .hero-editorial .eyebrow-line { color: var(--gold-light); margin-bottom: 1.1rem; }
.hero-editorial .display-title { margin-bottom: 0.5rem; }
.hero-logo { margin: 0 auto 1.1rem; line-height: 0; }
.hero-logo img {
  width: clamp(220px, 34vw, 420px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.75)) drop-shadow(0 0 32px rgba(0,0,0,0.55));
}
.hero-editorial-content .divider-orn { margin-left: auto; margin-right: auto; }
.hero-editorial p.lead {
  color: var(--ice);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 1.1rem auto 0;
}
.hero-cta-bar {
  position: relative;
  z-index: 1;
  background: var(--navy-3);
  border-top: 1px solid rgba(201,166,100,0.2);
  text-align: center;
  padding: 2.6rem 0;
}
.hero-cta-bar p {
  max-width: 620px;
  margin: 0 auto 1.6rem;
  color: var(--ice);
  font-size: 1.02rem;
}
.hero-cta-bar .btn-row { justify-content: center; }
@media (max-width: 720px) {
  .hero-editorial { min-height: 78vh; }
}

/* ---------- Doctor spotlight (editorial bio) ---------- */
.doctor-spotlight {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 0;
  background: var(--navy-3);
}
.doctor-spotlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  min-height: 640px;
  background: var(--navy-3);
}
.doctor-spotlight .photo-duotone { min-height: 360px; }
.doctor-spotlight-text {
  background: var(--navy-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem;
}
.doctor-spotlight-text .eyebrow { color: var(--gold-light); }
.doctor-spotlight-text .display-title { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.doctor-spotlight-text p { color: var(--ice); font-size: 0.98rem; }
.doctor-spotlight-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.4rem 0 1.1rem;
}
.doctor-spotlight-list { margin-top: 0.6rem; }
.doctor-spotlight-list li {
  color: var(--ice);
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .doctor-spotlight-grid { grid-template-columns: 1fr; min-height: auto; }
  .doctor-spotlight .photo-duotone { min-height: 420px; }
  .doctor-spotlight-text { padding: 2.8rem 1.5rem; }
}

/* ---------- Icon circle ---------- */
.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle.gold { background: var(--gold); }
.icon-circle svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-circle.gold svg { stroke: var(--navy-3); }

/* ---------- Grids / Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid #E7EBF1;
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
}
.card-pillar {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.card-pillar h3 { font-size: 1.08rem; margin-bottom: 0.35em; }
.card-pillar p { font-size: 0.94rem; margin: 0; color: var(--ink); }

.card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0.2rem 0 0.9rem;
}
.card-price span { color: var(--gold); }

.stat-band {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0;
}
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 720px) { .stat-grid { grid-template-columns: 1fr; gap: 2.2rem; } }
.stat-num { font-family: var(--font-heading); font-size: 2.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.88rem; color: var(--ice); margin-top: 0.6rem; letter-spacing: 0.02em; }

/* ---------- Doctor cards ---------- */
.doctor-card {
  background: var(--white);
  border: 1px solid #E7EBF1;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.doctor-photo {
  aspect-ratio: 4 / 3.4;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.doctor-photo svg { width: 34%; opacity: 0.9; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doctor-photo .ph-badge {
  position: absolute;
  bottom: 0.9rem; left: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(15,24,38,0.55);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
}
.doctor-body { padding: 1.6rem 1.7rem 1.9rem; }
.doctor-body h3 { margin-bottom: 0.15em; font-size: 1.2rem; }
.doctor-role { color: var(--gold); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.9rem; display: block; }
.doctor-body p { font-size: 0.94rem; }
.placeholder-note {
  font-size: 0.8rem;
  color: var(--ice);
  background: var(--navy);
  border-radius: 3px;
  padding: 0.5rem 0.7rem;
  margin-top: 0.9rem;
  border: 1px dashed rgba(201,166,100,0.4);
}

/* ---------- Values / voice list ---------- */
.value-row {
  display: flex;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid #E7EBF1;
}
.value-row:last-child { border-bottom: none; }
.value-row h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.value-row p { margin: 0; font-size: 0.95rem; }

.check-list li, .cross-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  font-size: 0.96rem;
}
.check-list svg, .cross-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.check-list svg { stroke: var(--gold); }
.cross-list svg { stroke: var(--ice); }

/* ---------- Timeline / steps ---------- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 0 0 2.4rem 0;
  position: relative;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px; top: 46px; bottom: 0;
  width: 1px;
  background: #E0E5EC;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.step p { margin: 0; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); max-width: 620px; margin: 0 auto 0.7em; }
.cta-band p { color: var(--ice); max-width: 540px; margin: 0 auto 2rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #D7DDE6;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }

/* ---------- Contact info list ---------- */
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-row h4 { margin: 0 0 0.2em; font-size: 0.95rem; color: var(--navy); }
.info-row p { margin: 0; font-size: 0.95rem; color: var(--ink); }
.info-row a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-3); color: var(--ice); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .brand { margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.9rem; color: var(--ice); max-width: 320px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; color: var(--ice); margin-bottom: 0.6rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.8rem; color: #6E7C90; flex-wrap: wrap; gap: 0.6rem; }
.footer-bottom a { color: #8B9AB0; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--sand);
  border: 1px solid #E0E5EC;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  margin: 0 0.4rem 0.4rem 0;
}

/* ---------- Entrance animations ---------- */
@keyframes letterIn {
  from { opacity: 0; transform: translateY(0.6em) rotate(3deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.split-letters { display: inline-block; }
.split-letters .letter-word { display: inline-block; white-space: nowrap; }
.split-letters .letter {
  display: inline-block;
  opacity: 0;
  animation: letterIn 0.6s cubic-bezier(0.25, 0.8, 0.3, 1) forwards;
  animation-delay: calc(0.3s + var(--i) * 35ms);
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-reveal {
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.25, 0.8, 0.3, 1) forwards;
}
.hero-reveal.delay-1 { animation-delay: 0.05s; }
.hero-reveal.delay-2 { animation-delay: 1.15s; }
.hero-reveal.delay-3 { animation-delay: 1.35s; }
.hero-reveal.delay-4 { animation-delay: 1.55s; }

@media (prefers-reduced-motion: reduce) {
  .split-letters .letter, .hero-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Floating Instagram bubble ---------- */
.ig-bubble {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-3) 100%);
  border: 1.5px solid rgba(201,166,100,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ig-bubble:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.ig-bubble svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 720px) {
  .ig-bubble { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .ig-bubble svg { width: 23px; height: 23px; }
}

/* ============ TESTIMONIOS ============ */
.testimonios-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.testimonios-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  flex: 1;
  scrollbar-width: none;
}
.testimonios-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--navy-2);
  border: 1px solid rgba(201,166,100,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.testimonial-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--navy-3);
}
.testimonial-info {
  padding: 1.1rem 1.25rem 1.3rem;
  text-align: center;
}
.testimonial-info h4 {
  font-family: 'Cambria', Georgia, serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.testimonial-info span {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonios-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,100,0.4);
  background: var(--navy-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.testimonios-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.testimonios-arrow:hover svg { stroke: var(--navy-3); }
.testimonios-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 640px) {
  .testimonios-arrow { width: 40px; height: 40px; }
  .testimonial-card { flex-basis: 200px; }
}
