:root{
  --bg:#0b0c0f;
  --bg-alt:#10131a;
  --card:rgba(255,255,255,.05);
  --card-strong:rgba(255,255,255,.07);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.94);
  --muted:rgba(255,255,255,.70);
  --muted-2:rgba(255,255,255,.52);
  --radius:22px;
  --radius-sm:16px;
  --shadow:0 24px 70px rgba(0,0,0,.42);
  --container:1120px;
  --wa:#25D366;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{min-height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(255,255,255,.08), transparent 58%),
    radial-gradient(900px 520px at 78% 12%, rgba(255,255,255,.06), transparent 55%);
  z-index:-1;
}

img,video,iframe{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
p{margin:0 0 14px}
h1,h2,h3{margin:0 0 12px;line-height:1.08;letter-spacing:-.02em}
summary{cursor:pointer;list-style:none}
summary::-webkit-details-marker{display:none}

.container{width:min(100% - 40px,var(--container));margin-inline:auto}
.muted{color:var(--muted)}
.small{font-size:13px;color:var(--muted-2)}
.lead{font-size:18px;color:var(--muted);max-width:62ch}
.skip-link{
  position:absolute;
  left:12px;
  top:-100px;
  padding:10px 12px;
  background:#fff;
  color:#000;
  border-radius:10px;
}
.skip-link:focus{top:12px;z-index:1000}

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  backdrop-filter:blur(10px);
  background:rgba(8,10,14,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:74px;
}
.brand{display:flex;align-items:center;gap:10px;min-width:0}
.brand-mark{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  flex:0 0 auto;
}
.brand-name{font-weight:600;letter-spacing:.01em;white-space:nowrap}
.nav{display:flex;align-items:center;gap:18px}
.nav a{font-size:14px;color:var(--muted)}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:var(--text);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.btn:hover{background:rgba(255,255,255,.14)}
.btn-ghost{background:transparent;color:var(--muted);box-shadow:none}
.btn-ghost:hover{background:rgba(255,255,255,.06);color:var(--text)}
.btn-small{min-height:40px;padding:10px 14px;font-size:14px}

.section{position:relative;padding:72px 0}
.section + .section::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:20px;
  pointer-events:none;
  background:linear-gradient(to bottom, rgba(255,255,255,.08), transparent 70%);
  opacity:.35;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.hero{padding:54px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  margin-bottom:12px;
  color:var(--muted-2);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.hero-copy h1{font-size:clamp(34px,4vw,54px)}
.hero-cta{display:flex;flex-wrap:wrap;gap:12px;margin:20px 0 14px}
.hero-bullets{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:14px;
}
.hero-bullets li{position:relative;padding-left:14px}
.hero-bullets li::before{content:"—";position:absolute;left:0;color:rgba(255,255,255,.35)}

.hero-media-card{
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}
.hero-video{
  position:relative;
  aspect-ratio:16/9;
  background:#0f1117;
  overflow:hidden;
}
.hero-video img,
.hero-video iframe{
  width:100%;
  height:100%;
  object-fit:cover;
  border:0;
}
.hero-video-placeholder{cursor:pointer}
.hero-video::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:90px;
  background:linear-gradient(to top, rgba(0,0,0,.32), transparent);
  pointer-events:none;
}
.hero-video-play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  padding: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.42);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  appearance: none;
  -webkit-appearance: none;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
isolation: isolate;
}

.hero-video-play::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 26px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-45%, -50%);
}

.hero-video-play:hover{
  background: rgba(0, 0, 0, 0.86);
  transform: translate(-50%, -50%) scale(1.04);
}

.hero-video-play:active{
  transform: translate(-50%, -50%) scale(0.97);
}
.hero-video.is-loaded .hero-video-play{display:none}

.hero-video-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 20px 18px;
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
}
.hero-chip{
  font-size:15px;
  line-height:1.35;
  color:rgba(255,255,255,.88);
  background:none;
  border:none;
  border-radius:0;
  padding:0;
  display:block;
}
.hero-chip:last-child{color:var(--muted)}

