/* ============================================================
   GRUPO ROGERS — Design System
   Premium Mexican Leather & Artisanal Spirits
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ========================= VARIABLES ========================= */
:root {
  /* Core palette */
  --c-black: #0f0d0a;
  --c-dark: #1c1915;
  --c-dark-2: #222019;
  --c-dark-wood: #2a2420;
  --c-brown: #3d2e1e;

  /* Accent */
  --c-gold: #C3922E;
  --c-gold-light: #E6C275;
  --c-gold-dark: #9a7323;
  --c-amber: #d4a84b;

  /* Light */
  --c-cream: #f5efe6;
  --c-parchment: #ede4d4;
  --c-sand: #f0ebe3;
  --c-white: #faf8f5;

  /* Text */
  --c-text: #2a2520;
  --c-text-light: #f5efe6;
  --c-text-muted: #8a7e72;

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Lora', Georgia, serif;
  --ff-ui: 'Montserrat', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: clamp(2rem, 4vw, 3rem);
  --space-xl: clamp(3rem, 6vw, 5rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);
  --space-3xl: clamp(5rem, 10vw, 9rem);

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
  --nav-h: 80px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15,13,10,0.08);
  --shadow-md: 0 4px 20px rgba(15,13,10,0.12);
  --shadow-lg: 0 8px 40px rgba(15,13,10,0.18);
  --shadow-gold: 0 4px 20px rgba(195,146,46,0.15);

  /* Easing */
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Transitions */
  --t-fast: 0.2s var(--ease-luxury);
  --t-normal: 0.4s var(--ease-luxury);
  --t-slow: 0.7s var(--ease-luxury);
}

/* ========================= RESET ========================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-display); font-weight: 700; line-height: 1.2; }

/* ========================= UTILITIES ========================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.text-gold { color: var(--c-gold); }
.text-center { text-align: center; }
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--c-gold);
  margin: var(--space-sm) auto;
}
.gold-line--left { margin-left: 0; }

/* ========================= TYPOGRAPHY ========================= */
.heading-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.heading-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
}
.heading-sm {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}
.subtitle {
  font-family: var(--ff-ui);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.body-lg {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
}
.body-sm {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================= NAVIGATION ========================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-normal), box-shadow var(--t-normal);
}
.nav--transparent {
  background: transparent;
}
.nav--scrolled {
  background: rgba(28,25,21,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.nav__brand {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.nav__brand span {
  font-weight: 400;
  color: var(--c-text-light);
  opacity: 0.7;
  font-size: 0.85em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__link {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-light);
  opacity: 0.8;
  letter-spacing: 0.04em;
  padding: 0.4rem 0;
  position: relative;
  transition: opacity var(--t-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width var(--t-normal);
}
.nav__link:hover,
.nav__link--active {
  opacity: 1;
  color: var(--c-gold-light);
}
.nav__link--active::after,
.nav__link:hover::after {
  width: 100%;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-text-light);
  margin-left: var(--space-sm);
  background: rgba(195,146,46,0.15);
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(195,146,46,0.3);
  transition: all var(--t-fast);
  cursor: pointer;
}
.lang-toggle:hover {
  background: rgba(195,146,46,0.25);
  border-color: var(--c-gold);
}
.lang-toggle__active {
  color: var(--c-gold);
  font-weight: 600;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15,13,10,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu .nav__link {
  font-size: 1.3rem;
  opacity: 0.9;
}
.mobile-menu .lang-toggle {
  margin-left: 0;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

/* ========================= HERO ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--c-black);
}
.hero--short {
  min-height: 60vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,13,10,0.5) 0%,
    rgba(15,13,10,0.3) 40%,
    rgba(15,13,10,0.6) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--container-pad);
  max-width: 900px;
}
.hero__tag {
  font-family: var(--ff-ui);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold);
}
.hero__line {
  width: 80px;
  height: 2px;
  background: var(--c-gold);
  margin: var(--space-md) auto;
}
.hero__subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--c-text-light);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gold);
  opacity: 0.6;
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--c-gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Wood texture overlay (CSS-only) */
.texture-wood {
  position: relative;
}
.texture-wood::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(195,146,46,0.02) 1px,
      transparent 2px,
      transparent 40px
    );
  pointer-events: none;
}

/* Leather texture overlay (CSS-only) */
.texture-leather::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(61,46,30,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61,46,30,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ========================= SECTIONS ========================= */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}
.section--dark {
  background: var(--c-dark);
  color: var(--c-text-light);
}
.section--dark-wood {
  background: var(--c-dark-wood);
  color: var(--c-text-light);
}
.section--cream {
  background: var(--c-cream);
}
.section--parchment {
  background: var(--c-parchment);
}
.section--gold {
  background: linear-gradient(135deg, var(--c-gold-dark) 0%, var(--c-gold) 50%, var(--c-amber) 100%);
  color: var(--c-white);
}
.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section__tag {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-xs);
}
.section--dark .section__tag,
.section--dark-wood .section__tag {
  color: var(--c-gold-light);
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}
.section--dark .section__title { color: var(--c-white); }

/* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-dark);
}
.btn--gold:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: var(--c-dark);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--c-dark);
  color: var(--c-gold);
}
.btn--dark:hover {
  background: var(--c-dark-wood);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--c-white);
  color: var(--c-dark);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--wa {
  background: #25d366;
  color: #fff;
}
.btn--wa:hover {
  background: #1fb855;
  transform: translateY(-2px);
}
.btn__arrow {
  transition: transform var(--t-fast);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ========================= STATS ROW ========================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
  padding: var(--space-xl) 0;
}
.stat__number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat__label {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.section--dark .stat__label { color: rgba(245,239,230,0.6); }

/* ========================= SPLIT SECTION ========================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__text { padding: var(--space-lg) 0; }
.split__text .section__tag { text-align: left; }
.split__text .section__title { text-align: left; }
.split__text .gold-line { margin-left: 0; }
.split__text p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.split__image:hover img {
  transform: scale(1.04);
}
/* Gold corner accents */
.split__image::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--c-gold);
  border-left: 2px solid var(--c-gold);
  z-index: 2;
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.split__image::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  border-bottom: 2px solid var(--c-gold);
  border-right: 2px solid var(--c-gold);
  z-index: 2;
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.split__image:hover::before,
.split__image:hover::after {
  opacity: 1;
}

/* ========================= CARDS ========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-normal);
  border: 1px solid rgba(195,146,46,0.08);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(195,146,46,0.2);
}
.section--dark .card {
  background: var(--c-dark-wood);
  border-color: rgba(195,146,46,0.1);
}
.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card:hover .card__image img {
  transform: scale(1.06);
}
.card__body {
  padding: var(--space-md);
}
.card__tag {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-xs);
}
.card__title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}
.section--dark .card__title { color: var(--c-white); }
.card__desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.section--dark .card__desc { color: rgba(245,239,230,0.6); }

/* ========================= GALLERY GRID ========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery--masonry {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
}
.gallery--masonry .gallery__item:first-child {
  grid-row: span 2;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery__item--square { aspect-ratio: 1; }
.gallery__item--tall { aspect-ratio: 3/4; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-fast);
}
.gallery__item:hover .gallery__label {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= LOCATION CARDS ========================= */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}
.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.location-card:hover img {
  transform: scale(1.06);
}
.location-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
}
.location-card__name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--c-white);
  font-weight: 600;
}
.location-card__detail {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: var(--c-gold-light);
  letter-spacing: 0.05em;
}

