/* ================================================
   SYE LAVANDERÍA GASTRONÓMICA
   Aesthetic: Industrial Luxury — dark steel, gold accents
   Evoca cocinas profesionales, hotelería de alta gama
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Barlow:wght@200;300;400;500&family=Barlow+Condensed:wght@300;400;600;700&display=swap');

/* ─── VARIABLES ─── */
:root {
  --black:       #0a0a0b;
  --charcoal:    #111214;
  --steel:       #1c1e22;
  --steel-mid:   #252830;
  --steel-light: #2e3138;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(196,158,84,0.35);

  --gold:        #c49e54;
  --gold-light:  #dab96a;
  --gold-pale:   rgba(196,158,84,0.12);
  --gold-glow:   rgba(196,158,84,0.25);

  --white:       #f5f3ef;
  --white-mid:   rgba(245,243,239,0.75);
  --white-low:   rgba(245,243,239,0.38);
  --white-faint: rgba(245,243,239,0.12);

  --text-body:   #9ea3ad;
  --text-light:  #6b7280;

  --nav-h: 72px;
  --max-w: 1280px;
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Barlow', sans-serif;
  background: var(--charcoal);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes rotSlow {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  background: rgba(10,10,11,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s;
}
.nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav__logo-wrap { display: flex; align-items: center; gap: 14px; }

.nav__logo-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.nav__logo-mark span {
  display: block; width: 14px; height: 14px;
  background: var(--gold);
  transform: rotate(-45deg);
}

.nav__logo-text {
  display: flex; flex-direction: column; gap: 1px;
}
.nav__logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav__logo-text .sub {
  font-size: 0.52rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.nav__links {
  display: flex; gap: 36px; align-items: center;
}
.nav__links a {
  font-size: 0.66rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-low);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Burger */
.nav__burger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; height: 1px;
  background: var(--white); border-radius: 1px;
  transition: all 0.35s var(--ease-out); transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 490;
  background: rgba(10,10,11,0.97);
  backdrop-filter: blur(30px);
  padding: 36px clamp(20px,6vw,60px) 48px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(-110%);
  transition: transform 0.45s var(--ease-out);
  border-bottom: 1px solid var(--border-gold);
}
.nav__drawer.open { transform: translateY(0); }
.nav__drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-mid);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s, padding-left 0.3s;
}
.nav__drawer a:hover { color: var(--gold); padding-left: 8px; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Diagonal split */
.hero__bg-left {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--black) 0%, var(--charcoal) 55%, var(--steel) 100%);
  clip-path: polygon(0 0, 62% 0, 52% 100%, 0 100%);
  z-index: 0;
}

/* Grid lines decorativas */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(196,158,84,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,158,84,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(50px,8vh,100px) clamp(24px,5vw,80px);
  position: relative; z-index: 2;
}

.hero__pretag {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 0.2s;
}
.hero__pretag-line {
  width: 48px; height: 1px; background: var(--gold);
  transform-origin: left;
  animation: lineGrow 0.8s var(--ease-out) forwards 0.4s;
  transform: scaleX(0);
}
.hero__pretag span {
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 0.35s;
}
.hero__title em {
  font-style: italic; font-weight: 400;
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 300; line-height: 1.85;
  color: var(--text-body);
  max-width: 420px; margin-bottom: 50px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 0.5s;
}

.hero__actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 0.65s;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 36px; border-radius: var(--radius);
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196,158,84,0.35);
}
.btn-primary .arrow { font-size: 1rem; transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-mid);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* Hero visual (derecha) */
.hero__visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(60px,8vh,120px) clamp(24px,4vw,60px);
}

.hero__img-frame {
  position: relative; width: 100%; max-width: 480px;
}

.hero__img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.75) contrast(1.1) saturate(0.85);
}

/* Overlay dorado en imagen */
.hero__img-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    transparent 40%,
    rgba(196,158,84,0.18) 100%
  );
  border-radius: var(--radius);
  z-index: 1; pointer-events: none;
}

.hero__img-border {
  position: absolute;
  top: -12px; right: -12px;
  bottom: 12px; left: 12px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  z-index: 0; pointer-events: none;
}

