/* ══════════════════════════════════════════════════════
   TATÁ RISAU — style.css
   Dark/Light mode + mobile-first responsive
   ══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --accent:       #c8a96e;
  --accent-light: #e8d4a8;
  --accent-dark:  #a8893e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       6px;
  --transition:   0.32s ease;
  --shadow:       0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.16);
}

/* LIGHT MODE (default) */
:root, [data-theme="light"] {
  --bg:          #f8f6f2;
  --bg-alt:      #f0ede8;
  --bg-card:     #ffffff;
  --bg-dark:     #1a1712;
  --fg:          #0a0a0a;
  --fg-muted:    #5a5550;
  --fg-faint:    #9a9590;
  --border:      #ddd9d3;
  --border-dark: #2a2520;
  --nav-bg-scroll: rgba(255,255,255,0.96);
  --nav-fg:      #0a0a0a;
  --nav-fg-scroll:#0a0a0a;
  --logo-filter: brightness(0);
  --logo-filter-scroll: brightness(0);
  --ham-color:   #0a0a0a;
}

/* DARK MODE */
[data-theme="dark"] {
  --bg:          #111010;
  --bg-alt:      #191716;
  --bg-card:     #1e1c1a;
  --bg-dark:     #0a0a0a;
  --fg:          #f0ede8;
  --fg-muted:    #a09a94;
  --fg-faint:    #6a6560;
  --border:      #2e2c28;
  --border-dark: #3a3830;
  --nav-bg-scroll: rgba(12,11,10,0.97);
  --nav-fg:      #f0ede8;
  --nav-fg-scroll:#f0ede8;
  --logo-filter: brightness(0) invert(1);
  --logo-filter-scroll: brightness(0) invert(1);
  --ham-color:   #f0ede8;
}

/* ── RESET ───────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-tap-highlight-color:transparent; }
body { font-family:var(--font-body); background:var(--bg); color:var(--fg); overflow-x:hidden; line-height:1.6; transition:background var(--transition), color var(--transition); }
img { max-width:100%; display:block; }
a { text-decoration:none; }
button { cursor:pointer; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal         { opacity:0; transform:translateY(40px); transition:opacity 0.85s cubic-bezier(.25,.46,.45,.94), transform 0.85s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.24s; }
.reveal-delay-3 { transition-delay:.36s; }
.reveal-delay-4 { transition-delay:.48s; }

/* ── BASE SECTION TOKENS ─────────────────────────────── */
section { padding: 6rem 3rem; }
.section-label { font-size:11px; letter-spacing:.38em; text-transform:uppercase; color:var(--accent); margin-bottom:1rem; display:block; font-weight:500; }
.section-title { font-family:var(--font-display); font-size:clamp(2rem,4vw,3.5rem); font-weight:300; line-height:1.12; color:var(--fg); margin-bottom:1.4rem; }
.section-title em { font-style:italic; color:var(--accent-dark); }
.section-title.light { color:#f0ede8; }
.section-title.light em { color:var(--accent-light); }
.section-body { font-size:15px; color:var(--fg-muted); line-height:1.85; max-width:560px; font-weight:300; }
.section-body.light { color:rgba(240,237,232,0.65); }
.divider { width:40px; height:1px; background:var(--accent); margin:1.75rem 0; }

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1.2rem 3rem;
  transition:background .4s ease, backdrop-filter .4s ease, padding .3s ease, box-shadow .3s ease;
}
nav.scrolled {
  background:var(--nav-bg-scroll);
  backdrop-filter:blur(14px);
  padding:.7rem 3rem;
  box-shadow:0 2px 20px rgba(0,0,0,.12);
}
/* Light mode — transparent nav over hero: dark text */
[data-theme="light"] nav:not(.scrolled) { background:transparent; }
/* Dark mode — transparent nav over hero: light text */
[data-theme="dark"]  nav:not(.scrolled) { background:transparent; }

