:root{
  --blue:#2AA4E4;
  --orange:#FD9318;
  --ink:#0B0B0B;
  --muted:#5B6570;
  --bg:#ffffff;
  --alt:#F6F1E7;
  --card:#ffffff;
  --line:rgba(11,11,11,.10);
  --shadow: 0 12px 30px rgba(11,11,11,.10);
  --radius:18px;
  --radius2:24px;
  --container: 1120px;
  --serif: "DM Serif Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top:96px}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  -webkit-text-size-adjust:100%;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

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

/* Topbar */
.topbar{background:rgba(42,164,228,.12); border-bottom:1px solid rgba(42,164,228,.25)}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0}
.topbar__left{display:flex; align-items:center; gap:10px; min-width:0}
.topbar__text{color:rgba(11,11,11,.85); font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.topbar__cta{font-weight:600; color:var(--blue); font-size:14px}
.badge{background:rgba(253,147,24,.18); color:#8a4b00; padding:5px 10px; border-radius:999px; font-weight:700; font-size:12px}

/* Header */
.header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.78); backdrop-filter: blur(10px); border-bottom:1px solid rgba(11,11,11,.06)}
.header.scrolled{background:rgba(255,255,255,.92)}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand__logo{width:44px; height:44px; border-radius:12px; box-shadow: 0 6px 18px rgba(0,0,0,.08)}
.brand__title{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:16px}
.nav a{font-size:14px; color:rgba(11,11,11,.78)}
.nav a:hover{color:var(--ink)}

.header__actions{display:flex; align-items:center; gap:10px}

/* --- Mobile header fixes (avoid cramped/overlapping elements) --- */
@media (max-width: 640px){
  /* Let the header break into clean rows */
  .header__inner{flex-wrap:wrap; gap:10px; padding:10px 0}

  /* Brand: keep readable and avoid awkward line breaks */
  .brand{flex:1 1 auto; min-width:140px}
  .brand__tag{display:none}
  .brand__name{font-size:18px; line-height:1.05}

  /* Hamburger should stay on the first row */
  .nav-toggle{margin-left:auto}

  /* Actions move to a second row and share the width */
  .header__actions{order:4; flex:1 1 100%; justify-content:stretch; flex-wrap:wrap}
  .header__actions .btn{flex:1 1 160px; justify-content:center}

  /* Lang toggle stays near actions */
  .lang{order:3}
}

@media (max-width: 420px){
  .header__actions .btn{flex:1 1 140px}
  .btn{padding:10px 12px; font-size:14px}
}