.hero__stat-card {
  position: absolute; bottom: 20px; left: -20px; z-index: 3;
  background: var(--charcoal);
  border: 1px solid var(--border-gold);
  padding: 18px 24px;
  border-radius: var(--radius);
  min-width: 160px;
}
.hero__stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-card .stat-label {
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-body);
}

.hero__badge {
  position: absolute; top: 20px; right: -16px; z-index: 3;
  width: 90px; height: 90px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero__badge-inner {
  font-size: 0.52rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); line-height: 1.5;
}
.hero__badge-inner strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0; color: var(--white);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
  opacity: 0; animation: fadeIn 1s ease forwards 1.5s;
}
.hero__scroll span {
  font-size: 0.55rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-light);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   STRIP — Clientes / Sectores
═══════════════════════════════════════════ */
.strip {
  background: var(--steel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px clamp(24px,5vw,60px);
  display: flex; align-items: center; gap: clamp(20px,3vw,50px);
  overflow: hidden; flex-wrap: wrap;
}
.strip__label {
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap; flex-shrink: 0;
}
.strip__sep {
  width: 1px; height: 28px;
  background: var(--border); flex-shrink: 0;
}
.strip__items {
  display: flex; gap: clamp(24px,3vw,56px); flex-wrap: wrap; align-items: center;
}
.strip__item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-body); white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.strip__item::before {
  content: '◆';
  font-size: 0.4rem; color: var(--gold); flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SECTION HEADING (shared)
═══════════════════════════════════════════ */
.section-head { margin-bottom: clamp(40px,6vw,70px); }
.section-head--center { text-align: center; }
.section-head__tag {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.section-head__tag-line {
  width: 32px; height: 1px; background: var(--gold);
}
.section-head__tag span {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
}
.section-head__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
}
.section-head__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.section-head__body {
  margin-top: 18px;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 300; line-height: 1.9;
  color: var(--text-body); max-width: 560px;
}
.section-head--center .section-head__body { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: clamp(70px,10vw,120px) clamp(24px,5vw,80px);
  background: var(--charcoal);
  position: relative;
}
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: var(--max-w); margin: 0 auto;
}

.service-card {
  background: var(--charcoal);
  padding: 44px 36px 40px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover { background: var(--steel); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px; margin-bottom: 26px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover .service-card__icon {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.service-card__num {
  position: absolute; top: 30px; right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: var(--white-faint); line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.service-card:hover .service-card__num { color: rgba(196,158,84,0.08); }

.service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.82rem; font-weight: 300;
  line-height: 1.85; color: var(--text-body);
}

/* ═══════════════════════════════════════════
   WHY — Diferenciadores
═══════════════════════════════════════════ */
.why {
  padding: clamp(70px,10vw,120px) clamp(24px,5vw,80px);
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px);
  align-items: center;
  max-width: 100%;
}

.why__visual {
  position: relative;
}
.why__img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(0.8);
  border-radius: var(--radius);
}
.why__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(196,158,84,0.1) 0%, transparent 60%);
  border-radius: var(--radius);
}
.why__frame {
  position: absolute; top: -16px; left: -16px; bottom: 16px; right: 16px;
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  pointer-events: none; z-index: -1;
}

.why__feature-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--steel);
  border: 1px solid var(--border-gold);
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 220px;
}
.why__feature-card .fc-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.why__feature-card .fc-label {
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-body); margin-top: 6px;
}

.why__list {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: 36px;
}

.why__item {
  display: flex; gap: 22px; align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.why__item:last-child { border-bottom: none; padding-bottom: 0; }

.why__item-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  margin-top: 2px;
}
.why__item-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.why__item-body p {
  font-size: 0.82rem; font-weight: 300;
  line-height: 1.8; color: var(--text-body);
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  padding: clamp(70px,10vw,120px) clamp(24px,5vw,80px);
  background: var(--steel);
  position: relative; overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.process::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max-w); margin: 0 auto;
  position: relative;
}

/* Connecting line */
.process__steps::before {
  content: '';
  position: absolute; top: 34px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, var(--border-gold), var(--gold), var(--border-gold));
  z-index: 0;
}