.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.card,
.panel{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:var(--card);
  overflow:hidden;
}
.card:hover{background:var(--card-strong)}
.card-body{padding:16px}
.card-soft{background:rgba(255,255,255,.04)}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:32px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:13px;
  margin-bottom:10px;
}

.ratio{position:relative;width:100%;padding-top:56.25%;overflow:hidden;border-radius:18px}
.ratio iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

.two-col{display:grid;grid-template-columns:1.05fr .95fr;gap:20px;align-items:start}
.about-card{padding:18px}
.about-avatar{display:grid;justify-items:center;gap:14px;text-align:center}
.about-avatar img{
  width:220px;height:220px;object-fit:cover;object-position:center 35%;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 0 0 6px rgba(255,255,255,.03), 0 25px 60px rgba(0,0,0,.55);
  background:#111;
}
.about-avatar figcaption{font-size:14px;color:var(--muted)}

details.card summary.card-body{padding-bottom:14px}
details.card[open] summary.card-body{border-bottom:1px solid rgba(255,255,255,.08)}

.site-footer{padding:26px 0 38px}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-links{display:flex;gap:14px;align-items:center}

.mobile-actions{display:none;align-items:center;gap:10px}
.icon-btn,
.nav-toggle{
  width:42px;height:42px;border-radius:999px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:var(--text);
}
.icon-btn:hover,.nav-toggle:hover{background:rgba(255,255,255,.12)}
.nav-toggle{padding:0;cursor:pointer}
.nav-toggle-line{width:18px;height:2px;border-radius:2px;background:rgba(255,255,255,.88);display:block}
.nav-toggle-line + .nav-toggle-line{margin-top:5px}
.mobile-menu{position:fixed;inset:0;z-index:200}
.mobile-menu-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(6px)}
.mobile-menu-panel{
  position:absolute;top:10px;right:10px;
  width:min(360px,calc(100% - 20px));
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(15,17,23,.94);
  box-shadow:0 20px 60px rgba(0,0,0,.55);
  padding:14px;
  transform:translateY(-6px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.mobile-menu.is-open .mobile-menu-panel{transform:translateY(0);opacity:1;pointer-events:auto}
.mobile-menu-head{display:flex;align-items:center;justify-content:space-between;padding:6px 4px 10px}
.mobile-title{font-weight:600;color:rgba(255,255,255,.88)}
.mobile-close{
  width:40px;height:36px;border-radius:12px;border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);color:rgba(255,255,255,.9);font-size:20px;line-height:1;cursor:pointer;
}
.mobile-nav{display:grid;gap:10px;padding:8px 4px 12px}
.mobile-nav a{padding:10px;border-radius:14px;color:var(--muted);border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.04)}
.mobile-nav a:hover{background:rgba(255,255,255,.07);color:var(--text)}
.mobile-footer{display:flex;flex-wrap:wrap;gap:10px;padding:6px 4px 2px}

.to-top{
  position:fixed;
  right:16px;
  bottom:86px;
  z-index:220;
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.10);
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  backdrop-filter:blur(8px);
}
.to-top[hidden]{display:none}

.wa-float{display:none}