.lang{display:flex; border:1px solid rgba(11,11,11,.12); border-radius:999px; overflow:hidden; background:#fff}
.lang__btn{border:0; background:transparent; padding:8px 10px; font-weight:700; font-size:12px; color:rgba(11,11,11,.65); cursor:pointer}
.lang__btn[aria-pressed="true"]{background:rgba(42,164,228,.14); color:var(--ink)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--orange); color:#1c1207; box-shadow: 0 10px 22px rgba(253,147,24,.25)}
.btn--primary:hover{background:#ff9f2f}
.btn--ghost{background:rgba(255,255,255,.85); border-color:rgba(11,11,11,.14)}
.btn--ghost:hover{border-color:rgba(11,11,11,.22)}

.nav-toggle{display:none; border:0; background:transparent; padding:10px; border-radius:12px; cursor:pointer}
.nav-toggle span{display:block; width:20px; height:2px; background:rgba(11,11,11,.75); margin:4px 0; border-radius:2px}

.mobile-nav{border-top:1px solid rgba(11,11,11,.06); background:rgba(255,255,255,.92)}
.mobile-nav__inner{display:grid; gap:8px; padding:14px 0}
.mobile-nav a{padding:10px 12px; border:1px solid rgba(11,11,11,.10); border-radius:14px; font-weight:600; color:rgba(11,11,11,.75)}

/* Hero */
.hero{position:relative; min-height: calc(100vh - 94px); display:grid; align-items:center}
/* Better mobile viewport handling (address bar) */
@supports (height: 100svh){
  .hero{min-height: calc(100svh - 94px)}
  @media (max-width: 520px){
    .hero{min-height: calc(100svh - 108px)}
  }
}
.hero__media{position:absolute; inset:0; z-index:0}

.hero__media img{transition: opacity .45s ease;}
.hero__media img.is-fading{opacity:0;}
.hero__media img{width:100%; height:100%; object-fit:cover}
.hero__overlay{position:absolute; inset:0; z-index:1; background: linear-gradient(110deg, rgba(11,11,11,.60), rgba(11,11,11,.18) 52%, rgba(11,11,11,.55));}
.hero__content{position:relative; z-index:2; padding:38px 0}
.hero__card{max-width:640px; background:rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.35); border-radius:var(--radius2); box-shadow: var(--shadow); padding:26px}
.hero__title{font-family:var(--serif); font-size:44px; line-height:1.05; margin:0 0 10px}
.hero__subtitle{margin:0 0 18px; color:rgba(11,11,11,.78); font-size:16px; line-height:1.55}
.hero__price{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap; margin:14px 0 18px}
.price{display:flex; align-items:baseline; gap:8px}
.price__label{color:rgba(11,11,11,.6); font-weight:700}
.price__value{font-size:44px; font-weight:900; letter-spacing:-.5px}
.price__unit{color:rgba(11,11,11,.6); font-weight:700}
.hero__note{font-size:13px; color:rgba(11,11,11,.62)}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap}
.hero__trust{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.trust-item{display:flex; align-items:center; gap:8px; font-size:13px; color:rgba(11,11,11,.68); background:rgba(42,164,228,.10); border:1px solid rgba(42,164,228,.18); padding:8px 10px; border-radius:999px}
.trust-dot{width:8px; height:8px; border-radius:999px; background:var(--blue); box-shadow:0 0 0 4px rgba(42,164,228,.18)}

.scroll-hint{position:absolute; left:50%; bottom:18px; transform:translateX(-50%); z-index:2; width:40px; height:56px; border-radius:999px; border:1px solid rgba(255,255,255,.45); background:rgba(255,255,255,.12); display:grid; place-items:center}
.scroll-hint span{display:block; width:6px; height:6px; border-radius:999px; background:#fff; animation:bounce 1.3s infinite}
@keyframes bounce{0%,100%{transform:translateY(10px); opacity:.5}50%{transform:translateY(-10px); opacity:1}}

/* Sections */
.section{padding:64px 0}
.section--alt{background:linear-gradient(180deg, rgba(246,241,231,.60), rgba(246,241,231,1)); position:relative; overflow:hidden}

/* Subtle mola turtle pattern (tone-on-tone)
   - Uses a transparent mask image so it blends with the cream background.
   - mix-blend-mode:multiply keeps it elegant (not "printed" in black).
*/
.section--alt::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("assets/img/mola-turtle.png");
  background-repeat:repeat;
  background-size:545px auto;
  background-position:10px 30px;
  opacity:0.045;
  mix-blend-mode:multiply;
  pointer-events:none;
  z-index:0;
}
.section--alt > .container{position:relative; z-index:1}
.section__head{margin-bottom:22px}
.section__title{font-family:var(--serif); font-size:34px; margin:0 0 8px}
.section__subtitle{margin:0; color:rgba(11,11,11,.68); line-height:1.6}

@media (max-width: 768px){
  .section--alt::before{
    background-size:700px auto;
    background-position:20px 40px;
    opacity:0.035;
  }
}

.grid{display:grid; gap:14px}
.grid--4{grid-template-columns:repeat(4,1fr)}

.card{background:var(--card); border:1px solid rgba(11,11,11,.10); border-radius:var(--radius); box-shadow: 0 8px 18px rgba(11,11,11,.06); padding:18px}
.card__icon{font-size:22px}
.card__title{margin:10px 0 8px; font-size:16px}
.card__text{margin:0; color:rgba(11,11,11,.68); line-height:1.55; font-size:14px}

.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start}
.split--tight{grid-template-columns: 1fr .9fr}