.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}

.step__num {
  width: 68px; height: 68px;
  border: 1px solid var(--gold);
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; border-radius: 50%;
  transition: background 0.3s;
}
.step__num span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
}
.step:hover .step__num { background: var(--gold-pale); }

.step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px;
}
.step__desc {
  font-size: 0.78rem; font-weight: 300;
  line-height: 1.85; color: var(--text-body);
}

/* ═══════════════════════════════════════════
   SECTORS
═══════════════════════════════════════════ */
.sectors {
  padding: clamp(70px,10vw,120px) clamp(24px,5vw,80px);
  background: var(--charcoal);
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-w); margin: 0 auto;
}

.sector-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
  aspect-ratio: 4/3;
}

.sector-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45) saturate(0.6);
  transition: transform 0.6s var(--ease-out), filter 0.5s;
}
.sector-card:hover .sector-card__bg {
  transform: scale(1.06);
  filter: brightness(0.35) saturate(0.5);
}

.sector-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}

.sector-card__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}

.sector-card__icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(196,158,84,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  margin-bottom: 14px;
  transform: translateY(10px); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.sector-card:hover .sector-card__icon { transform: translateY(0); opacity: 1; }

.sector-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.sector-card__desc {
  font-size: 0.76rem; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.sector-card:hover .sector-card__desc { max-height: 80px; }

/* Gradient backgrounds para sectores (cuando no hay fotos) */
.sc-restaurants { background: linear-gradient(135deg, #1a1008, #2d1a08, #1a1008); }
.sc-hotels      { background: linear-gradient(135deg, #080e1a, #0d1828, #080e1a); }
.sc-catering    { background: linear-gradient(135deg, #0a1208, #111f0d, #0a1208); }
.sc-hospitales  { background: linear-gradient(135deg, #10080a, #1f0d0f, #10080a); }
.sc-corporativo { background: linear-gradient(135deg, #08080e, #0d0d1f, #08080e); }
.sc-eventos     { background: linear-gradient(135deg, #120808, #1f100d, #120808); }

/* ═══════════════════════════════════════════
   OWNER — Emilio Torres
═══════════════════════════════════════════ */
.owner {
  padding: clamp(70px,10vw,120px) clamp(24px,5vw,80px);
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px);
  align-items: center;
  position: relative;
}
.owner::after {
  content: '"';
  position: absolute;
  right: clamp(24px,5vw,80px); top: 40px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(10rem,18vw,16rem);
  color: rgba(196,158,84,0.05);
  line-height: 1; pointer-events: none;
  user-select: none;
}

.owner__text { position: relative; z-index: 2; }

.owner__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400; font-style: italic;
  line-height: 1.6; color: var(--white-mid);
  margin-bottom: 36px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}

.owner__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.owner__role {
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--text-body);
  margin-bottom: 32px;
}
.owner__bio {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.9; color: var(--text-body);
}

.owner__portrait {
  position: relative;
}
.owner__portrait-img {
  width: 100%; max-width: 420px; margin: 0 auto;
  aspect-ratio: 3/4; object-fit: cover;
  filter: brightness(0.7) contrast(1.1) saturate(0.7) sepia(0.15);
  border-radius: var(--radius);
  display: block;
}
.owner__portrait::before {
  content: '';
  position: absolute; top: -16px; right: -16px; bottom: 16px; left: 16px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius); z-index: -1;
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats {
  padding: clamp(50px,7vw,80px) clamp(24px,5vw,80px);
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-image: none;
}
/* re-apply bg */
.stats { background: var(--gold); }

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.15);
  max-width: var(--max-w); margin: 0 auto;
  width: 100%;
}

.stat {
  background: var(--gold);
  padding: 40px 30px;
  text-align: center;
  transition: background 0.3s;
}
.stat:hover { background: var(--gold-light); }

.stat__value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900; color: var(--black);
  line-height: 1;
}
.stat__label {
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: clamp(70px,10vw,120px) clamp(24px,5vw,80px);
  background: var(--steel);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w); margin: 0 auto;
}

.testi {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: border-color 0.4s, transform 0.4s;
}
.testi:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}

.testi__stars {
  display: flex; gap: 4px; margin-bottom: 22px;
  color: var(--gold); font-size: 0.75rem;
}

.testi__text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-style: italic; font-weight: 400;
  line-height: 1.8; color: var(--white-mid);
  margin-bottom: 24px;
}

.testi__sep {
  width: 30px; height: 1px; background: var(--gold);
  margin-bottom: 18px;
}

.testi__author strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); display: block;
}
.testi__author span {
  font-size: 0.72rem; font-weight: 300;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════════════ */
.contact {
  padding: clamp(70px,10vw,120px) clamp(24px,5vw,80px);
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px);
  align-items: start;
  position: relative;
}

.contact__form-group {
  display: flex; flex-direction: column; gap: 16px; margin-top: 32px;
}

.contact__field {
  display: flex; flex-direction: column; gap: 8px;
}
.contact__field label {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-light);
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  background: var(--steel);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--gold);
}
.contact__field select option { background: var(--steel); }
.contact__field textarea { resize: vertical; min-height: 110px; }
.contact__field input::placeholder,
.contact__field textarea::placeholder { color: var(--text-light); }

.contact__submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 16px 40px; border: none; border-radius: var(--radius);
  cursor: pointer; width: 100%;
  transition: background 0.3s, box-shadow 0.3s;
}
.contact__submit:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 30px rgba(196,158,84,0.35);
}