@media (max-width:768px){
  .wa-float{
    display:grid;
    place-items:center;
    position:fixed;
    right:16px;
    bottom:16px;
    width:60px;
    height:60px;
    border-radius:999px;
    background:#25D366;
    color:#fff;
    z-index:230;
    text-decoration:none;
    box-shadow:0 14px 34px rgba(0,0,0,.35);
    -webkit-tap-highlight-color:transparent;
  }

  .wa-float svg{
    width:30px;
    height:30px;
    display:block;
  }
}
@media (max-width: 768px){
  .hero-grid{
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-media-card{
    order: -1;
    margin-bottom: 6px;
  }

  .hero-copy{
    display: block;
  }
}
@media (max-width: 768px){
  .hero{
    padding-top: 18px;
  }

  .hero-media-card{
    margin-left: -2px;
    margin-right: -2px;
  }
}

@media (max-width:900px){
  .nav{display:none}
  .mobile-actions{display:flex}
  .hero-grid,
  .grid-3,
  .grid-4,
  .grid-2,
  .two-col{grid-template-columns:1fr}
}

@media (max-width:768px){
  .section{padding:56px 0}
  .container{width:min(100% - 24px,var(--container))}
  .header-inner{min-height:68px}
  .brand-name{font-size:15px}
  .hero{padding:34px 0 16px}
  .hero-grid{gap:22px}
  .hero-copy h1{font-size:clamp(30px,8vw,42px)}
  .lead{font-size:16px}
  .hero-video-play{width:82px;height:82px}
  .hero-video-play::before{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 24px;
    background: rgba(255,255,255,.96);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translate(-45%, -50%);
  }
  .hero-video-meta{
    display:grid;
    justify-content:start;
    gap:4px;
    padding:14px 16px 16px;
  }
  .hero-chip{
    width:auto;
    font-size:13px;
    line-height:1.4;
  }
  .hero-chip:last-child{font-size:12.5px}
  .hero-cta .btn{width:100%}
  .about-avatar img{width:180px;height:180px}
  .footer-inner{flex-direction:column;align-items:flex-start}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .mobile-menu-panel{transition:none}
  .hero-video-play:hover,
  .hero-video-play:active{transform:translate(-50%,-50%)}
}


.real-wedding-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.real-wedding-media{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.real-wedding-media picture,
.real-wedding-media img,
.real-wedding-media iframe{
  width: 100%;
  height: 100%;
  display: block;
}

.real-wedding-media img,
.real-wedding-media iframe{
  object-fit: cover;
}

.real-wedding-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.real-wedding-media{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.real-wedding-media picture,
.real-wedding-media img,
.real-wedding-media iframe{
  width: 100%;
  height: 100%;
  display: block;
}

.real-wedding-media img,
.real-wedding-media iframe{
  object-fit: cover;
}

.real-wedding-play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.78);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  overflow: hidden;
  isolation: isolate;
}

.real-wedding-play:hover{
  background: rgba(0,0,0,.86);
  transform: translate(-50%, -50%) scale(1.04);
}

.real-wedding-play:active{
  transform: translate(-50%, -50%) scale(0.97);
}

.real-wedding-play-icon{
  display: block;
  width: 20px;
  height: 24px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(2px);
}

.real-wedding-media.is-loaded .real-wedding-play{
  display: none;
}

@media (max-width: 768px){
  .real-wedding-play{
    width: 82px;
    height: 82px;
  }

  .real-wedding-play-icon{
    width: 21px;
    height: 25px;
  }
}

@font-face{
  font-family:"Inter";
  src:url("../assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Inter";
  src:url("../assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Inter";
  src:url("../assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

/* ============================================================
   AÑADIR AL FINAL DE main.css
   ============================================================ */

/* --- Logo strip --- */
.logo-strip{padding:32px 0 40px}
.logo-eyebrow{
  text-align:center;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--muted-2);
  margin-bottom:22px;
}
.logo-grid{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:32px 48px;
}
.brand-logo{
  height:32px;
  width:auto;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.5;
  transition:opacity .2s;
}
.brand-logo:hover{opacity:.75}
.brand-logo.logo-small{height:22px}

@media(max-width:768px){
  .logo-grid{gap:22px 32px}
  .brand-logo{height:24px}
  .brand-logo.logo-small{height:16px}
}

/* --- Portfolio cards grid --- */
.grid.cards{grid-template-columns:repeat(3,minmax(0,1fr))}
.card-link{display:block;color:inherit;text-decoration:none}
.card-link:hover .thumb img{transform:scale(1.03)}
.thumb{
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111;
}
.thumb img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.section-cta{
  margin-top:32px;
  display:flex;
  justify-content:center;
}

@media(max-width:900px){
  .grid.cards{grid-template-columns:1fr}
}

/* --- Hero media frame (index) --- */
.hero-media{position:relative}
.media-frame{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#0f1117;
  aspect-ratio:16/9;
  box-shadow:var(--shadow);
}
.media-frame video,
.media-frame .media{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.micro{
  margin-top:10px;
  font-size:12px;
  color:var(--muted-2);
  display:flex;
  align-items:center;
  gap:6px;
}
.dot{
  width:7px;height:7px;
  border-radius:50%;
  background:#4ade80;
  display:inline-block;
  flex-shrink:0;
}

/* --- Proceso --- */
.steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-bottom:48px;
}
.step{
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,.10);
  background:var(--card);
  padding:20px 18px;
}
.step-num{
  font-size:30px;
  font-weight:700;
  color:rgba(255,255,255,.12);
  margin:0 0 10px;
  line-height:1;
}
.process-media{
  width:100%;
  max-height:420px;
  overflow:hidden;
  border-radius:20px;
  margin-top:16px;
}
.process-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media(max-width:900px){
  .steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .steps{grid-template-columns:1fr}
}

/* --- Section alt (fondo sutilmente diferente) --- */
.section.alt{background:var(--bg-alt)}

/* --- Separador --- */
.sep{
  border:none;
  border-top:1px solid rgba(255,255,255,.09);
  margin:24px 0;
}

/* --- Contacto --- */
.contact{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:start;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:20px 0 14px;
}
.panel{padding:24px}

@media(max-width:768px){
  .contact{grid-template-columns:1fr}
}

/* --- FAB stack (flotantes móvil) --- */
.fab-stack{
  position:fixed;
  right:16px;
  bottom:20px;
  z-index:220;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  pointer-events:none;
}
.fab{
  pointer-events:auto;
  width:48px;height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.4);
  backdrop-filter:blur(8px);
  cursor:pointer;
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}
.fab:hover{background:rgba(255,255,255,.18)}
.fab-top{border:none;appearance:none}

@media(min-width:769px){
  .fab-stack{display:none}
}

/* --- Vertical video (páginas portfolio) --- */
.vertical-video-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
}
.vertical-video{
  width:100%;
  max-width:340px;
  aspect-ratio:9/16;
  object-fit:cover;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  display:block;
}

@media(max-width:900px){
  .vertical-video{max-width:100%;max-height:480px}
}

/* --- Experiencias grid --- */
.experiencias-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}
@media(max-width:900px){
  .experiencias-grid{grid-template-columns:1fr}
}

/* --- Checklist --- */
.checklist{
  list-style:none;
  padding:0;
  margin:16px 0;
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:15px;
}
.checklist li{
  padding-left:20px;
  position:relative;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:rgba(255,255,255,.4);
}

/* --- Media stack (experiencias page) --- */
.media-panel{}
.media-stack{display:grid;gap:12px}
.media-tile{border-radius:16px;overflow:hidden;background:#111}
.media-tile img{width:100%;height:100%;object-fit:cover;display:block}
.media-tile.is-landscape{aspect-ratio:16/9}
.media-tile.is-portrait{aspect-ratio:4/5}

/* --- Hospitality hero compact --- */
.hero--compact{padding:40px 0 20px}

/* --- CTA box (hospitality) --- */
.section--cta{padding:48px 0}
.cta-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  border:1px solid rgba(255,255,255,.10);
  background:var(--card);
  border-radius:var(--radius);
  padding:32px 36px;
}
.cta-row{display:flex;gap:12px;flex-shrink:0}

@media(max-width:768px){
  .cta-box{grid-template-columns:1fr;padding:24px}
  .cta-row{flex-wrap:wrap}
}