/* balanced living hub — child theme css */
/* derived from bluestrap-child base, palette retuned */

:root{
  --bs-primary: #2C5F4E;
  --bs-secondary: #B8956A;
  --bs-dark: #2a2520;
  --bs-light: #f5f0e8;
  --bs-font-sans-serif: "Lora", Georgia, "Times New Roman", serif;
  --bs-font-display: "Cormorant Garamond", "Lora", Georgia, serif;
}

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&family=Dancing+Script:wght@500;600&display=swap');

*,*::before,*::after{-webkit-box-sizing:border-box;box-sizing:border-box}
@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}

body{
  margin:0;
  font-family:var(--bs-font-sans-serif);
  font-size:calc(1.0rem + 0.18vw);
  font-weight:400;
  line-height:1.6;
  color:#2a2520;
  background-color:#fdfbf7;
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:rgba(0,0,0,0)
}
@media(min-width: 1200px){body{font-size:1.125rem}}

h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{
  margin-top:0;
  margin-bottom:.5rem;
  font-weight:600;
  line-height:1.2;
  font-family: var(--bs-font-display);
}
h1,.h1{font-size:calc(1.525rem + 3.0vw)}
@media(min-width: 1200px){h1,.h1{font-size:3.6rem}}
h2,.h2{font-size:calc(1.4rem + 2.0vw)}
@media(min-width: 1200px){h2,.h2{font-size:2.8rem}}
h3,.h3{font-size:calc(1.35rem + 1.5vw)}
@media(min-width: 1200px){h3,.h3{font-size:2.4rem}}
h4,.h4{font-size:calc(1.3rem + 0.9vw)}
@media(min-width: 1200px){h4,.h4{font-size:1.9rem}}