.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { height:38px; width:auto; filter:var(--logo-filter); transition:filter .4s ease; }
nav.scrolled .nav-logo img { filter:var(--logo-filter-scroll); }
.logo-text { font-family:var(--font-display); font-size:14px; font-weight:300; letter-spacing:.15em; text-transform:uppercase; line-height:1.3; color:var(--nav-fg); transition:color .4s; }
.logo-text span { display:block; font-size:9px; letter-spacing:.3em; color:var(--accent); }

.nav-links { display:flex; gap:2rem; list-style:none; }
.nav-link-text {
  font-size:12px; letter-spacing:.08em; text-transform:uppercase; font-weight:400;
  color:var(--nav-fg); transition:color .2s;
  position:relative; padding-bottom:3px;
}
.nav-link-text::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--accent); transition:width .3s; }
.nav-link-text:hover::after { width:100%; }
.nav-link-text:hover { color:var(--accent); }

.nav-cta {
  border:1px solid var(--accent); color:var(--accent);
  padding:7px 20px; font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  transition:all .25s; font-family:var(--font-body); white-space:nowrap;
}
.nav-cta:hover { background:var(--accent); color:#0a0a0a; }

/* Theme toggle button */
.theme-btn {
  background:none; border:none; padding:6px; color:var(--nav-fg);
  font-size:18px; line-height:1; transition:color .3s, transform .3s;
  display:flex; align-items:center; justify-content:center;
}
.theme-btn:hover { color:var(--accent); transform:rotate(20deg); }

.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
.hamburger span { display:block; width:22px; height:1.5px; background:var(--ham-color); transition:all .3s; }

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; inset:0;
  background:rgba(8,7,6,0.98); z-index:199;
  flex-direction:column; align-items:center; justify-content:center; gap:2rem;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:var(--font-display); font-size:2rem; color:#f0ede8; font-weight:300; letter-spacing:.1em; transition:color .2s; }
.mobile-menu a:hover { color:var(--accent); }
.mobile-menu-close { position:absolute; top:1.5rem; right:2rem; background:none; border:none; color:#f0ede8; font-size:1.8rem; }

/* ══════════════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════════════ */
.hero { position:relative; width:100%; height:100vh; min-height:520px; overflow:hidden; }
.slides { display:flex; width:400%; height:100%; transition:transform .95s cubic-bezier(.77,0,.175,1); }
.slide { width:25%; height:100%; position:relative; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.slide-bg { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform 8s ease; }
.slide.active .slide-bg { transform:scale(1.04); }
.slide-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(160deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.5) 50%,rgba(0,0,0,.72) 100%); }
.slide-content { position:relative; z-index:2; text-align:center; color:#f8f6f2; padding:2rem 1.5rem; max-width:760px; opacity:0; transform:translateY(36px); transition:opacity .85s .25s,transform .85s .25s; }
.slide.active .slide-content { opacity:1; transform:translateY(0); }
.slide-eyebrow { font-size:11px; letter-spacing:.4em; text-transform:uppercase; color:var(--accent); margin-bottom:1.2rem; }
.slide-title { font-family:var(--font-display); font-size:clamp(2.8rem,7vw,5.6rem); font-weight:300; line-height:1.04; margin-bottom:1.3rem; }
.slide-title em { font-style:italic; color:var(--accent-light); }
.slide-sub { font-size:15px; color:rgba(248,246,242,.72); font-weight:300; margin-bottom:2.2rem; max-width:540px; margin-left:auto; margin-right:auto; }
.slide-tags { display:flex; flex-wrap:wrap; justify-content:center; gap:.5rem; margin-bottom:2rem; }
.slide-tag { border:1px solid rgba(200,169,110,.45); color:var(--accent-light); font-size:10px; letter-spacing:.18em; text-transform:uppercase; padding:4px 12px; }
.slide-btn { display:inline-block; border:1px solid var(--accent); color:var(--accent); padding:12px 36px; font-size:12px; letter-spacing:.16em; text-transform:uppercase; transition:all .28s; margin:.3rem; }
.slide-btn:hover { background:var(--accent); color:#0a0a0a; }
.slide-btn.filled { background:var(--accent); color:#0a0a0a; }
.slide-btn.filled:hover { background:var(--accent-light); }

.slide-progress { position:absolute; top:0; left:0; height:2px; background:var(--accent); width:0; z-index:10; transition:width 5s linear; }
.slide-progress.running { width:100%; }
.slider-controls { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:10; }
.dot { width:28px; height:2px; background:rgba(248,246,242,.3); border:none; transition:all .35s; }
.dot.active { background:var(--accent); width:50px; }
.slider-arrows { position:absolute; bottom:2.2rem; right:3rem; display:flex; gap:10px; z-index:10; }
.arrow { width:44px; height:44px; border:1px solid rgba(248,246,242,.28); display:flex; align-items:center; justify-content:center; color:#f8f6f2; font-size:16px; background:none; transition:all .22s; }
.arrow:hover { border-color:var(--accent); color:var(--accent); }
.scroll-hint { position:absolute; bottom:2.5rem; left:3rem; z-index:10; display:flex; align-items:center; gap:10px; color:rgba(248,246,242,.45); font-size:11px; letter-spacing:.22em; text-transform:uppercase; }
.scroll-line { width:40px; height:1px; background:var(--accent); animation:scrollline 2s ease-in-out infinite; }
@keyframes scrollline { 0%,100%{transform:scaleX(1);}50%{transform:scaleX(.35);transform-origin:left;} }

/* ══════════════════════════════════════════════════════
   SOBRE NOSOTROS
   ══════════════════════════════════════════════════════ */
.about { background:var(--bg); overflow:hidden; }
.about-inner { max-width:1280px; margin:0 auto; }
.about-top { display:grid; grid-template-columns:1.1fr 1fr; align-items:stretch; }
.about-img-wrap { position:relative; overflow:hidden; min-height:520px; }
.about-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 8s ease; }
.about-img-wrap:hover img { transform:scale(1.04); }
.about-img-overlay { position:absolute; inset:0; background:linear-gradient(to right,transparent 65%,var(--bg) 100%); pointer-events:none; }
.about-text-panel { background:var(--bg); padding:4rem 3.5rem; display:flex; flex-direction:column; justify-content:center; }

.about-stats { display:grid; grid-template-columns:repeat(3,1fr); margin-top:2.5rem; border-top:1px solid var(--border); }
.about-stat { padding:1.6rem 1.5rem; border-right:1px solid var(--border); text-align:center; }
.about-stat:first-child { padding-left:0; text-align:left; }
.about-stat:last-child { border-right:none; }
.about-stat-num { font-family:var(--font-display); font-size:2.8rem; font-weight:300; color:var(--fg); line-height:1; }
.about-stat-label { font-size:11px; color:var(--accent); letter-spacing:.2em; text-transform:uppercase; margin-top:5px; }

/* Tres pilares */
.about-pillars { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--border); }
.about-pillar { padding:3rem 2.5rem; border-right:1px solid var(--border); transition:background .3s; }
.about-pillar:last-child { border-right:none; }
.about-pillar:hover { background:var(--bg-alt); }
.pillar-icon-wrap { width:56px; height:56px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 1.4rem; border-radius:50%; }
.pillar-title { font-family:var(--font-display); font-size:1.4rem; font-weight:400; margin-bottom:.8rem; color:var(--fg); text-align:center; }
.pillar-body { font-size:13.5px; color:var(--fg-muted); line-height:1.75; font-weight:300; text-align:center; }
.pillar-underline { width:0; height:1px; background:var(--accent); margin:1.2rem auto 0; transition:width .4s ease; }
.about-pillar:hover .pillar-underline { width:40px; }

/* ══════════════════════════════════════════════════════
   HABITACIONES
   ══════════════════════════════════════════════════════ */
.rooms { background:var(--bg-alt); }
.rooms-header { max-width:1200px; margin:0 auto 4rem; display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:2rem; }
.rooms-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; max-width:1200px; margin:0 auto 5rem; }
.room-card { position:relative; overflow:hidden; cursor:pointer; background:var(--border-dark); border-radius:var(--radius); }
.room-card::before { content:''; display:block; padding-top:155%; }
.room-img { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .75s cubic-bezier(.25,.46,.45,.94); }
.room-card:hover .room-img { transform:scale(1.07); }
.room-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.15) 55%); display:flex; flex-direction:column; justify-content:flex-end; padding:1.75rem 1.5rem; transition:background .3s; }
.room-card:hover .room-overlay { background:linear-gradient(to top,rgba(0,0,0,.95) 0%,rgba(0,0,0,.25) 60%); }
.room-tag { font-size:10px; letter-spacing:.28em; text-transform:uppercase; color:var(--accent); margin-bottom:7px; }
.room-name { font-family:var(--font-display); font-size:1.55rem; font-weight:300; color:#f8f6f2; line-height:1.2; }
.room-beds { font-size:12px; color:rgba(248,246,242,.6); margin-top:5px; }
.room-price { font-family:var(--font-display); font-size:1.1rem; color:var(--accent); margin-top:10px; }
.room-price span { font-size:.72rem; opacity:.7; }
.room-extra { font-size:11px; color:rgba(248,246,242,0); margin-top:10px; transition:color .35s; display:flex; gap:6px; flex-wrap:wrap; }
.room-card:hover .room-extra { color:rgba(248,246,242,.6); }
.room-tag-feat { border:1px solid rgba(200,169,110,.35); padding:3px 9px; font-size:10px; letter-spacing:.1em; color:var(--accent-light); }

/* Amenities */
.rooms-amenities { max-width:1200px; margin:0 auto; }
.amenities-title { font-family:var(--font-display); font-size:1.7rem; font-weight:300; color:var(--fg); margin-bottom:2.5rem; }
.amenities-title em { font-style:italic; color:var(--accent-dark); }
.amenities-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; }
.amenity-card {
  position:relative; overflow:hidden; cursor:default;
  aspect-ratio:4/3; background:var(--bg-card);
}
.amenity-bg {
  position:absolute; inset:0; background-size:cover; background-position:center;
  transition:transform .7s ease; filter:brightness(.45) saturate(.7);
}
.amenity-card:hover .amenity-bg { transform:scale(1.06); filter:brightness(.35) saturate(.6); }
.amenity-content {
  position:absolute; inset:0; display:flex; flex-direction:column;
  justify-content:flex-end; padding:1.5rem;
}
.amenity-name { font-family:var(--font-display); font-size:1.25rem; font-weight:400; color:#f8f6f2; margin-bottom:.4rem; }
.amenity-desc { font-size:12px; color:rgba(248,246,242,0); line-height:1.6; transition:color .35s; }
.amenity-card:hover .amenity-desc { color:rgba(248,246,242,.72); }
.amenity-line { width:0; height:1px; background:var(--accent); margin-top:.75rem; transition:width .4s ease; }
.amenity-card:hover .amenity-line { width:32px; }

/* ══════════════════════════════════════════════════════
   GASTRONOMÍA
   ══════════════════════════════════════════════════════ */
.gastro { background:var(--bg-dark); color:#f0ede8; overflow:hidden; position:relative; }
.gastro::before { content:'RESTAURANTE'; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-family:var(--font-display); font-size:18vw; font-weight:300; color:rgba(240,237,232,.025); white-space:nowrap; pointer-events:none; }
.gastro-inner { max-width:1200px; margin:0 auto; }
.gastro-header { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:end; margin-bottom:5rem; }
.gastro-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.gastro-card { position:relative; overflow:hidden; min-height:420px; display:flex; flex-direction:column; justify-content:flex-end; background:var(--border-dark); }
.gastro-card-img { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .7s ease; }
.gastro-card:hover .gastro-card-img { transform:scale(1.06); }
.gastro-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.1) 60%); transition:background .3s; }
.gastro-card:hover .gastro-card-overlay { background:linear-gradient(to top,rgba(0,0,0,.97) 0%,rgba(0,0,0,.2) 70%); }
.gastro-card-body { position:relative; z-index:2; padding:2rem 1.75rem; }
.gastro-card-tag { font-size:10px; letter-spacing:.3em; text-transform:uppercase; color:var(--accent); margin-bottom:8px; }
.gastro-card-title { font-family:var(--font-display); font-size:1.65rem; font-weight:300; color:#f8f6f2; line-height:1.2; margin-bottom:10px; }
.gastro-card-desc { font-size:13px; color:rgba(248,246,242,0); line-height:1.65; transition:color .35s; }
.gastro-card:hover .gastro-card-desc { color:rgba(248,246,242,.65); }
.gastro-card-time { font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); border:1px solid rgba(200,169,110,.35); padding:5px 12px; display:inline-block; margin-top:12px; }
.gastro-card.wide { grid-column:span 2; }
.gastro-card.full { grid-column:1/-1; min-height:280px; }