/* ========================= BRANDS SHOWCASE ========================= */
.brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  display: flex;
  align-items: flex-end;
}
.brand-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-card__info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(to top, rgba(15,13,10,0.9) 0%, transparent 100%);
}
.brand-card__name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--c-gold);
  font-weight: 700;
}
.brand-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-light);
  opacity: 0.8;
}

/* ========================= EXPERIENCE SECTION ========================= */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.experience-card:hover img {
  transform: scale(1.05);
}
.experience-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(15,13,10,0.7) 0%, transparent 100%);
  color: var(--c-white);
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================= CONTACT FORM ========================= */
.form {
  max-width: 600px;
  margin: 0 auto;
}
.form__group {
  margin-bottom: var(--space-md);
}
.form__label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}
.form__input,
.form__textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--c-white);
  border: 1px solid rgba(195,146,46,0.2);
  border-radius: var(--radius-md);
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(195,146,46,0.1);
}
.form__textarea {
  resize: vertical;
  min-height: 140px;
}

/* ========================= FOOTER ========================= */
.footer {
  background: var(--c-black);
  color: var(--c-text-light);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}
.footer__desc {
  font-size: 0.9rem;
  color: rgba(245,239,230,0.6);
  line-height: 1.7;
  max-width: 320px;
}
.footer__heading {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}
.footer__link {
  display: block;
  font-size: 0.9rem;
  color: rgba(245,239,230,0.7);
  padding: 0.3rem 0;
  transition: color var(--t-fast);
}
.footer__link:hover {
  color: var(--c-gold-light);
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(245,239,230,0.7);
  margin-bottom: var(--space-xs);
}
.footer__contact-icon {
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(195,146,46,0.15);
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: rgba(245,239,230,0.4);
}
.footer__socials {
  display: flex;
  gap: var(--space-sm);
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(195,146,46,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  transition: all var(--t-fast);
}
.footer__social:hover {
  background: var(--c-gold);
  color: var(--c-dark);
}

/* ========================= WHATSAPP FAB ========================= */
.wa-fab {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all var(--t-fast);
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.wa-fab svg {
  width: 28px;
  height: 28px;
}

/* ========================= SPLASH SCREEN ========================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.splash__brand {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}
.splash__bar {
  width: 120px;
  height: 2px;
  background: rgba(195,146,46,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.splash__bar-fill {
  height: 100%;
  background: var(--c-gold);
  width: 0%;
  animation: splashFill 1.2s ease forwards;
}
@keyframes splashFill {
  to { width: 100%; }
}

/* ========================= PAGE TRANSITION ========================= */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 8888;
  background: var(--c-black);
  pointer-events: none;
  opacity: 0;
}
.page-transition--enter {
  animation: ptEnter 0.45s ease forwards;
}
.page-transition--exit {
  animation: ptExit 0.55s ease forwards;
}
@keyframes ptEnter { to { opacity: 1; } }
@keyframes ptExit { to { opacity: 0; } }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 992px) {
  .split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .split--reverse { direction: ltr; }
  .split__image { max-height: 400px; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .brands { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery--masonry { grid-template-columns: 1fr 1fr; }
  .gallery--masonry .gallery__item:first-child { grid-row: auto; }
  .card-grid, .card-grid--3 { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 3rem;
  }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