p{margin-top:0;margin-bottom:1rem}
a{color:#2C5F4E;text-decoration:underline}
a:hover{color:#1d4034}

img,svg{vertical-align:middle}

.container,.container-fluid{
  width:100%;
  padding-right:0.75rem;
  padding-left:0.75rem;
  margin-right:auto;
  margin-left:auto
}
@media(min-width: 576px){.container{max-width:540px}}
@media(min-width: 768px){.container{max-width:720px}}
@media(min-width: 992px){.container{max-width:960px}}
@media(min-width: 1200px){.container{max-width:1140px}}
@media(min-width: 1400px){.container{max-width:1280px}}

.row{
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display:flex;
  flex-wrap:wrap;
  margin-top:calc(var(--bs-gutter-y) * -1);
  margin-right:calc(var(--bs-gutter-x) * -.5);
  margin-left:calc(var(--bs-gutter-x) * -.5)
}
.row>*{
  flex-shrink:0;
  width:100%;
  max-width:100%;
  padding-right:calc(var(--bs-gutter-x) * .5);
  padding-left:calc(var(--bs-gutter-x) * .5);
  margin-top:var(--bs-gutter-y)
}

.col-12{flex:0 0 auto;width:100%}
@media(min-width: 768px){
  .col-md-6{flex:0 0 auto;width:50%}
}
@media(min-width: 992px){
  .col-lg-5{flex:0 0 auto;width:41.6666666667%}
  .col-lg-6{flex:0 0 auto;width:50%}
  .col-lg-7{flex:0 0 auto;width:58.3333333333%}
}

/* utility classes — bs subset */
.d-none{display:none !important}
.d-block{display:block !important}
.d-flex{display:flex !important}
.justify-content-center{justify-content:center !important}
.justify-content-between{justify-content:space-between !important}
.justify-content-start{justify-content:flex-start !important}
.align-items-center{align-items:center !important}
.flex-column{flex-direction:column !important}
.flex-column-reverse{flex-direction:column-reverse !important}
.text-center{text-align:center !important}
.text-white{color:#fff !important}
.text-black{color:#000 !important}
.mb-5{margin-bottom:3rem !important}
.mb-md-5{margin-bottom:0 !important}
.pt-5{padding-top:3rem !important}
.p-5{padding:3rem !important}
.me-2{margin-right:.5rem !important}
.ms-2{margin-left:.5rem !important}
@media(min-width: 768px){
  .mb-md-5{margin-bottom:3rem !important}
  .text-md-left{text-align:left !important}
  .flex-md-row{flex-direction:row !important}
  .justify-content-md-end{justify-content:flex-end !important}
  .align-items-md-center{align-items:center !important}
}
@media(min-width: 992px){
  .order-lg-1{order:1 !important}
}
@media(min-width: 1200px){
  .d-xl-flex{display:flex !important}
  .d-xl-none{display:none !important}
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.visually-hidden{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* === FIXED TOP HEADER === */
header#banner.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: rgba(42, 37, 32, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.nav-spacer {
    height: 78px;
}

#topNav.navbar {
    padding: 14px 0;
}
#topNav.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-wrapper img.white-logo { display: block; max-height:34px; width:auto; filter: brightness(0) invert(1); }

.navbar-nav {
    display:flex;
    list-style:none;
    padding:0;
    margin:0;
    align-items:center;
}
.navbar-nav.desktop-nav .nav-link {
    color: #f5f0e8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 0 16px;
    border-left: 1px solid rgba(245,240,232,0.22);
    text-decoration:none;
    transition: color .25s;
    font-family: var(--bs-font-sans-serif);
}
.navbar-nav.desktop-nav .nav-link:hover{
    color:#B8956A;
}
.navbar-nav.desktop-nav li:first-child .nav-link{border-left:0}

.hamburger {
    background: transparent;
    border: 0;
    padding: 0;
    cursor:pointer;
}
.hamburger svg path { fill: #f5f0e8; }

#expandedNav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    min-height: 100vh;
    background: #fdfbf7;
    z-index: 2000;
    display:none;
    padding: 20px 0;
}
#expandedNav.show{display:block}
#expandedNav .exp-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 22px;
    border-bottom: 1px solid #e5dcce;
}
#expandedNav .x-button{
    background:transparent;
    border:0;
    font-size:34px;
    line-height:1;
    color:#2a2520;
    cursor:pointer;
    padding:0 6px;
}
#expandedNav .logo-wrapper img{max-height:44px;width:auto}

ul.drop-nav {
    padding: 30px 0;
    list-style: none;
    margin:0;
    display:block !important;
}
ul.drop-nav li {
    margin:0;
}
ul.drop-nav li a.nav-link {
    display: block;
    padding: 16px 0;
    color: #2a2520;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #e5dcce;
    text-decoration: none;
    font-size: 14px;
}

/* === HERO BLOCK === */
.hero-block {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(42,37,32,.45) 0%, rgba(42,37,32,.72) 100%),
      url("../resources/hero-bg.webp") center/cover no-repeat,
      #2a2520;
    display:flex;
    align-items:center;
}

.hero-block .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width:100%;
    padding: 90px 20px 70px;
    max-width:980px;
    margin:0 auto;
}

.hero-block h1 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.2rem;
}

.hero-block .euibe-script {
    display: block;
    font-family: 'Dancing Script', 'Lucida Handwriting', cursive;
    font-size: 0.45em;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 14px;
    color: #B8956A;
}

.hero-block .nobreak { display:block; }

.hero-block .hero-sub{
    max-width:640px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height:1.65;
}

/* === BUTTONS === */
.btn-link-lg {
    display: inline-block;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 0;
    border-radius: 0;
    transition: all 0.3s;
    font-family: var(--bs-font-sans-serif);
}

.btn-link-sm {
    display: inline-block;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 0;
}

.btn-red {
    background: #2C5F4E;
    color: #fff;
}
.btn-red:hover {
    background: #1d4034;
    color: #fff;
}

.button-module {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap:wrap;
}
.button-module.justify-content-start { justify-content: flex-start; }
.button-module li { margin: 0; }

/* === FOOTER === */
footer.site-footer {
    background: #2a2520;
    color: #f5f0e8;
    padding: 64px 0 0;
    margin-top: 80px;
}

.site-footer .footer-logo {
    margin-bottom: 22px;
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-footer .footer-tag{
    color: rgba(245,240,232,0.65);
    font-size: 14px;
    line-height:1.55;
    max-width:300px;
}

.site-footer h2.subtitle-2 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 18px;
    color: #B8956A;
    font-family: var(--bs-font-sans-serif);
}

