/* =========================================================
   Auren LNP — Boutique en Línea
   Styles: Mobile-first, Quiet Luxury
   ========================================================= */

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

/* --- CSS Custom Properties --- */
:root {
  --black:       #1E1B1A;
  --gold:        #C8A97E;
  --gold-light:  #D9BC9A;
  --rose:        #D7A49A;
  --ivory:       #F5F1EA;
  --sand:        #D8C7B5;
  --dusty-rose:  #C9A3A0;
  --white:       #FFFFFF;
  --text-dark:   #1E1B1A;
  --text-mid:    #4A4240;
  --text-light:  #7A6E6C;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --nav-h:       72px;
  --radius-sm:   4px;
  --radius-md:   8px;

  --transition:  0.3s ease;
  --shadow-sm:   0 2px 12px rgba(30,27,26,0.08);
  --shadow-md:   0 8px 32px rgba(30,27,26,0.12);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-mid);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.divider-gold {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
}

.divider-gold--left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.btn-primary:hover {
  background: #2d2927;
  border-color: #2d2927;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--ivory);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  font-size: 0.78rem;
}

.btn-wa:hover {
  background: #1fba57;
  border-color: #1fba57;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-outline-ivory {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245,241,234,0.5);
}

.btn-outline-ivory:hover {
  background: rgba(245,241,234,0.1);
  border-color: var(--ivory);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(245,241,234,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-color: rgba(200,169,126,0.2);
  box-shadow: 0 2px 20px rgba(30,27,26,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--black);
  text-transform: uppercase;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover { color: var(--black); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 1rem; }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 999;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,169,126,0.3);
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
  .nav__mobile { display: none !important; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative background shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,126,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,164,154,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero__content { position: relative; z-index: 1; }

.hero__headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-mid);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__trust p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.hero__image-wrap {
  position: relative;
  max-width: 340px;
  width: 100%;
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(30,27,26,0.18));
  animation: float 6s ease-in-out infinite;
}

.hero__image-badge {
  position: absolute;
  bottom: -1rem;
  left: -0.5rem;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0 4rem;
  }
  .hero__image-wrap { max-width: 420px; }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }
}

/* =========================================================
   BRAND ESSENCE
   ========================================================= */