/* ══════════════════════════════════════════════════════
   SERVICIOS — foto de fondo, items con imagen a la derecha
   ══════════════════════════════════════════════════════ */
.services { position:relative; overflow:hidden; padding:6rem 0; }
.services-bg {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1600&q=80');
  background-size:cover; background-position:center;
  filter:brightness(.25) saturate(.5);
}
.services-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,rgba(10,10,10,.6),rgba(10,10,10,.78)); }
.services-inner { max-width:1200px; margin:0 auto; position:relative; z-index:2; padding:0 3rem; }
.services-top { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:end; margin-bottom:4rem; }
.services .section-title { color:#f0ede8; }
.services .section-body  { color:rgba(240,237,232,.6); }
.services-list { display:flex; flex-direction:column; gap:0; }

/* Cada item: texto izquierda + imagen derecha */
.service-item {
  display:grid; grid-template-columns:1fr 260px;
  border-top:1px solid rgba(255,255,255,.08);
  transition:border-color .3s;
  position:relative;
  overflow:hidden;
}
.service-item:last-child { border-bottom:1px solid rgba(255,255,255,.08); }
.service-item:hover { border-color:rgba(200,169,110,.4); }
.service-item-text { padding:2rem 2.5rem 2rem 0; display:flex; flex-direction:column; justify-content:center; }
.service-item-title { font-family:var(--font-display); font-size:1.4rem; font-weight:400; color:#f0ede8; margin-bottom:.5rem; transition:color .3s; }
.service-item:hover .service-item-title { color:var(--accent-light); }
.service-item-desc  { font-size:13px; color:rgba(240,237,232,.5); line-height:1.75; font-weight:300; transition:color .3s; }
.service-item:hover .service-item-desc { color:rgba(240,237,232,.75); }
.service-underline { height:1px; background:var(--accent); width:0; margin-top:1rem; transition:width .4s ease; }
.service-item:hover .service-underline { width:100%; }

/* Imagen a la derecha del item */
.service-item-img { position:relative; overflow:hidden; }
.service-item-img img { width:100%; height:100%; object-fit:cover; filter:brightness(.55); transition:filter .4s, transform .7s ease; }
.service-item:hover .service-item-img img { filter:brightness(.75); transform:scale(1.05); }

/* ══════════════════════════════════════════════════════
   LAVANDERÍA — fondo fotográfico
   ══════════════════════════════════════════════════════ */
.laundry { position:relative; overflow:hidden; color:#f0ede8; }
.laundry-bg {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1400&q=80');
  background-size:cover; background-position:center;
  filter:brightness(.22) saturate(.5);
}
.laundry-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,10,10,.85),rgba(10,10,10,.6)); }
.laundry-inner { position:relative; z-index:2; max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.laundry .section-title { color:#f0ede8; }
.laundry-points { list-style:none; margin-top:2rem; display:flex; flex-direction:column; gap:1rem; }
.laundry-points li { display:flex; align-items:flex-start; gap:1rem; }
.laundry-dot { width:5px; height:5px; border-radius:50%; background:var(--accent); margin-top:8px; flex-shrink:0; }
.laundry-point-text { font-size:14px; color:rgba(240,237,232,.7); line-height:1.7; font-weight:300; }
.laundry-img-wrap { position:relative; overflow:hidden; border-radius:var(--radius); aspect-ratio:4/3; }
.laundry-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 8s ease; }
.laundry-img-wrap:hover img { transform:scale(1.05); }
.laundry-img-wrap::before { content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(135deg,rgba(200,169,110,.1),transparent); }

/* ══════════════════════════════════════════════════════
   SECTOR EMPRESARIAL
   ══════════════════════════════════════════════════════ */
.empresas { background:var(--bg); overflow:hidden; }
.empresas-inner { max-width:1200px; margin:0 auto; }
.empresa-top { display:grid; grid-template-columns:1fr 1.3fr; gap:5rem; align-items:center; margin-bottom:4rem; }
.empresa-lead { max-width:520px; }
.empresa-features { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--border); }
.empresa-feat { padding:2.2rem 2.5rem; border-right:1px solid var(--border); border-bottom:1px solid var(--border); transition:background .28s; }
.empresa-feat:nth-child(3n) { border-right:none; }
.empresa-feat:nth-child(4),.empresa-feat:nth-child(5),.empresa-feat:nth-child(6) { border-bottom:none; }
.empresa-feat:hover { background:var(--bg-alt); }
.empresa-feat-icon { font-size:1.3rem; margin-bottom:.85rem; }
.empresa-feat-title { font-size:14px; font-weight:500; color:var(--fg); margin-bottom:6px; letter-spacing:.03em; }
.empresa-feat-desc  { font-size:12.5px; color:var(--fg-muted); line-height:1.65; font-weight:300; }
.emp-cta { margin-top:2.5rem; }
.emp-cta-btn { display:inline-block; background:var(--accent); color:#0a0a0a; padding:13px 34px; font-size:12px; letter-spacing:.16em; text-transform:uppercase; font-weight:500; transition:all .25s; }
.emp-cta-btn:hover { background:var(--accent-light); transform:translateY(-2px); }

/* Imágenes derecha */
.empresas-right { display:grid; grid-template-rows:auto auto; gap:3px; }
.emp-img-main { position:relative; overflow:hidden; aspect-ratio:16/9; }
.emp-img-main img { width:100%; height:100%; object-fit:cover; transition:transform 8s ease; }
.emp-img-main:hover img { transform:scale(1.04); }
.emp-imgs-row { display:grid; grid-template-columns:1fr 1fr; gap:3px; }
.emp-img-sm { position:relative; overflow:hidden; aspect-ratio:1; }
.emp-img-sm img { width:100%; height:100%; object-fit:cover; transition:transform 8s ease; }
.emp-img-sm:hover img { transform:scale(1.05); }

/* ══════════════════════════════════════════════════════
   CLIENTES
   ══════════════════════════════════════════════════════ */
.clientes { background:var(--bg-alt); }
.clientes-inner { max-width:1200px; margin:0 auto; }
.clientes-header { margin-bottom:4rem; }
.clientes-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:0; }
.cliente-card { background:transparent; padding:2.8rem 2rem; display:flex; flex-direction:column; align-items:center; gap:1rem; transition:background .3s; }
.cliente-card:hover { background:var(--bg-card); }
.cliente-logo-wrap { height:54px; width:140px; display:flex; align-items:center; justify-content:center; }
.cliente-logo-wrap img { max-height:54px; max-width:140px; width:auto; height:auto; object-fit:contain; filter:brightness(0) saturate(0); opacity:.5; transition:opacity .3s; }
[data-theme="dark"] .cliente-logo-wrap img { filter:brightness(0) invert(1) saturate(0); }
.cliente-card:hover .cliente-logo-wrap img { opacity:.9; }
.cliente-logo-fallback { width:60px; height:44px; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:.9rem; font-weight:600; color:var(--fg-muted); opacity:.55; }
.cliente-name { display:none; }
.cliente-desc { font-size:11.5px; color:var(--fg-muted); line-height:1.65; font-weight:300; text-align:center; max-width:160px; }