.site-footer nav{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media(max-width:767px){
  .site-footer nav{grid-template-columns:1fr;gap:24px}
}

.site-footer nav ul.menu {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.site-footer nav ul.menu li {
    margin-bottom: 9px;
}
.site-footer nav ul.menu a {
    color: rgba(245,240,232,0.72);
    text-decoration: none;
    font-size: 14px;
    transition:color .25s;
}
.site-footer nav ul.menu a:hover { color: #B8956A; }

.sub-footer {
    padding: 22px 0;
    background: #1f1b18;
    font-size: 12px;
    color: rgba(245,240,232,0.55);
    margin-top:40px;
}
.sub-footer .terms-privacy a {
    color: rgba(245,240,232,0.55);
    text-decoration: none;
    margin: 0 5px;
    letter-spacing: 0.8px;
}
.sub-footer .terms-privacy a:hover{color:#B8956A}
.sub-footer .separator { opacity: 0.4; margin: 0 5px; }

/* === MEDIA QUERIES === */
@media (max-width: 1199px) {
    .desktop-nav { display: none !important; }
    .mobile-nav { display: block; }
}
@media (min-width: 1200px) {
    .mobile-nav { display: none; }
}
@media (max-width: 991px) {
    .hero-block { min-height: 78vh; }
    .hero-block .content { padding-top: 70px; }
}
@media (max-width: 767px) {
    .hero-block h1 { font-size: 38px; letter-spacing:1.5px; }
    .hero-block .hero-sub{ font-size: 0.98rem; }
    .site-footer { padding: 44px 0 0; }
    .sub-footer .container{gap:14px}
    .sub-footer .terms-privacy{margin: 8px 0}
}

/* ============================================================ */
/* SECTIONS — added in second pass                              */
/* ============================================================ */

.basic-full-width-block{
    padding: 80px 0;
    position: relative;
}
.basic-two-column{
    padding: 70px 0;
}
.basic-two-column .text-col{
    padding-left: 24px;
    padding-right: 24px;
}
.basic-two-column .image-col{
    padding-left: 24px;
    padding-right: 24px;
}

.bg-cream     { background: #f5f0e8; }
.bg-dark-soft { background: #2a2520; color:#f5f0e8; }
.bg-accent    { background: linear-gradient(135deg,#2C5F4E 0%, #1d4034 100%); color:#fff; }

.section-lead{
    max-width: 640px;
    margin: 8px auto 36px;
    color: #5a4f44;
    font-size: 1.02rem;
}
.text-center-md{ text-align: left; }
@media(min-width:768px){ .text-center-md{ text-align: center; } }

h2.left-border, .h3.left-border{
    position: relative;
    padding-left: 16px;
    margin-bottom: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
h2.left-border::before, .h3.left-border::before{
    content: '';
    position: absolute;
    top: 6px; left: 0;
    width: 4px;
    height: calc(100% - 12px);
    background: #B8956A;
}
.basic-full-width-block .content h2,
.basic-full-width-block .content h3{
    margin-bottom: 18px;
}

/* === GOODS GRID === */
.goods-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 18px;
}
@media(max-width:1199px){ .goods-grid{ grid-template-columns: repeat(3, 1fr); } }
@media(max-width:991px) { .goods-grid{ grid-template-columns: repeat(2, 1fr); gap:18px } }
@media(max-width:520px) { .goods-grid{ grid-template-columns: 1fr; } }

.good-card{
    background: #fff;
    border: 1px solid #e8dfd0;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.good-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(42,37,32,0.10);
}
.good-img{
    width:100%;
    aspect-ratio: 4 / 3;
    background:#e8dfd0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
}
.good-img--01{ background-image: url("../resources/g01-cortina-adelita.webp"); background-color:#d8c8a8; }
.good-img--02{ background-image: url("../resources/g02-sabanas-cantera.webp"); background-color:#b8a890; }
.good-img--03{ background-image: url("../resources/g03-almohada-sereno.webp"); background-color:#e6dac4; }
.good-img--04{ background-image: url("../resources/g04-tul-margarita.webp"); background-color:#f0e4d2; }
.good-img--05{ background-image: url("../resources/g05-cojin-talavera.webp"); background-color:#a89878; }
.good-img--06{ background-image: url("../resources/g06-edredon-ocotillo.webp"); background-color:#c8b8a0; }
.good-img--07{ background-image: url("../resources/g07-cortina-tarahumara.webp"); background-color:#3d3530; }
.good-img--08{ background-image: url("../resources/g08-funda-sotol.webp"); background-color:#9bab90; }
.good-img--09{ background-image: url("../resources/g09-almohada-tepehuan.webp"); background-color:#d4c8b4; }
.good-img--10{ background-image: url("../resources/g10-tul-niebla.webp"); background-color:#ece4d4; }
.good-img--11{ background-image: url("../resources/g11-sobrecama-ferrocarril.webp"); background-color:#8a7a64; }
.good-img--12{ background-image: url("../resources/g12-cojines-mercado.webp"); background-color:#c08868; }

.good-body{
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex:1;
}
.good-name{
    font-family: var(--bs-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 6px;
    color:#2a2520;
    line-height:1.25;
}
.good-desc{
    font-size: 0.92rem;
    color: #5a4f44;
    margin: 0 0 14px;
    line-height:1.5;
}
.good-tech{
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    border-top: 1px dashed #d8cdb8;
}
.good-tech li{
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px dashed #ece2d0;
    color: #4a4035;
    display:flex;
    justify-content:space-between;
    gap:10px;
}
.good-tech li span{
    color: #8a7a64;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: .72rem;
    font-weight:600;
}
.good-foot{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap:wrap;
}
.good-price{
    font-family: var(--bs-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #2C5F4E;
}

/* === STORE PHOTO BOX === */
.store-photo{
    width:100%;
    aspect-ratio: 5 / 4;
    background-image: url("../resources/store-photo.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #c8b8a0;
    border:1px solid #d8cdb8;
    position:relative;
}
.store-photo::after{
    content: 'foto del sótano-tienda';
    position:absolute;
    bottom: 14px; left: 16px;
    background: rgba(42,37,32,0.78);
    color: #f5f0e8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 6px 10px;
}
.services-line{
    background:#fff8ee;
    border-left: 3px solid #B8956A;
    padding: 14px 18px;
    font-size: .95rem;
}

/* === STORY SECTION === */
.story-lead{
    max-width: 720px;
    margin: 0 auto 16px;
    font-size: 1.08rem;
    color: rgba(245,240,232,0.85);
    line-height:1.65;
}

/* === FAQ === */
.faq-list{
    max-width: 820px;
    margin: 24px auto 0;
}
.faq-item{
    background:#fff;
    border:1px solid #e8dfd0;
    margin-bottom: 12px;
    padding: 0;
}
.faq-item summary{
    cursor:pointer;
    list-style:none;
    padding: 16px 22px;
    font-weight: 600;
    color: #2a2520;
    position:relative;
    font-size: 1rem;
    line-height:1.4;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
    content: '+';
    position:absolute;
    right: 22px; top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #B8956A;
    transition: transform .2s;
}
.faq-item[open] summary::after{
    content: '−';
}
.faq-item p{
    padding: 0 22px 18px;
    margin:0;
    color: #5a4f44;
    font-size: .96rem;
    line-height: 1.6;
}

/* === WHY GRID === */
.why-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 26px;
}
@media(max-width:991px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:520px){ .why-grid{ grid-template-columns: 1fr; } }

.why-cell{
    padding: 26px 20px 22px;
    background: #fff;
    border-top: 3px solid #B8956A;
}
.why-num{
    font-family: var(--bs-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #B8956A;
    display:block;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.why-cell h4{
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: #2a2520;
}
.why-cell p{
    font-size: .92rem;
    color: #5a4f44;
    margin: 0;
    line-height:1.55;
}

/* === BUTTON CREAM (used in CTA on dark/colored bg) === */
.btn-cream{
    background:#f5f0e8;
    color:#2a2520;
}
.btn-cream:hover{
    background:#e8dfd0;
    color:#1d4034;
}

/* === MAP / CONTACT === */
.map-wrap{
    border:1px solid #e8dfd0;
    overflow:hidden;
}
.hours-block{
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed #d8cdb8;
}
.hours-block h4{
    font-size: 1.05rem;
    margin: 0 0 10px;
}
.hours-list{
    list-style:none;
    padding:0;
    margin: 0 0 14px;
}
.hours-list li{
    display:flex;
    justify-content:space-between;
    padding: 6px 0;
    border-bottom:1px dashed #ece2d0;
    font-size: .94rem;
}
.hours-list li span{
    color: #8a7a64;
    font-weight:600;
}
.contact-block p{
    margin: 4px 0;
    font-size: .95rem;
}

/* === HIRING JOBS LINE === */
.jobs-line{
    list-style: none;
    padding: 0;
    margin: 18px auto 24px;
    max-width: 660px;
    text-align: left;
}
.jobs-line li{
    padding: 10px 0;
    border-bottom: 1px dashed rgba(245,240,232,0.18);
    font-size: .98rem;
}
.jobs-line li:last-child{ border-bottom:0 }

/* ============================================================ */
/* CART FAB + MODAL                                             */
/* ============================================================ */

.cart-fab{
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #2C5F4E;
    color: #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    cursor:pointer;
    z-index: 900;
    transition: transform .2s, background .2s;
}
.cart-fab:hover{ background:#1d4034; transform: translateY(-2px); }
.cart-fab.pulse{ animation: pulse 0.4s ease; }
@keyframes pulse{
    0%{ transform: scale(1); }
    50%{ transform: scale(1.18); }
    100%{ transform: scale(1); }
}
.cart-count{
    position: absolute;
    top: -4px; right: -4px;
    background: #B8956A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 11px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-back{
    position: fixed;
    inset: 0;
    background: rgba(20,16,12,0.62);
    z-index: 1100;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 16px 30px;
    overflow-y: auto;
}
.modal-back.open{ display: flex; }

.modal-pane{
    background: #fdfbf7;
    width: 100%;
    max-width: 640px;
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    overflow:hidden;
}
.modal-head{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: #2a2520;
    color: #f5f0e8;
}
.modal-head h3{
    margin:0;
    font-size: 1.3rem;
    color: #f5f0e8;
}
.modal-x{
    background:transparent;
    border:0;
    color:#f5f0e8;
    font-size: 30px;
    line-height:1;
    cursor:pointer;
    padding: 0 4px;
}
.modal-body{
    padding: 22px;
}

.cart-empty{
    color: #5a4f44;
    text-align: center;
    padding: 18px 0 6px;
    font-style: italic;
}
.cart-row{
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e8dfd0;
}
.cart-row:last-child{ border-bottom: 0; }
.cart-name{
    font-size: .95rem;
    color: #2a2520;
}
.cart-qty{
    display:flex;
    align-items:center;
    gap: 8px;
}
.qty-btn{
    width: 26px;
    height: 26px;
    border:1px solid #d8cdb8;
    background:#fff;
    cursor:pointer;
    font-weight:700;
    color: #2C5F4E;
}
.cart-qty span{
    min-width: 22px;
    text-align:center;
    font-weight:600;
}
.cart-line{
    font-weight: 600;
    color: #2C5F4E;
    font-size: .92rem;
    min-width: 90px;
    text-align: right;
}
.cart-rm{
    background:transparent;
    border:0;
    color:#a04050;
    font-size: 22px;
    cursor:pointer;
    line-height:1;
}
.cart-total{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin-top: 8px;
    border-top: 2px solid #2a2520;
    font-size: 1.1rem;
}
.cart-total strong{
    font-family: var(--bs-font-display);
    font-size: 1.35rem;
    color: #2C5F4E;
}

.order-form{
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed #d8cdb8;
}
.order-form h4{
    margin: 0 0 14px;
    font-size: 1.1rem;
}
.order-form label{
    display: block;
    margin-bottom: 12px;
    font-size: .85rem;
    color: #5a4f44;
    font-weight:600;
    letter-spacing: .3px;
}
.order-form input,
.order-form textarea{
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 9px 12px;
    border:1px solid #d8cdb8;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    color: #2a2520;
    background: #fff;
    font-weight: 400;
}
.order-form input:focus,
.order-form textarea:focus{
    outline: 0;
    border-color: #2C5F4E;
    box-shadow: 0 0 0 3px rgba(44,95,78,0.18);
}
.field-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media(max-width:520px){ .field-row{ grid-template-columns: 1fr; } }

.form-error{
    color: #a04050;
    font-size: .9rem;
    min-height: 1.3em;
    margin: 0 0 10px;
}
#orderSubmit{
    width: 100%;
    margin-top: 8px;
    cursor:pointer;
    border:0;
}
#orderSubmit:disabled{ opacity:.6; cursor: not-allowed; }

/* === THANKS === */
.thanks-back{
    position: fixed;
    inset: 0;
    background: rgba(20,16,12,0.65);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.thanks-back.open{ display: flex; }
.thanks-pane{
    background: #fdfbf7;
    max-width: 440px;
    width: 100%;
    padding: 36px 28px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.thanks-mark{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #2C5F4E;
    color: #fff;
    font-size: 32px;
    line-height: 64px;
    margin: 0 auto 18px;
}
.thanks-pane h3{
    margin: 0 0 12px;
    font-size: 1.6rem;
}
.thanks-pane p{
    color: #5a4f44;
    font-size: .98rem;
    line-height: 1.55;
    margin: 0 0 12px;
}
.thanks-small{
    font-style: italic;
    color: #8a7a64;
    margin-bottom: 20px;
    font-size: .9rem;
}
#thanksClose{ cursor:pointer; border:0; }

/* ============================================================ */
/* COOKIE BAR                                                   */
/* ============================================================ */
.cookie-bar{
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    background: #2a2520;
    color: #f5f0e8;
    padding: 16px 0;
    z-index: 800;
    transform: translateY(110%);
    transition: transform .35s ease;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.cookie-bar.open{
    transform: translateY(0);
}
.cookie-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text{
    margin: 0;
    font-size: .92rem;
    color: rgba(245,240,232,0.85);
    flex: 1;
    min-width: 240px;
}
.cookie-text a{
    color: #B8956A;
}
.cookie-btns{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-btns button{
    cursor: pointer;
    border: 0;
}
@media(max-width:640px){
    .cookie-row{ flex-direction: column; align-items: flex-start; }
    .cookie-btns{ width: 100%; }
    .cookie-btns button{ flex: 1; }
}

/* intro band — texto introductorio gus */
.intro-band{
    padding: 70px 0 50px;
    background: #f5f0e8;
}
.intro-wrap{
    max-width: 760px;
    margin: 0 auto;
}
.intro-kicker{
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 0.78rem;
    color: #B8956A;
    margin: 0 0 14px;
    font-weight: 700;
}
.intro-body{
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3d352c;
    margin: 0 0 16px;
}
.intro-body:first-letter{
    font-family: var(--bs-font-display);
    font-size: 3rem;
    float: left;
    line-height: 0.9;
    padding: 4px 10px 0 0;
    color: #2C5F4E;
    font-weight: 600;
}
.intro-body + .intro-body:first-letter{
    font-size: inherit; float:none; padding: 0; color: inherit; line-height: inherit;
}
.intro-foot{
    text-align: right;
    font-style: italic;
    color: #8a7a64;
    margin: 4px 0 0;
    font-size: 0.95rem;
}
@media(max-width:600px){
    .intro-body{ font-size: 0.98rem; }
    .intro-body:first-letter{ font-size: 2.4rem; }
}

/* ============================================================ */
/* SUBPAGES — page hero + legal + gallery + about + jobs        */
/* ============================================================ */

.page-hero{
    background: linear-gradient(135deg, #2C5F4E 0%, #1d4034 100%);
    color: #f5f0e8;
    padding: 90px 0 60px;
    margin-top: 0;
    text-align: center;
}
.page-hero h1{
    font-size: 2.4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px;
}
@media(min-width:768px){ .page-hero h1{ font-size: 3rem; } }
.page-hero-sub{
    color: rgba(245,240,232,0.8);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* legal blocks */
.legal-block{
    padding: 60px 0 80px;
    background: #fdfbf7;
}
.legal-block .container{ max-width: 880px; }
.legal-meta{
    color: #8a7a64;
    font-style: italic;
    font-size: .9rem;
    margin-bottom: 30px;
    border-left: 3px solid #B8956A;
    padding-left: 14px;
}
.legal-block h2{
    font-size: 1.4rem;
    color: #2C5F4E;
    margin: 36px 0 12px;
    font-family: var(--bs-font-display);
}
.legal-block h2:first-of-type{ margin-top: 0; }
.legal-block p{
    font-size: 1rem;
    line-height: 1.7;
    color: #3d352c;
    margin: 0 0 14px;
}
.legal-block code{
    background: #f5f0e8;
    padding: 2px 6px;
    font-size: .92em;
    border-radius: 2px;
    font-family: "SFMono-Regular", Menlo, Consolas, monospace;
    color: #1d4034;
}
.legal-list{
    margin: 0 0 18px;
    padding-left: 22px;
}
.legal-list li{
    line-height: 1.65;
    color: #3d352c;
    margin-bottom: 8px;
}
.imprint-block{
    background: #f5f0e8;
    border-left: 4px solid #B8956A;
    padding: 22px 24px;
    margin-top: 18px;
}
.imprint-block p{
    font-size: .94rem;
    margin: 0 0 8px;
    line-height: 1.55;
}

/* gallery */
.gallery-block{
    padding: 60px 0 80px;
    background: #fdfbf7;
}
.gallery-intro{
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3d352c;
}
.gallery-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.gallery-cell{
    margin: 0;
    background: #fff;
    border: 1px solid #e8dfd0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gallery-cell--01{ grid-column: span 4; }
.gallery-cell--02{ grid-column: span 2; }
.gallery-cell--03{ grid-column: span 3; }
.gallery-cell--04{ grid-column: span 3; }
.gallery-cell--05{ grid-column: span 6; }
@media(max-width:899px){
    .gallery-grid{ grid-template-columns: 1fr 1fr; }
    .gallery-cell--01,.gallery-cell--02,.gallery-cell--03,.gallery-cell--04,.gallery-cell--05{ grid-column: span 2; }
}
@media(max-width:520px){
    .gallery-grid{ grid-template-columns: 1fr; }
    .gallery-cell--01,.gallery-cell--02,.gallery-cell--03,.gallery-cell--04,.gallery-cell--05{ grid-column: span 1; }
}
.gallery-img{
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gallery-cell--01 .gallery-img{ background-image: url("../resources/gallery-01-sala-adelita.webp");    background-color: #b8a890; }
.gallery-cell--02 .gallery-img{ background-image: url("../resources/gallery-02-recamara-cantera.webp"); background-color: #d8c8a8; }
.gallery-cell--03 .gallery-img{ background-image: url("../resources/gallery-03-sotano-tienda.webp");    background-color: #3d3530; }
.gallery-cell--04 .gallery-img{ background-image: url("../resources/gallery-04-tul-comedor.webp");      background-color: #ece4d4; }
.gallery-cell--05 .gallery-img{ background-image: url("../resources/gallery-05-eva-costura.webp");      background-color: #9bab90; }
.gallery-cell figcaption{
    padding: 14px 16px 18px;
    font-size: .9rem;
    color: #5a4f44;
    line-height: 1.55;
}
.gallery-cell figcaption strong{
    color: #2a2520;
    display: block;
    margin-bottom: 4px;
    font-size: .98rem;
}
.gallery-foot{
    margin: 40px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: .98rem;
    color: #5a4f44;
    padding: 20px;
    background: #f5f0e8;
    border-left: 3px solid #B8956A;
}

/* about */
.about-block{
    padding: 60px 0 80px;
    background: #fdfbf7;
}
.about-row{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.about-row > .col-lg-5{ padding-right: 16px; }
.about-row > .col-lg-7{ padding-left: 16px; }
@media(max-width:991px){
    .about-row > .col-lg-5,.about-row > .col-lg-7{ padding: 0; }
}
.about-img{
    width: 100%;
    aspect-ratio: 4/5;
    background-image: url("../resources/about-eva-gustavo.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #c8b8a0;
    border: 1px solid #d8cdb8;
    margin-bottom: 8px;
}
.about-img-cap{
    font-size: .85rem;
    color: #8a7a64;
    font-style: italic;
    text-align: center;
    margin: 0 0 24px;
}
.about-block h2.left-border{
    margin-top: 0;
}
.about-block p{
    font-size: 1rem;
    line-height: 1.7;
    color: #3d352c;
    margin-bottom: 14px;
}
.about-bios-h{ margin-top: 36px !important; }
.bio-cell{
    background: #f5f0e8;
    padding: 18px 22px;
    margin-bottom: 14px;
    border-left: 3px solid #B8956A;
}
.bio-cell h4{
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #2a2520;
}
.bio-cell p{ margin: 0; font-size: .94rem; line-height: 1.6; }

/* jobs */
.jobs-block{
    padding: 60px 0 80px;
    background: #fdfbf7;
}
.jobs-lead-card{
    background: #f5f0e8;
    padding: 30px 32px 28px;
    border-left: 4px solid #B8956A;
    max-width: 880px;
    margin: 0 auto 50px;
}
.jobs-lead-card h2{
    font-size: 1.7rem;
    color: #2C5F4E;
    margin: 0 0 14px;
}
.jobs-lead{
    font-size: 1rem;
    line-height: 1.65;
    color: #3d352c;
    margin: 0 0 12px;
}
.jobs-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 0 auto;
    max-width: 1100px;
}
@media(max-width:899px){ .jobs-grid{ grid-template-columns: 1fr; } }

.job-card{
    background: #fff;
    border: 1px solid #e8dfd0;
    padding: 24px 22px 22px;
    border-top: 3px solid #2C5F4E;
    display: flex;
    flex-direction: column;
}
.job-tag{
    display: inline-block;
    background: #B8956A;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 10px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.job-card h3{
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: #2a2520;
}
.job-card > p{
    font-size: .92rem;
    line-height: 1.6;
    color: #5a4f44;
    margin: 0 0 14px;
}
.job-req{
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dashed #e8dfd0;
    padding-top: 12px;
}
.job-req li{
    font-size: .88rem;
    color: #4a4035;
    padding: 5px 0 5px 18px;
    position: relative;
    line-height: 1.45;
}
.job-req li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: #2C5F4E;
    font-weight: 700;
}
.jobs-foot{
    max-width: 820px;
    margin: 40px auto 0;
    text-align: center;
    font-size: .96rem;
    color: #5a4f44;
    padding: 18px;
    background: #f5f0e8;
    border-left: 3px solid #B8956A;
    line-height: 1.6;
}

/* ============================================================ */
/* REVIEWS / TESTIMONIALS                                       */
/* ============================================================ */

.reviews-band{
    padding: 80px 0 70px;
}
.reviews-head{
    margin-bottom: 36px;
}
.reviews-head h2{
    color: #fff;
    margin-bottom: 14px;
}
.reviews-lead{
    color: rgba(245,240,232,0.78);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}
.reviews-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media(max-width:991px){ .reviews-grid{ grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px){ .reviews-grid{ grid-template-columns: 1fr; } }

.review-card{
    background: #f5f0e8;
    color: #2a2520;
    padding: 24px 22px 20px;
    border-top: 3px solid #B8956A;
    display: flex;
    flex-direction: column;
    position: relative;
}
.review-card::before{
    content: '”';
    position: absolute;
    top: -6px;
    right: 18px;
    font-family: var(--bs-font-display);
    font-size: 4.6rem;
    line-height: 1;
    color: rgba(184,149,106,0.28);
    font-weight: 700;
}
.review-stars{
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}
.review-stars .star{
    color: #d8cdb8;
    font-size: 1.05rem;
    line-height: 1;
}
.review-stars .star.on{
    color: #B8956A;
}
.review-rating-num{
    margin-left: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a7a64;
}
.review-text{
    font-size: 0.96rem;
    line-height: 1.65;
    color: #3d352c;
    margin: 0 0 16px;
    flex: 1;
    font-style: italic;
}
.review-author{
    font-size: 0.92rem;
    font-weight: 700;
    color: #2C5F4E;
    margin: 0 0 4px;
}
.review-meta{
    font-size: 0.78rem;
    color: #8a7a64;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* review CTA card — "you can be next" */
.review-card--cta{
    background: linear-gradient(150deg, #2C5F4E 0%, #1d4034 100%);
    color: #f5f0e8;
    border-top: 3px solid #B8956A;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-height: 100%;
}
.review-card--cta::before{
    display: none;
}
.cta-mark{
    width: 44px;
    height: 44px;
    border: 2px solid #B8956A;
    color: #B8956A;
    font-size: 28px;
    font-weight: 300;
    line-height: 38px;
    text-align: center;
    margin-bottom: 14px;
}
.cta-title{
    font-family: var(--bs-font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.cta-text{
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245,240,232,0.85);
    margin: 0 0 16px;
    font-style: normal;
}
.review-card--cta .btn-link-sm{
    align-self: flex-start;
    cursor: pointer;
}

/* nav active state — set by blh_nav_active() */
.navbar-nav.desktop-nav .nav-link.is-active{
    color: #B8956A;
}
ul.drop-nav li a.nav-link.is-active{
    color: #2C5F4E;
    border-bottom-color: #B8956A;
}