.essence {
  padding: 5rem 0;
  background: var(--black);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.essence::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(200,169,126,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.essence__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.essence__label { color: var(--gold); }

.essence__title {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.essence__title em {
  font-style: italic;
  color: var(--gold);
}

.essence__text {
  color: rgba(245,241,234,0.75);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.85;
}

.essence__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.essence__pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.essence__pillar-icon {
  width: 32px;
  height: 32px;
  background: rgba(200,169,126,0.15);
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.essence__pillar p {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,241,234,0.8);
}

.essence__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(200,169,126,0.06);
  border: 1px solid rgba(200,169,126,0.15);
  border-radius: var(--radius-md);
}

.essence__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.essence__stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
}

@media (min-width: 768px) {
  .essence__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
  }
  .essence__pillars {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   CATALOG
   ========================================================= */
.catalog {
  padding: 5rem 0;
  background: var(--ivory);
}

.catalog__header {
  text-align: center;
  margin-bottom: 3rem;
}

.catalog__header .divider-gold { margin: 1rem auto; }

.catalog__subtitle {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
}

.catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: absolute;
  inset: 0;
}

.product-card__icon {
  opacity: 0.45;
  width: 48px;
  height: 48px;
}

.product-card__placeholder-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* Individual card gradients */
.product-card__placeholder--1 {
  background: linear-gradient(145deg, #D7A49A 0%, #C9A3A0 50%, #B8908C 100%);
  color: var(--white);
}

.product-card__placeholder--2 {
  background: linear-gradient(145deg, #F5F1EA 0%, #D8C7B5 50%, #C8A97E 100%);
  color: var(--black);
}

.product-card__placeholder--3 {
  background: linear-gradient(145deg, #D8C7B5 0%, #C9A3A0 60%, #B8908C 100%);
  color: var(--white);
}

.product-card__placeholder--4 {
  background: linear-gradient(145deg, #C8A97E 0%, #D9BC9A 50%, #C8A97E 100%);
  color: var(--black);
}

.product-card__placeholder--5 {
  background: linear-gradient(145deg, #1E1B1A 0%, #3A3230 50%, #2A2220 100%);
  color: var(--gold);
}

.product-card__placeholder--6 {
  background: linear-gradient(145deg, #2A2220 0%, #1E1B1A 30%, #3A3230 100%);
  color: var(--gold);
}

.product-card__placeholder--7 {
  background: linear-gradient(145deg, #D9BC9A 0%, #C8A97E 50%, #B89060 100%);
  color: var(--black);
}

.product-card__placeholder--8 {
  background: linear-gradient(145deg, #1E1B1A 0%, #2A2220 40%, #3A3230 100%);
  color: var(--gold);
  border: 1px solid rgba(200,169,126,0.2);
}

.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.product-card__desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,169,126,0.2);
  gap: 0.75rem;
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.product-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: 1px solid var(--gold);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.product-card__btn:hover {
  background: var(--gold);
  color: var(--black);
}

.catalog__cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,169,126,0.2);
}

.catalog__cta p {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

/* =========================================================
   PROMOTIONS
   ========================================================= */
.promos {
  padding: 5rem 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.promos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promos::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promos__header {
  text-align: center;
  margin-bottom: 3rem;
}

.promos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .promos__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .promos__grid { grid-template-columns: repeat(3, 1fr); }
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border-top: 2px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.promo-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,169,126,0.12);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  width: fit-content;
}

.promo-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 500;
}

.promo-card__text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.promo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--transition);
}

.promo-card__cta:hover { color: var(--gold); }

.promo-card__cta svg { transition: transform var(--transition); }
.promo-card__cta:hover svg { transform: translateX(3px); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  padding: 5rem 0;
  background: var(--ivory);
}

.newsletter__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title { margin-bottom: 1rem; }

.newsletter__text {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(200,169,126,0.3);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,126,0.12);
}

.form-input::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

.form-optional {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.newsletter__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .newsletter__form-row { grid-template-columns: 1fr 1fr; }
}

.newsletter__submit {
  text-align: center;
  margin-top: 0.5rem;
}

.newsletter__legal {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

.newsletter__success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(200,169,126,0.1);
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: var(--radius-md);
}

.newsletter__success h3 {
  color: var(--black);
  margin-bottom: 0.5rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 5rem 0;
  background: var(--black);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at left, rgba(200,169,126,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__label { color: var(--gold); }

.about__title {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.about__title em {
  font-style: italic;
  color: var(--gold);
}

.about__text {
  color: rgba(245,241,234,0.75);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about__location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 2rem;
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about__visual-box {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  border: 1px solid rgba(200,169,126,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: rgba(200,169,126,0.04);
  position: relative;
}

.about__logo-display {
  width: 100%;
  max-width: 220px;
  opacity: 0.6;
  filter: invert(1);
}

.about__quote {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  max-width: 200px;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* =========================================================
   WHATSAPP CTA BANNER
   ========================================================= */
.wa-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #D9BC9A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wa-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E1B1A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-banner__inner { position: relative; z-index: 1; }

.wa-banner__icon {
  width: 56px;
  height: 56px;
  background: rgba(30,27,26,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--black);
}

.wa-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.wa-banner__text {
  color: rgba(30,27,26,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.wa-banner .btn-primary {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
}

.wa-banner .btn-primary:hover {
  background: #2d2927;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 5rem 0;
  background: var(--ivory);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__item-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,169,126,0.1);
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact__item-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact__item-value {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
}

.contact__item-value a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: rgba(200,169,126,0.4);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.contact__item-value a:hover { color: var(--gold); }

.contact__social { margin-top: 1rem; }

.contact__social-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.contact__social-links {
  display: flex;
  gap: 0.75rem;
}

.contact__social-link {
  width: 40px;
  height: 40px;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.7rem;
  font-weight: 700;
}

.contact__social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: var(--ivory);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr; }
}

@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.footer__brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__brand-text {
  font-size: 0.82rem;
  color: rgba(245,241,234,0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.82rem;
  color: rgba(245,241,234,0.55);
  transition: color var(--transition);
  font-weight: 300;
}

.footer__link:hover { color: var(--ivory); }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,169,126,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-size: 0.7rem;
  color: rgba(245,241,234,0.35);
  letter-spacing: 0.05em;
}

.footer__copy strong { color: rgba(245,241,234,0.55); font-weight: 500; }

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.8rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  text-decoration: none;
}

.float-wa:hover {
  background: #1fba57;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.float-wa svg { flex-shrink: 0; }

.float-wa__text { display: none; }

@media (min-width: 640px) {
  .float-wa { padding: 0.85rem 1.5rem; }
  .float-wa__text { display: inline; }
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =========================================================
   CÓMO PEDIR
   ========================================================= */
.how-to-order {
  padding: 5rem 0;
  background: var(--black);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.how-to-order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,169,126,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.how-to-order__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.how-to-order__header .section-label { color: var(--gold); }
.how-to-order__header h2 { color: var(--ivory); }

.how-to-order__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}

@media (min-width: 560px) {
  .how-to-order__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .how-to-order__steps { grid-template-columns: repeat(4, 1fr); }
}

.how-step {
  background: rgba(245,241,234,0.04);
  border: 1px solid rgba(200,169,126,0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), background var(--transition);
}

.how-step:hover {
  background: rgba(200,169,126,0.07);
  border-color: rgba(200,169,126,0.3);
}

.how-step__number {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.how-step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.how-step__text {
  font-size: 0.82rem;
  color: rgba(245,241,234,0.55);
  line-height: 1.7;
}

.how-to-order__note {
  background: rgba(200,169,126,0.07);
  border: 1px solid rgba(200,169,126,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.how-to-order__note p {
  font-size: 0.82rem;
  color: rgba(245,241,234,0.5);
  font-style: italic;
}

.how-to-order__cta {
  text-align: center;
  position: relative;
}

/* =========================================================
   SECTION SPACING HELPERS
   ========================================================= */
.text-center { text-align: center; }
.mb-xs { margin-bottom: 0.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