.contact__info { display: flex; flex-direction: column; gap: 36px; }

.contact__info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact__info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.contact__info-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.contact__info-text p,
.contact__info-text a {
  font-size: 0.85rem; font-weight: 300;
  color: var(--text-body); line-height: 1.7;
  transition: color 0.3s;
}
.contact__info-text a:hover { color: var(--gold); }

/* WhatsApp float btn */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  font-size: 1.5rem; color: white;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-gold);
  padding: clamp(50px,7vw,80px) clamp(24px,5vw,80px) 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px,5vw,70px);
}

.footer__brand .logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white);
}
.footer__brand .logo-text .sub {
  font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); display: block; margin-top: 2px;
}
.footer__brand p {
  font-size: 0.8rem; font-weight: 300; line-height: 1.9;
  color: var(--text-body); max-width: 260px; margin-top: 16px;
}

.footer__col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer__col ul li {
  font-size: 0.78rem; font-weight: 300;
  color: var(--text-body); margin-bottom: 12px;
  transition: color 0.3s; cursor: pointer;
}
.footer__col ul li:hover { color: var(--white); }

.footer__bottom {
  margin-top: clamp(40px,5vw,60px);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer__bottom p {
  font-size: 0.66rem; font-weight: 300;
  letter-spacing: 0.1em; color: var(--text-light);
}
.footer__bottom .gold { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__bg-left { clip-path: none; width: 100%; }
  .hero__visual { display: none; }
  .hero__content { padding: 60px clamp(24px,5vw,60px) 80px; text-align: center; align-items: center; }
  .hero__subtitle { max-width: 100%; }
  .hero__pretag { justify-content: center; }

  .services__grid { grid-template-columns: 1fr 1fr; }

  .why { grid-template-columns: 1fr; }
  .why__visual { max-width: 480px; margin: 0 auto; }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }

  .sectors__grid { grid-template-columns: 1fr 1fr; }

  .owner { grid-template-columns: 1fr; }
  .owner__portrait { max-width: 340px; margin: 0 auto; }
  .owner__portrait-img { max-width: 340px; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .contact { grid-template-columns: 1fr; }

  .footer { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 34px 26px 30px; }

  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .step { flex-direction: row; text-align: left; gap: 20px; }
  .step__num { flex-shrink: 0; margin-bottom: 0; }

  .sectors__grid { grid-template-columns: 1fr; }
  .sector-card { aspect-ratio: 16/9; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid { grid-template-columns: 1fr; }

  .footer { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .strip { justify-content: center; }
  .strip__sep { display: none; }

  .whatsapp-btn { bottom: 20px; right: 20px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .hero__actions { flex-direction: column; align-items: center; }
  .step { flex-direction: column; align-items: center; text-align: center; }
}