.pricing{margin:14px 0 12px; padding:14px; border-radius:var(--radius); background:rgba(42,164,228,.10); border:1px solid rgba(42,164,228,.18)}
.pricing__price{display:flex; align-items:baseline; gap:6px; font-weight:900}
.pricing__currency{font-size:18px; color:rgba(11,11,11,.75)}
.pricing__value{font-size:42px}
.pricing__unit{font-size:14px; color:rgba(11,11,11,.68); font-weight:700; margin-left:4px}
.pricing__meta{font-size:14px; color:rgba(11,11,11,.72); margin-top:6px}

.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{border:1px solid rgba(11,11,11,.12); background:#fff; padding:8px 10px; border-radius:999px; font-weight:700; font-size:12px; color:rgba(11,11,11,.72)}

.box{background:#fff; border:1px solid rgba(11,11,11,.12); border-radius:var(--radius2); box-shadow: var(--shadow); padding:18px}
.box__grid{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.box__title{margin:0 0 10px; font-size:14px; letter-spacing:.2px}
.list{margin:0; padding-left:16px; display:grid; gap:8px}
.list--muted{color:rgba(11,11,11,.70)}
.box__footer{display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:14px; margin-top:14px; border-top:1px solid rgba(11,11,11,.08); flex-wrap:wrap}
.policy__title{font-weight:800; font-size:12px; color:rgba(11,11,11,.72)}
.policy__text{font-size:13px; color:rgba(11,11,11,.65); line-height:1.45; max-width:560px}

.pickup{margin-top:22px; padding:16px; border-radius:var(--radius); border:1px dashed rgba(11,11,11,.18); background:rgba(255,255,255,.55)}
.pickup__title{margin:0 0 6px; font-size:14px}
.pickup__desc{margin:0 0 10px; font-size:13px; color:rgba(11,11,11,.65)}
.pickup__grid{display:grid; grid-template-columns:repeat(2,1fr); gap:6px}
.pickup__item{font-size:13px; color:rgba(11,11,11,.72)}

/* Form */
.form-card{background:#fff; border:1px solid rgba(11,11,11,.10); border-radius:var(--radius2); box-shadow: var(--shadow); padding:18px}
.form{display:grid; gap:12px}
.form__row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.field{display:grid; gap:6px}
.field__label{font-size:12px; font-weight:800; color:rgba(11,11,11,.70)}
input, select, textarea{
  width:100%;
  border:1px solid rgba(11,11,11,.14);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
  background:#fff;
}
input:focus, select:focus, textarea:focus{border-color:rgba(42,164,228,.55); box-shadow:0 0 0 4px rgba(42,164,228,.12)}
textarea{resize:vertical}
.form__actions{display:flex; gap:10px; flex-wrap:wrap}
.form__fine{margin:2px 0 0; font-size:12px; color:rgba(11,11,11,.62)}
.form__success{margin-top:6px; padding:10px 12px; border-radius:14px; background:rgba(42,164,228,.10); border:1px solid rgba(42,164,228,.18); font-size:13px; color:rgba(11,11,11,.75)}

/* Aside */
.aside{display:grid; gap:12px}
.aside__card{background:#fff; border:1px solid rgba(11,11,11,.10); border-radius:var(--radius2); box-shadow: 0 10px 22px rgba(11,11,11,.08); padding:16px}
.aside__card--ig{background: linear-gradient(180deg, rgba(253,147,24,.10), rgba(42,164,228,.08));}
.aside__title{margin:0 0 8px; font-size:16px}
.steps{margin:0; padding-left:18px; display:grid; gap:8px; color:rgba(11,11,11,.72); line-height:1.5}
.aside__note{margin-top:10px; font-size:12px; color:rgba(11,11,11,.62)}
.aside__text{margin:0 0 10px; color:rgba(11,11,11,.70)}

/* Timeline */
.timeline{display:grid; gap:10px}
.titem{display:grid; grid-template-columns: 140px 1fr; gap:12px; align-items:center; padding:14px; border-radius:var(--radius); background:#fff; border:1px solid rgba(11,11,11,.10); box-shadow:0 8px 18px rgba(11,11,11,.06)}
.titem__time{font-weight:900; color:rgba(11,11,11,.78)}
.titem__text{color:rgba(11,11,11,.72)}

/* Gallery */
.masonry{display:grid; grid-template-columns:repeat(4,1fr); gap:10px}
.photo{padding:0; border:0; background:transparent; border-radius:18px; overflow:hidden; cursor:pointer; position:relative}
.photo img{width:100%; height:220px; object-fit:cover; transition:transform .18s ease}
.photo:hover img{transform:scale(1.03)}

.lightbox{position:fixed; inset:0; background:rgba(11,11,11,.78); display:grid; place-items:center; z-index:60; padding:18px}
.lightbox[hidden]{display:none !important;}
.lightbox__img{max-width:min(100%, 980px); max-height:85vh; border-radius:18px; box-shadow: 0 20px 60px rgba(0,0,0,.4)}
.lightbox__close{position:absolute; top:14px; right:14px; width:44px; height:44px; border-radius:999px; border:1px solid rgba(255,255,255,.30); background:rgba(255,255,255,.10); color:#fff; font-size:26px; cursor:pointer; z-index:2; touch-action:manipulation}

.lightbox{cursor:zoom-out}
.lightbox__img{cursor:default}
body.modal-open{overflow:hidden}
body.modal-open .wa-float{display:none}


/* Accordion */
.accordion{display:grid; gap:10px}
.acc{background:#fff; border:1px solid rgba(11,11,11,.10); border-radius:var(--radius); padding:12px 14px; box-shadow:0 8px 18px rgba(11,11,11,.06)}
.acc summary{cursor:pointer; font-weight:800}
.acc__body{margin-top:8px; color:rgba(11,11,11,.70); line-height:1.55}

/* CTA */
.cta{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:18px; border-radius:var(--radius2); background:linear-gradient(110deg, rgba(42,164,228,.15), rgba(253,147,24,.14)); border:1px solid rgba(11,11,11,.10); box-shadow: var(--shadow); flex-wrap:wrap}
.cta__title{font-family:var(--serif); margin:0 0 6px; font-size:28px}
.cta__text{margin:0; color:rgba(11,11,11,.72)}
.cta__actions{display:flex; gap:10px; flex-wrap:wrap}

.contact-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:14px}
.contact-card{background:#fff; border:1px solid rgba(11,11,11,.10); border-radius:var(--radius); padding:16px; box-shadow:0 8px 18px rgba(11,11,11,.06)}
.contact-card__title{margin:0 0 6px; font-size:14px}
.contact-card__text{margin:0 0 10px; color:rgba(11,11,11,.74)}
.link{color:var(--blue); font-weight:800}
.hint{font-size:12px; color:rgba(11,11,11,.6)}

/* Footer */
.footer{padding:26px 0; border-top:1px solid rgba(11,11,11,.10); background:#fff}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer__left{display:flex; align-items:center; gap:10px}
.footer__logo{width:42px; height:42px; border-radius:12px}
.footer__brand{font-weight:900}
.footer__small{font-size:12px; color:rgba(11,11,11,.62)}
.footer__right{display:flex; gap:12px; flex-wrap:wrap}
.footer__link{font-size:13px; color:rgba(11,11,11,.70)}
.footer__link:hover{color:var(--ink)}
.footer__legal{padding-top:12px; display:flex; gap:10px; flex-wrap:wrap; color:rgba(11,11,11,.58); font-size:12px}
.footer__dot{opacity:.55}

/* Floating WhatsApp */
.wa-float{position:fixed; right:16px; bottom:16px; z-index:70; display:inline-flex; align-items:center; gap:10px; background:rgba(11,11,11,.88); color:#fff; padding:12px 14px; border-radius:999px; box-shadow: 0 18px 44px rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.18)}
.wa-float:hover{background:rgba(11,11,11,.94)}
.wa-float__icon{font-size:16px}
.wa-float__text{font-weight:800; font-size:13px}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .nav-toggle{display:block}
  .grid--4{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .box__grid{grid-template-columns:1fr}
  .masonry{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
  .hero__title{font-size:38px}
}
@media (max-width: 520px){
  .topbar__text{display:none}
  .hero{min-height: calc(100vh - 108px)}
  .hero__card{padding:18px}
  .hero__title{font-size:34px}
  .price__value{font-size:40px}
  /* Stamp/logo: shrink so it doesn't cover the headline on phones */
  .hero__stamp{max-width:170px; top:-44px; right:-10px}
  .form__row{grid-template-columns:1fr}
  .masonry{grid-template-columns:1fr}
  .photo img{height:240px}
  .wa-float__text{display:none}
}



/* Hero "San Blas" stamp overlay */
.hero{ position: relative; }
.hero__stamp{
  position:absolute;
  z-index: 3;
  left: clamp(-4px, -6vw, -8px);
  top: clamp(-32px, -34vh, -38px); /* below header */
  width: min(300px, 50vw);
  pointer-events:none;
  user-select:none;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.28));
  opacity: .98;
}
.hero__stamp img{
  width:100%;
  height:auto;
  display:block;
}
/* On very small screens, reduce size a bit */
@media (max-width: 480px){
  .hero__stamp{ width: min(380px, 78vw); top: 86px; }
}

/* Lightbox navigation arrows */
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:34px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__prev{ left:14px; }
.lightbox__next{ right:14px; }

.lightbox__nav:hover{ background:rgba(0,0,0,.55); }
.lightbox__nav:active{ transform:translateY(-50%) scale(.98); }

/* Mobile: make it easier to tap */
@media (max-width: 640px){
  .lightbox__nav{
    width:52px;
    height:52px;
    font-size:38px;
  }
}


/* Header Instagram button */
.btn--ig{
  /* Instagram-like gradient */
  background: linear-gradient(45deg, #f58529 0%, #dd2a7b 35%, #8134af 70%, #515bd4 100%);
  color: #fff;
  border-color: transparent;
}
.btn--ig:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}


/* Host / Coordinator section */
.host__card{padding:14px}
.host__img{width:100%; height:360px; object-fit:cover; border-radius: calc(var(--radius) - 6px); display:block}
.host__meta{padding-top:12px; display:grid; gap:6px}
.host__name{font-weight:800; font-size:18px}
.host__role{color:rgba(11,11,11,.70); font-size:13px}
.host__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
.btn--sm{padding:10px 12px; font-size:13px}

/* Host social icon buttons (under Alexander photo) */
.host__actions--icons{gap:12px}
.icon-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  transition: transform .15s ease, filter .15s ease;
}
.icon-btn svg{width:22px; height:22px; fill:#fff}
.icon-btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.icon-btn:active{transform: translateY(0px) scale(.98)}

.icon-btn--wa{background:#25D366}
.icon-btn--ig{
  background: linear-gradient(45deg, #f58529 0%, #dd2a7b 35%, #8134af 70%, #515bd4 100%);
}
.icon-btn--tt{background:#111}

@media (max-width: 860px){
  .host__img{height:320px}
}



/* Payment methods (Request sidebar) */
.pay{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.pay__title{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(0,0,0,.72);
}
.pay__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.pay__item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
}
.pay__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(0,0,0,.78);
  background: rgba(0,0,0,.05);
  flex: 0 0 auto;
}
.pay__icon--yappy{
  font-weight: 800;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size: 14px;
}
.pay__text{
  font-size: 14px;
  color: rgba(0,0,0,.86);
}