/* ══════════════════════════════════════════════════════
   UBICACIÓN / CONTACTO
   ══════════════════════════════════════════════════════ */
.ubicacion { background:var(--bg); }
.ubicacion-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1.2fr; gap:5rem; align-items:center; }
.contact-list { list-style:none; margin-top:2rem; display:flex; flex-direction:column; gap:1.5rem; }
.contact-list li { display:flex; gap:1rem; align-items:flex-start; }
.contact-icon { width:38px; height:38px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:14px; }
.contact-info strong { display:block; font-size:13px; font-weight:500; margin-bottom:2px; color:var(--fg); }
.contact-info span   { font-size:13px; color:var(--fg-muted); }
.map-placeholder { height:420px; background:var(--bg-alt); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; color:var(--fg-faint); font-size:13px; letter-spacing:.1em; border:1px solid var(--border); position:relative; overflow:hidden; }
.map-placeholder::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(0deg,transparent,transparent 39px,var(--border) 39px,var(--border) 40px),repeating-linear-gradient(90deg,transparent,transparent 39px,var(--border) 39px,var(--border) 40px); }
.map-pin { width:44px; height:44px; background:var(--accent); border-radius:50% 50% 50% 0; transform:rotate(-45deg); position:relative; z-index:1; }
.map-pin::after { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:14px; height:14px; background:var(--bg); border-radius:50%; }
.map-label { position:relative; z-index:1; }

