:root {
  --ink: #191312;
  --espresso: #241A16;
  --bronze: #C97B57;
  --mauve: #B97B5F;
  --nude: #F1E6DC;
  --ivory: #FBF7F2;
  --grey: #8F7C71;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Jost", sans-serif; font-weight: 300; color: var(--ink); background: var(--ivory); font-size: 16.5px; line-height: 1.65; }
h1, h2, h3, .logo { font-family: "Playfair Display", serif; font-weight: 500; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--bronze); }

.kicker { letter-spacing: 4px; font-size: 12px; font-weight: 400; color: var(--bronze); margin-bottom: 12px; }
.sec-head { text-align: center; max-width: 700px; margin: 0 auto 40px; padding: 0 6vw; }
.sec-head h2, .about h2, .citas h2 { font-size: clamp(32px, 5vw, 48px); line-height: 1.12; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; display: flex; align-items: center; justify-content: space-between; padding: 16px 5vw; color: #fff; transition: background .3s, color .3s, box-shadow .3s; }
.nav.solid { background: rgba(250,246,241,.95); color: var(--ink); backdrop-filter: blur(10px); box-shadow: 0 1px 0 #E5D8CC; }
.logo { font-size: 22px; letter-spacing: 3px; }
.logo span { color: var(--bronze); }
.nav-cta { border: 1.5px solid currentColor; border-radius: 999px; padding: 9px 18px; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 400; }
.nav-cta:hover { background: var(--bronze); border-color: var(--bronze); color: #fff; }

/* HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(rgba(30,22,18,.3), rgba(30,22,18,.15) 40%, rgba(30,22,18,.82)); }
.hero-in { position: relative; z-index: 1; color: #fff; padding: 0 7vw 70px; max-width: 720px; }
.hero h1 { font-size: clamp(42px, 8vw, 72px); line-height: 1.05; margin: 8px 0 14px; }
.hero-sub { color: #EADDD1; margin-bottom: 26px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; background: var(--bronze); color: #fff; padding: 14px 28px; border-radius: 999px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; transition: transform .15s, background .2s; }
.btn:hover { transform: translateY(-1px); background: #A9613F; }
.btn-o { background: transparent; border: 1.5px solid rgba(255,255,255,.8); }
.btn-o:hover { background: rgba(255,255,255,.15); }
.btn-big { padding: 17px 36px; font-size: 14px; }

/* MARQUEE */
.marquee { overflow: hidden; background: var(--espresso); color: var(--nude); }
.marquee-track { display: flex; align-items: center; gap: 36px; white-space: nowrap; width: max-content; padding: 13px 0; animation: slide 28s linear infinite; }
.marquee-track span { font-family: "Playfair Display", serif; font-size: 18px; letter-spacing: 2px; }
.marquee-track i { font-style: normal; color: var(--bronze); font-size: 12px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* SERVICIOS */
.svcs { padding: 90px 6vw 70px; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; max-width: 1050px; margin: 0 auto; }
.svc { background: #fff; border: 1px solid #EADDD0; border-radius: 18px; padding: 28px 26px; transition: transform .2s, box-shadow .25s; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(59,46,42,.1); }
.svc-n { font-family: "Playfair Display", serif; font-size: 26px; color: var(--bronze); }
.svc h3 { font-size: 24px; line-height: 1.2; margin: 8px 0; }
.svc p { color: var(--grey); font-size: 14.5px; }
.svc-note { text-align: center; color: var(--grey); font-size: 14px; margin-top: 28px; }

/* GALERIA */
.work { background: var(--espresso); padding: 80px 0 60px; }
.work .sec-head h2 { color: #fff; }
.gal { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 6vw 18px; -webkit-overflow-scrolling: touch; }
.gal::-webkit-scrollbar { height: 6px; }
.gal::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 3px; }
.gal img { flex: 0 0 auto; width: min(70vw, 360px); aspect-ratio: 3/4; object-fit: cover; border-radius: 14px; scroll-snap-align: center; }
.gal-hint { text-align: center; color: #C8B4A3; letter-spacing: 3px; font-size: 12px; text-transform: uppercase; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: center; max-width: 1000px; margin: 0 auto; padding: 90px 6vw; }
.about > img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #8E9AAB; border-radius: 18px; box-shadow: 0 22px 55px rgba(59,46,42,.18); }
.about-role { color: var(--bronze); font-weight: 400; margin: 4px 0 14px; }
.about-copy p { margin-bottom: 16px; }

/* CITAS */
.citas { background: var(--nude); text-align: center; padding: 90px 7vw; }
.citas p { max-width: 520px; margin: 10px auto 0; }
.pagos { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 24px 0 28px; }
.pagos span { background: #fff; border: 1px solid #E0D0C0; border-radius: 999px; padding: 8px 18px; font-size: 14px; }

/* FOOTER */
.ft { background: var(--espresso); color: var(--nude); text-align: center; padding: 46px 20px; }
.ft .logo { display: block; font-size: 26px; margin-bottom: 8px; }
.ft-line { font-size: 14px; color: #C8B4A3; }
.ft-line a { color: var(--bronze); }
.ft-copy { font-size: 12.5px; color: #9a8574; margin-top: 8px; }

@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about > img { max-width: 380px; margin: 0 auto; }
}

/* MEJORAS v2 */
.script { font-family: "Great Vibes", cursive; font-size: 1.25em; color: #F0BFA3; }
.script-d { font-family: "Great Vibes", cursive; font-size: 1.2em; color: var(--bronze); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.hero > img { animation: kb 18s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.08); } }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: center; padding: 46px 6vw; max-width: 900px; margin: 0 auto; }
.stats b { display: block; font-family: "Playfair Display", serif; font-size: clamp(26px, 5vw, 42px); color: var(--bronze); line-height: 1.1; }
.stats span { font-size: 12.5px; color: var(--grey); letter-spacing: .5px; }

.proceso { background: #fff; padding: 84px 6vw; }
.pasos { max-width: 950px; margin: 0 auto; display: flex; flex-direction: column; gap: 46px; }
.paso { display: grid; grid-template-columns: 0.85fr 1fr; gap: 34px; align-items: center; }
.paso:nth-child(even) { direction: rtl; }
.paso:nth-child(even) > * { direction: ltr; }
.paso figure { position: relative; margin: 0; }
.paso figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; }
.paso figure::after { content: ""; position: absolute; inset: 0; border-radius: 20px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.paso-n { position: absolute; top: -14px; left: -10px; width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--ivory); border: 1.5px solid var(--bronze); color: var(--bronze); border-radius: 50%;
  font-family: "Playfair Display", serif; font-size: 20px; letter-spacing: 1px; }
.paso:nth-child(even) .paso-n { left: auto; right: -10px; }
.paso h3 { font-size: clamp(24px, 4.5vw, 31px); line-height: 1.16; margin-bottom: 10px; }
.paso p { color: #5C4A43; font-size: 15.5px; }
.paso p + p { margin-top: 10px; }
.paso-tip { border-left: 2px solid var(--bronze); padding-left: 12px; color: var(--grey) !important; font-size: 14px !important; font-style: italic; }
.creds { display: flex; align-items: center; gap: 12px; margin: 18px 0 22px; }
.creds img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.creds div { display: flex; flex-direction: column; line-height: 1.35; }
.creds b { font-weight: 500; font-size: 15px; }
.creds span { color: var(--grey); font-size: 13px; }

@media (max-width: 720px) {
  .pasos { gap: 34px; }
  .paso, .paso:nth-child(even) { grid-template-columns: 1fr; gap: 16px; direction: ltr; }
  .paso figure img { aspect-ratio: 5/4; }
  .paso-n { top: -12px; left: -6px; width: 48px; height: 48px; font-size: 18px; }
  .paso:nth-child(even) .paso-n { left: -6px; right: auto; }
}

.faq { padding: 84px 6vw; max-width: 760px; margin: 0 auto; }
.fq { border-bottom: 1px solid #E5D5C5; }
.fq button { width: 100%; background: none; border: none; cursor: pointer; text-align: left; font-family: "Playfair Display", serif; font-size: 20px; font-weight: 500; color: var(--ink); padding: 17px 30px 17px 2px; position: relative; }
.fq button::after { content: "+"; position: absolute; right: 6px; font-size: 23px; color: var(--bronze); transition: transform .25s; }
.fq.open button::after { transform: rotate(45deg); }
.fq p { color: var(--grey); font-size: 15px; padding: 0 2px 17px; display: none; }
.fq.open p { display: block; }
.fq a { color: var(--bronze); }

.fab { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 95; background: var(--espresso); color: #fff; padding: 14px 30px; border-radius: 999px; font-size: 14px; letter-spacing: 1px; box-shadow: 0 12px 34px rgba(59,46,42,.35); animation: fabin .4s ease; }
@keyframes fabin { from { transform: translate(-50%, 60px); opacity: 0; } }
.fab[hidden] { display: none; }


/* BRANDING PR AESTHETIC v3 */
.announce { background: #F1E6DC; color: var(--ink); text-align: center; font-size: 13px; padding: 8px 14px; letter-spacing: .4px; font-family: "Playfair Display", serif; position: relative; z-index: 91; }
.announce b { font-weight: 600; }
.nav { top: 36px; }
.nav.solid { top: 0; }

.slides { position: relative; background: var(--mauve); color: #fff; text-align: center; min-height: 150px; display: grid; place-items: center; padding: 30px 20px 44px; }
.slide { grid-area: 1/1; opacity: 0; transition: opacity .6s; max-width: 560px; }
.slide.is-on { opacity: 1; }
.slide h3 { font-size: 24px; margin-bottom: 5px; color: #fff; }
.slide p { font-size: 14.5px; color: #FBEEEA; }
.dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
.dots span.is-on { background: #fff; }


/* BRANDING BEBA v4 — terracotta + monograma + burger */
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.burger { background: none; border: none; color: inherit; padding: 6px; justify-self: start; cursor: pointer; }
.logo { justify-self: center; display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0; }
.nav-cta { justify-self: end; }
.mono { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1.5px solid currentColor; border-radius: 50%; font-family: "Playfair Display", serif; font-size: 16px; letter-spacing: 1px; }
.wordmark { font-family: "Playfair Display", serif; font-size: 20px; }
.wordmark i { font-family: "Great Vibes", cursive; font-style: normal; font-size: 24px; color: var(--bronze); margin-left: 3px; }
.mono-big { width: 62px; height: 62px; font-size: 24px; color: var(--bronze); border-color: var(--bronze); margin-bottom: 16px; }

.mnav { position: fixed; inset: 0; z-index: 150; }
.mnav[hidden] { display: none; }
.mnav-bg { position: absolute; inset: 0; background: rgba(25,19,18,.55); backdrop-filter: blur(3px); animation: mfade .25s ease; }
@keyframes mfade { from { opacity: 0 } }
.mnav-panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(340px, 88vw); overflow-y: auto;
  background: linear-gradient(170deg, #FFFCF8 0%, var(--ivory) 45%, #F4E9DE 100%);
  padding: 30px 26px 26px; display: flex; flex-direction: column;
  box-shadow: 14px 0 50px rgba(37,26,22,.3); animation: mslide .3s cubic-bezier(.22,.8,.3,1); }
@keyframes mslide { from { transform: translateX(-102%) } }

.mnav-x { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 34px; height: 34px;
  background: rgba(201,123,87,.1); border: none; border-radius: 50%; color: var(--bronze); cursor: pointer; transition: background .2s; }
.mnav-x:hover { background: rgba(201,123,87,.22); }

.mnav-head { padding-bottom: 20px; border-bottom: 1px solid #E8DACC; }
.mnav-head .mono-big { margin-bottom: 12px; }
.mnav-brand { font-family: "Playfair Display", serif; font-size: 21px; letter-spacing: 3px; line-height: 1; }
.mnav-brand i { font-style: normal; color: var(--bronze); }
.mnav-tag { color: var(--grey); font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; margin-top: 7px; }

.mnav-links { display: flex; flex-direction: column; padding: 6px 0; }
.mnav-links a { position: relative; display: block; padding: 14px 8px 14px 0;
  border-bottom: 1px solid #EFE3D6; transition: padding-left .2s, color .2s; }
.mnav-links a:last-child { border-bottom: none; }
.mnav-links a b { display: block; font-family: "Playfair Display", serif; font-weight: 500; font-size: 24px; line-height: 1.1; color: var(--ink); transition: color .2s; }
.mnav-links a small { display: block; color: var(--grey); font-size: 12.5px; margin-top: 3px; }
.mnav-links a:hover { padding-left: 6px; }
.mnav-links a:hover b { color: var(--bronze); }

.mnav-foot { margin-top: auto; padding-top: 22px; border-top: 1px solid #E8DACC; }
.mnav-loc { color: var(--grey); font-size: 13px; line-height: 1.5; }
.mnav-social { display: flex; align-items: center; gap: 8px; margin: 12px 0 16px; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; }
.mnav-social a { color: var(--bronze); }
.mnav-social a:hover { text-decoration: underline; }
.mnav-social span { color: #D9C4B2; }
.mnav-btn { display: block; text-align: center; font-size: 12.5px !important; color: #fff !important; }
@media (max-width: 560px) {
  .wordmark { display: none; }
  .mono { width: 44px; height: 44px; font-size: 17px; }
}
.citas-tour { display: inline-block; margin-top: 10px; font-size: 14px; color: var(--bronze); font-weight: 400; }
.pagos span { background: none; border: 1px solid #D9BFA8; color: var(--grey); border-radius: 999px; padding: 7px 20px; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; }
.citas-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-line2 { background: transparent; border: 1.5px solid var(--bronze); color: var(--bronze); }
.btn-line2:hover { background: var(--bronze); color: #fff; }

/* LISTA DE SERVICIOS BOOKSY */
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 18px; -webkit-overflow-scrolling: touch; max-width: 900px; margin: 0 auto; }
.chips a { flex: 0 0 auto; border: 1.5px solid var(--bronze); color: var(--bronze); padding: 7px 16px; border-radius: 999px; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.chips a:hover { background: var(--bronze); color: #fff; }
.svc-cat { font-size: 27px; margin: 34px auto 10px; max-width: 900px; border-bottom: 2px solid #EADDD0; padding-bottom: 6px; scroll-margin-top: 120px; }
.slist { max-width: 900px; margin: 0 auto; }
.srow { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 13px 4px; border-bottom: 1px solid #F0E4D6; color: var(--ink); transition: background .15s; }
.srow:hover { background: #fff; }
.srow-n { font-size: 15.5px; }
.srow-p { font-family: "Playfair Display", serif; font-size: 17px; color: var(--bronze); white-space: nowrap; }
.srow-p small { font-family: "Jost", sans-serif; font-size: 12px; color: var(--grey); }

/* SEARCH + CATGRID */
.nav-right { display: flex; align-items: center; gap: 10px; justify-self: end; }
.searchbtn { background: none; border: none; color: inherit; padding: 6px; cursor: pointer; }
.search-wrap { position: fixed; inset: 0; z-index: 160; }
.search-wrap[hidden] { display: none; }
.search-box { position: absolute; top: 0; left: 0; right: 0; background: var(--ivory); padding: 18px; box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.search-box input { width: 100%; font: 16px "Jost", sans-serif; padding: 13px 16px; border: 1.5px solid var(--bronze); border-radius: 12px; background: #fff; color: var(--ink); outline: none; }
#searchResults a { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 6px; border-bottom: 1px solid #F0E4D6; color: var(--ink); }
#searchResults a small { color: var(--bronze); white-space: nowrap; font-size: 12.5px; }
#searchResults .nores { padding: 14px 6px; color: var(--grey); font-size: 14px; }
.catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; max-width: 900px; margin: 0 auto 34px; }
.catcard { position: relative; border-radius: 14px; overflow: hidden; }
.catcard img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.catcard:hover img { transform: scale(1.05); }
.catcard span { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 10px 9px; color: #fff; font-family: "Playfair Display", serif; font-size: 15px; text-align: center; background: linear-gradient(transparent, rgba(25,19,18,.75)); }

/* CONTRASTE v5 — monograma BB + kicker del hero legibles sobre la foto */
.nav .logo .mono { color: inherit; border-color: currentColor; border-width: 2px; }
.nav:not(.solid) .logo .mono { background: rgba(25,19,18,.28); box-shadow: 0 2px 14px rgba(0,0,0,.35); }
.nav:not(.solid) .burger,
.nav:not(.solid) .searchbtn,
.nav:not(.solid) .nav-cta { filter: drop-shadow(0 1px 8px rgba(0,0,0,.5)); }
.hero-veil { background: linear-gradient(rgba(30,22,18,.52), rgba(30,22,18,.2) 42%, rgba(30,22,18,.86)); }
.hero .kicker { color: #F7E6DA; font-size: 12.5px; letter-spacing: 3.4px; text-shadow: 0 1px 12px rgba(0,0,0,.6); }

/* ===== PÁGINAS INTERNAS (servicios / ofertas / detalle) ===== */
body.has-bar { padding-bottom: 70px; }
body.has-bar .nav { position: static; color: var(--ink); }
body.has-bar .chips { top: 0; }
body.has-bar .cat-h, body.has-bar .svc-cat { scroll-margin-top: 60px; }

.page { max-width: 1050px; margin: 0 auto; padding: 30px 6vw 60px; }
.page > .kicker { margin-bottom: 4px; }
.page h1 { font-size: clamp(34px, 7vw, 48px); line-height: 1.1; }
.page-sub { color: var(--grey); margin: 6px 0 18px; font-size: 15px; }

.chips { position: sticky; top: 72px; background: var(--ivory); z-index: 40; padding-top: 10px; }
.cat-blurb { color: var(--grey); font-size: 14.5px; max-width: 640px; margin: -4px auto 16px; }
.svcgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 14px; max-width: 900px; margin: 0 auto; }
.svc { display: block; background: #fff; border: 1px solid #EADDD0; border-radius: 16px; overflow: hidden; padding: 0 0 12px; transition: transform .18s, box-shadow .25s; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(59,46,42,.12); }
.svc img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 9px; }
.svc-t { display: block; font-size: 14.5px; line-height: 1.32; padding: 0 12px; }
.svc-p { display: block; font-family: "Playfair Display", serif; font-size: 17px; color: var(--bronze); padding: 5px 12px 0; }
.svc-p small { font-family: "Jost", sans-serif; font-size: 11.5px; color: var(--grey); }

.svc-cat, .cat-h { font-family: "Playfair Display", serif; font-weight: 500; font-size: 27px; margin: 36px auto 8px; max-width: 900px; border-bottom: 2px solid #EADDD0; padding-bottom: 6px; scroll-margin-top: 130px; }
.cat-blurb { max-width: 900px; }

.prod .back { display: inline-block; margin-bottom: 18px; font-size: 14px; color: var(--bronze); letter-spacing: 1px; text-transform: uppercase; }
.prod-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 34px; align-items: start; }
.prod-grid > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 20px; }
.prod h1 { font-size: clamp(28px, 6vw, 40px); line-height: 1.12; margin-bottom: 8px; }
.prod-price { font-family: "Playfair Display", serif; font-size: 30px; color: var(--bronze); margin-bottom: 20px; }
.prod-price small { font-family: "Jost", sans-serif; font-size: 14px; color: var(--grey); }
.prod-btns { justify-content: flex-start; margin-bottom: 22px; }
.prod-desc { color: #5C4A43; }
.prod-meta { color: var(--grey); font-size: 13.5px; margin-top: 14px; }

.svcs-cta { text-align: center; margin-top: 28px; }
.flyer { max-width: 520px; margin: 44px auto 0; text-align: center; }
.flyer img { border-radius: 18px; width: 100%; }
.flyer figcaption { color: var(--grey); font-size: 14px; margin: 12px 0 16px; }
.sec-sub { color: var(--grey); font-size: 15px; margin-top: 8px; }
.ft-nav { font-size: 13.5px; margin-top: 6px; }
.ft-nav a { color: var(--bronze); }

@media (max-width: 700px) {
  .prod-grid { grid-template-columns: 1fr; gap: 22px; }
  .chips { top: 66px; }
}

.mnav-rate { display: flex; flex-direction: column; gap: 3px; margin: 18px 0 4px; padding: 14px 16px;
  background: rgba(255,255,255,.6); border: 1px solid #EADDD0; border-radius: 14px; }
.mnav-stars { color: var(--bronze); font-size: 14px; letter-spacing: 3px; }
.mnav-rate span:last-child { color: var(--grey); font-size: 12.5px; }
.mnav-rate b { color: var(--ink); font-weight: 500; }