/* ══════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════ */
.cta-section { background:var(--bg-dark); padding:9rem 3rem; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:700px; height:700px; border-radius:50%; background:radial-gradient(circle,rgba(200,169,110,.07) 0%,transparent 68%); }
.cta-section .section-label { display:block; text-align:center; }
.cta-title { font-family:var(--font-display); font-size:clamp(2.4rem,5vw,4.2rem); font-weight:300; color:#f0ede8; margin-bottom:1.5rem; line-height:1.15; }
.cta-title em { font-style:italic; color:var(--accent); }
.cta-body { font-size:15px; color:rgba(240,237,232,.5); max-width:460px; margin:0 auto 3rem; line-height:1.85; }
.cta-btn { display:inline-block; background:var(--accent); color:#0a0a0a; padding:16px 52px; font-size:13px; letter-spacing:.16em; text-transform:uppercase; font-weight:500; transition:all .28s; font-family:var(--font-body); }
.cta-btn:hover { background:var(--accent-light); transform:translateY(-2px); }
.cta-btn-outline { display:inline-block; border:1px solid rgba(240,237,232,.28); color:rgba(240,237,232,.6); padding:16px 52px; font-size:13px; letter-spacing:.16em; text-transform:uppercase; transition:all .28s; font-family:var(--font-body); margin-left:1rem; }
.cta-btn-outline:hover { border-color:var(--accent); color:var(--accent); }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
footer { background:var(--bg-dark); padding:5rem 3rem 2rem; border-top:1px solid rgba(255,255,255,.06); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3.5rem; max-width:1200px; margin:0 auto 3.5rem; }
.footer-brand p { font-size:13px; color:rgba(240,237,232,.3); line-height:1.85; margin-top:1.2rem; max-width:270px; }
.footer-logo { display:flex; align-items:center; gap:10px; }
.footer-logo img { height:36px; filter:brightness(0) invert(1) opacity(.7); }
.footer-logo-text { font-family:var(--font-display); font-size:14px; font-weight:300; letter-spacing:.15em; text-transform:uppercase; color:#f0ede8; line-height:1.3; }
.footer-logo-text span { display:block; font-size:9px; letter-spacing:.3em; color:var(--accent); }
.footer-col h4 { font-size:11px; letter-spacing:.28em; text-transform:uppercase; color:var(--accent); margin-bottom:1.4rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.8rem; }
.footer-col a { font-size:13px; color:rgba(240,237,232,.4); transition:color .2s; }
.footer-col a:hover { color:var(--accent); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding-top:2rem; display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:0 auto; }
.footer-bottom p { font-size:12px; color:rgba(240,237,232,.22); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE ≤ 1024px (tablet landscape)
   ══════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  section { padding:5rem 2rem; }
  .services-inner { padding:0 2rem; }
  .amenities-grid  { grid-template-columns:repeat(3,1fr); }
  .clientes-grid   { grid-template-columns:repeat(5,1fr); }
  .gastro-cards    { grid-template-columns:1fr 1fr; }
  .gastro-card.wide{ grid-column:1/-1; min-height:260px; }
  .gastro-card.full{ min-height:220px; }
  .service-item    { grid-template-columns:1fr 200px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ≤ 900px (tablet portrait)
   ══════════════════════════════════════════════════════ */
@media (max-width:900px) {
  nav { padding:1rem 1.5rem; }
  nav.scrolled { padding:.7rem 1.5rem; }
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  section { padding:4.5rem 1.75rem; }
  .services-inner { padding:0 1.75rem; }

  .about-top       { grid-template-columns:1fr; }
  .about-img-wrap  { min-height:300px; }
  .about-img-overlay { background:linear-gradient(to bottom,transparent 70%,var(--bg) 100%); }
  .about-stats     { grid-template-columns:repeat(3,1fr); }
  .about-pillars   { grid-template-columns:1fr; }
  .about-pillar    { border-right:none; border-bottom:1px solid var(--border); }
  .about-pillar:last-child { border-bottom:none; }

  .rooms-grid      { grid-template-columns:1fr 1fr; }
  .amenities-grid  { grid-template-columns:repeat(2,1fr); }
  .gastro-cards    { grid-template-columns:1fr; }
  .gastro-card.wide{ grid-column:auto; }
  .gastro-header   { grid-template-columns:1fr; gap:2rem; margin-bottom:3rem; }

  .services-top    { grid-template-columns:1fr; gap:2rem; margin-bottom:2.5rem; }
  .service-item    { grid-template-columns:1fr 160px; }

  .laundry-inner   { grid-template-columns:1fr; gap:3rem; }
  .empresa-top     { grid-template-columns:1fr; gap:3rem; }
  .empresas-right  { display:none; }
  .empresa-features{ grid-template-columns:1fr 1fr; }
  .empresa-feat:nth-child(3n)   { border-right:1px solid var(--border); }
  .empresa-feat:nth-child(2n)   { border-right:none; }
  .empresa-feat:nth-child(3),.empresa-feat:nth-child(4) { border-bottom:1px solid var(--border); }
  .empresa-feat:nth-child(5),.empresa-feat:nth-child(6) { border-bottom:none; }

  .clientes-grid   { grid-template-columns:repeat(3,1fr); }
  .ubicacion-inner { grid-template-columns:1fr; gap:2.5rem; }
  .footer-top      { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .slider-arrows,.scroll-hint { display:none; }
  .cta-btn-outline { display:none; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ≤ 600px (mobile)
   ══════════════════════════════════════════════════════ */
@media (max-width:600px) {
  nav { padding:.875rem 1.25rem; }
  .logo-text { display:none; }
  section { padding:3.5rem 1.25rem; }
  .services-inner { padding:0 1.25rem; }

  .slide-title { font-size:2.4rem; }
  .slide-sub   { font-size:13px; }
  .slide-btn   { padding:10px 24px; font-size:11px; }
  .slide-tags  { display:none; }

  .about-stats { grid-template-columns:1fr; }
  .about-stat  { border-right:none; border-bottom:1px solid var(--border); text-align:left; padding-left:0; }
  .about-stat:last-child { border-bottom:none; }

  .rooms-grid         { grid-template-columns:1fr; gap:2px; }
  .amenities-grid     { grid-template-columns:1fr 1fr; }
  .gastro-cards       { grid-template-columns:1fr; }
  .service-item       { grid-template-columns:1fr; }
  .service-item-img   { display:none; }
  .service-item-text  { padding:1.75rem 0; }
  .empresa-features   { grid-template-columns:1fr; }
  .empresa-feat       { border-right:none; border-bottom:1px solid var(--border); }
  .empresa-feat:last-child { border-bottom:none; }
  .clientes-grid      { grid-template-columns:repeat(2,1fr); }
  .footer-top         { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom      { flex-direction:column; gap:.5rem; text-align:center; }
  .footer-bottom p:last-child { display:none; }
  footer { padding:3rem 1.25rem 1.5rem; }
  .cta-btn            { padding:14px 36px; font-size:12px; }
}

/* ══════════════════════════════════════════════════════
   XS ≤ 380px
   ══════════════════════════════════════════════════════ */
@media (max-width:380px) {
  .slide-title   { font-size:2rem; }
  .section-title { font-size:1.9rem; }
  .amenities-grid { grid-template-columns:1fr; }
  .clientes-grid  { grid-template-columns:1fr; }
}