/* ============================================================
   ZENDA — Dark Luxury CSS
   ============================================================ */

/* --- Variables --- */
:root {
  --black:        #050505;
  --black-soft:   #0d0d0d;
  --black-card:   #111111;
  --black-border: #1e1e1e;
  --gold:         #B0A21E;
  --gold-light:   #d4c244;
  --gold-muted:   #6b6112;
  --gold-glow:    rgba(176,162,30,0.18);
  --cream:        #F5EDD0;
  --cream-muted:  #9e9070;
  --red:          #CE2626;

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

  --announce-h:  34px;
  --nav-height:  80px;
  --max-width:   1340px;
  --section-py:  clamp(5rem, 10vw, 9rem);
  --px:          clamp(1.25rem, 5vw, 3rem);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay — premium dark texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--gold); color: var(--black); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.gold-divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.25rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(176,162,30,0.35);
}
.btn--outline {
  border: 1px solid rgba(176,162,30,0.45);
  color: var(--cream-muted);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #20c05a;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.35);
}

/* --- Announce Bar (Azahar-style) --- */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  height: var(--announce-h);
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announce-bar__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: announceTicker 28s linear infinite;
  will-change: transform;
}
.announce-bar:hover .announce-bar__track { animation-play-state: paused; }
.announce-bar__track span { flex-shrink: 0; }
.announce-bar strong { font-weight: 700; }
.announce-sep { opacity: 0.45; margin: 0 0.25rem; }
@keyframes announceTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--black-card);
  border-bottom: 1px solid rgba(176,162,30,0.12);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--black-border);
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--black-border);
  gap: 0.35rem;
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stats-bar__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
@media (max-width: 600px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(3) { border-top: 1px solid var(--black-border); }
  .stats-bar__item:nth-child(4) { border-top: 1px solid var(--black-border); border-right: none; }
}

/* --- B2B Section --- */
.b2b__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.b2b__desc {
  color: var(--cream-muted);
  line-height: 1.9;
  font-size: 1rem;
  margin-top: 1.5rem;
  max-width: 46ch;
}
.b2b__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.b2b__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: 1.35rem;
  transition: border-color 0.3s;
}
.b2b__feature:hover { border-color: rgba(176,162,30,0.3); }
.b2b__feature-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.b2b__feature-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.b2b__feature-desc {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .b2b__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .b2b__features { grid-template-columns: 1fr; }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: var(--announce-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.45s var(--ease-out), box-shadow 0.45s, border-bottom 0.45s;
}
.navbar.scrolled {
  background: rgba(5,5,5,0.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(176,162,30,0.08);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--px);
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
}
.logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  color: var(--cream-muted);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-menu li a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current-page-ancestor > a { color: var(--gold); }
.nav-menu li a:hover::after,
.nav-menu li.current-menu-item > a::after { width: 100%; }

.navbar__actions { display: flex; align-items: center; gap: 1.25rem; }
.navbar__cart {
  position: relative;
  color: var(--cream-muted);
  transition: color 0.25s;
  display: flex;
  align-items: center;
}
.navbar__cart:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  width: 17px; height: 17px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
}
.navbar__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(20%) brightness(0.8);
  transform-origin: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 65% 50%, rgba(176,162,30,0.07) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0) 35%, rgba(5,5,5,0.85) 100%);
}

/* Ambient gold steam wisps */
.hero__steam-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.steam-wsp {
  position: absolute;
  bottom: -5%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(ellipse, rgba(176,162,30,0.09), transparent 68%);
  animation: steamFloat linear infinite;
  filter: blur(10px);
}
.steam-wsp:nth-child(1) { left:12%;  width:70px;  height:150px; animation-duration:8s;   animation-delay:0s;   }
.steam-wsp:nth-child(2) { left:28%;  width:55px;  height:110px; animation-duration:10.5s;animation-delay:2.2s; }
.steam-wsp:nth-child(3) { left:48%;  width:90px;  height:180px; animation-duration:7.5s; animation-delay:1s;   }
.steam-wsp:nth-child(4) { left:62%;  width:65px;  height:130px; animation-duration:9.5s; animation-delay:3.5s; }
.steam-wsp:nth-child(5) { left:78%;  width:50px;  height:100px; animation-duration:11s;  animation-delay:0.8s; }
.steam-wsp:nth-child(6) { left:5%;   width:60px;  height:120px; animation-duration:8.5s; animation-delay:4.5s; }
.steam-wsp:nth-child(7) { left:90%;  width:45px;  height:90px;  animation-duration:9s;   animation-delay:2s;   }

@keyframes steamFloat {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.5; }
  100% { transform: translateY(-105vh) scaleX(1.4); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + var(--announce-h) + 2rem);
  padding-bottom: 6rem;
}
.hero__eyebrow { margin-bottom: 2rem; }
.hero__headline {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.75rem;
  letter-spacing: -0.025em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 1.08em;
}
.hero__subtitle {
  max-width: 44ch;
  color: var(--cream-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.85;
  margin-bottom: 3rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream-muted);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:0.3; transform:scaleY(0.6); }
}

/* --- Section Base --- */
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--black); }
.section--soft { background: var(--black-soft); }

.section__header { margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section__title  { color: var(--cream); margin-top: 0.75rem; }
.section__subtitle {
  color: var(--cream-muted);
  margin-top: 1rem;
  max-width: 55ch;
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Product Cards --- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176,162,30,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(176,162,30,0.07);
}
.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a0a;
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out), filter 0.4s;
  filter: brightness(0.85);
}
.product-card:hover .product-card__image img {
  transform: scale(1.07);
  filter: brightness(0.95);
}
.product-card__badge {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
}
.product-card__body { padding: 1.35rem; }
.product-card__origin {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.product-card__desc {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--black-border);
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
/* WooCommerce price override */
.product-card__price .woocommerce-Price-amount { color: var(--gold); font-family: var(--font-serif); }
.product-card__cta {
  width: 36px; height: 36px;
  border: 1px solid rgba(176,162,30,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s var(--ease-out);
}
.product-card__cta:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1) rotate(5deg);
}
.products__more { text-align: center; margin-top: 3.5rem; }

/* --- Origin Section --- */
.origin__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.origin__image { position: relative; }
.origin__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: 3px;
  filter: contrast(1.05);
  display: block;
}
.origin__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.2;
}
.origin__image-frame {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid rgba(176,162,30,0.2);
  border-radius: 3px;
  pointer-events: none;
  z-index: -1;
}
.origin__stat {
  position: absolute;
  bottom: -2.5rem; right: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem 1.75rem;
  text-align: center;
  border-radius: 3px;
  min-width: 130px;
}
.origin__stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.origin__stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.35rem;
  font-weight: 600;
}
.origin__text { padding-bottom: 3rem; }
.origin__text .section__title { margin-top: 0.75rem; }
.origin__body {
  color: var(--cream-muted);
  line-height: 1.9;
  margin-top: 1.5rem;
  font-size: 1rem;
}
.origin__body + .origin__body { margin-top: 1rem; }

/* --- Process --- */
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: clamp(2rem,5vw,4rem);
}
.process__line {
  position: absolute;
  top: 2rem; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted) 20%, var(--gold-muted) 80%, transparent);
  pointer-events: none;
}
.process__step {
  padding: 0 1rem 2rem;
  text-align: center;
  position: relative;
}
.process__dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--black-soft), 0 0 0 5px var(--gold-muted);
  transition: box-shadow 0.3s;
}
.process__step:hover .process__dot {
  box-shadow: 0 0 0 6px var(--black-soft), 0 0 0 7px var(--gold), 0 0 20px var(--gold-glow);
}
.process__icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.9rem;
  line-height: 1;
  filter: grayscale(0.2);
}
.process__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.process__desc {
  font-size: 0.78rem;
  color: var(--cream-muted);
  line-height: 1.65;
}

/* --- Blog --- */
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}
.blog-card {
  border-bottom: 1px solid var(--black-border);
  padding-bottom: 2rem;
  transition: border-color 0.3s;
}
.blog-card:hover { border-color: var(--gold-muted); }
.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 1.35rem;
  background: var(--black-card);
}
.blog-card__image img {
  width:100%; height:100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out), filter 0.35s;
  filter: brightness(0.78) grayscale(15%);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
  filter: brightness(0.9) grayscale(0);
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.blog-card__category {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.blog-card__date { font-size: 0.75rem; color: var(--cream-muted); }
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}
.blog-card:hover .blog-card__title { color: var(--gold-light); }
.blog-card__excerpt {
  font-size: 0.84rem;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.blog-card__read-more {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.blog-card:hover .blog-card__read-more { gap: 0.8rem; }

/* --- Perfiles Teaser --- */
.perfiles-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.perfil-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  overflow: hidden;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
  text-decoration: none;
  color: inherit;
}
.perfil-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176,162,30,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.perfil-card__accent {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 4px 0 80px;
  border-left: 1px solid;
  border-bottom: 1px solid;
}
.perfil-card__img-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.perfil-card__svg {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
}
.perfil-card__sca {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.perfil-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}
.perfil-card__origin {
  font-size: 0.72rem;
  color: var(--cream-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.perfil-card__process {
  font-size: 0.68rem;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}
.perfil-card__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--black-border);
}
.perfil-card__note {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.6rem;
  border: 1px solid;
  border-radius: 20px;
  text-transform: capitalize;
}

/* --- Testimonials --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.testimonial-card:hover {
  border-color: rgba(176,162,30,0.25);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
}
.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--cream-muted);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--black-border);
}
.testimonial-card__name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.testimonial-card__city {
  font-size: 0.72rem;
  color: var(--gold-muted);
  letter-spacing: 0.1em;
}
.testimonial-card__city::before {
  content: '· ';
}

/* --- About Page --- */
.about-hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(176,162,30,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero__video {
  /* Negro del video = invisible sobre negro del hero. Sin blend-mode necesario. */
  width: min(500px, 82vw);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  animation: aboutLogoIn 1.2s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes aboutLogoIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.about-hero__foot {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.about-hero__label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.about-story__p {
  color: var(--cream-muted);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.about-value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.about-value-card:hover {
  border-color: rgba(176,162,30,0.3);
  transform: translateY(-4px);
}
.about-value-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 1rem;
}
.about-value-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.about-value-card__desc {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .about-story__inner { grid-template-columns: 1fr; }
  .about-hero__video { width: min(360px, 88vw); }
}

/* --- Gallery --- */
.gallery__grid {
  columns: 3;
  column-gap: 0.75rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--black-border);
  position: relative;
}
.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.65s var(--ease-out), filter 0.4s;
  filter: brightness(0.82) grayscale(12%);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.96) grayscale(0);
}
@media (max-width: 768px) {
  .gallery__grid { columns: 2; }
}
@media (max-width: 480px) {
  .gallery__grid { columns: 1; }
}

/* --- WhatsApp CTA --- */
.whatsapp-cta {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}
.whatsapp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(176,162,30,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.whatsapp-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--cream);
  margin: 0.75rem auto 0.75rem;
  max-width: 22ch;
  line-height: 1.2;
}
.whatsapp-cta__sub { color: var(--cream-muted); margin-bottom: 2.5rem; }

/* --- Footer --- */
.footer {
  background: #030303;
  border-top: 1px solid var(--black-border);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 4rem;
}
.footer__brand .logo-text { font-size: 1.75rem; }
.footer__tagline {
  color: var(--cream-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 28ch;
}
.footer__socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--cream-muted);
  transition: color 0.25s, padding-left 0.25s;
}
.footer__links a:hover { color: var(--cream); padding-left: 0.35rem; }
.footer__bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.75rem; color: var(--cream-muted); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a {
  font-size: 0.75rem;
  color: var(--cream-muted);
  transition: color 0.25s;
}
.footer__bottom-links a:hover { color: var(--gold); }

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37,211,102,0.55);
}
.float-whatsapp svg { width: 27px; height: 27px; }

/* Scroll reveal: handled entirely by Web Animations API in JS */

/* Steam particles: everything handled by Web Animations API in JS */

/* --- WooCommerce Overrides --- */
.woocommerce-store-notice,
.woocommerce-breadcrumb { display: none; }

/* --- Post Content Styles --- */
.post-content h2, .post-content h3 { color: var(--cream); margin: 2rem 0 1rem; }
.post-content p { color: var(--cream-muted); line-height: 1.9; margin-bottom: 1.25rem; }
.post-content a { color: var(--gold); }
.post-content a:hover { text-decoration: underline; }
.post-content img { border-radius: 3px; margin: 1.5rem 0; }
.post-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--cream-muted);
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .process__line { display: none; }
}
@media (max-width: 1024px) {
  .origin__inner { grid-template-columns: 1fr; }
  .origin__image { max-width: 480px; margin: 0 auto; padding-bottom: 4rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    z-index: 999;
  }
  .navbar__nav.open { opacity: 1; pointer-events: all; }
  .nav-menu { flex-direction: column; gap: 2.25rem; text-align: center; }
  .nav-menu li a { font-size: 1.3rem; letter-spacing: 0.18em; }
  .navbar__hamburger { display: flex; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(2.75rem, 12vw, 5rem); }
}
@media (max-width: 540px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .products__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .origin__stat { right: 0; bottom: -2rem; }
}

/* ============================================================
   ZENDA — Scroll & Motion Effects
   ============================================================ */

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-muted), var(--gold), var(--gold-light));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(176,162,30,0.55);
  pointer-events: none;
}

/* Cursor dot */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.5;
  margin: -3.5px 0 0 -3.5px;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              opacity 0.35s, margin 0.35s var(--ease-out);
  will-change: transform;
}
#cursor-dot.is-hovering {
  width: 34px; height: 34px;
  opacity: 0.1;
  margin: -17px 0 0 -17px;
}
@media (pointer: coarse) { #cursor-dot { display: none; } }

/* Section entrance line */
.section { position: relative; }
.section::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent);
  opacity: 0;
  transform: scaleX(0.05);
  transform-origin: left center;
  transition: transform 1.5s var(--ease-out), opacity 0.7s ease;
  pointer-events: none;
}
.section.section-in-view::after {
  opacity: 0.2;
  transform: scaleX(1);
}

/* Enhanced reveal variants */
[data-reveal="clip-left"] {
  opacity: 1 !important;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.15s var(--ease-out) !important;
}
[data-reveal="clip-left"].revealed { clip-path: inset(0 0% 0 0); }

/* tilt-up handled by WAAPI in JS */

/* Marquee strip */
.marquee-strip {
  background: var(--black-card);
  border-top: 1px solid rgba(176,162,30,0.12);
  border-bottom: 1px solid rgba(176,162,30,0.12);
  overflow: hidden;
  padding: 0.8rem 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}
.marquee-strip:hover .marquee-item { color: var(--gold); }
.marquee-sep {
  color: var(--gold-muted);
  opacity: 0.25;
  font-size: 0.45rem;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 380px) {
  .products__grid { grid-template-columns: 1fr; }
  .btn { padding: 0.85rem 1.5rem; font-size: 0.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal].revealed { animation: none !important; opacity: 1 !important; transform: none !important; }
  .steam-wsp { display: none; }
  .scroll-line { animation: none; opacity: 0.6; }
}

/* ============================================================
   BLOG PAGE (home.php)
   ============================================================ */

.blog-page {
  background: var(--black);
  padding-top: calc(var(--nav-height) + var(--announce-h));
  min-height: 100vh;
}

/* Page header */
.blog-page-header {
  text-align: center;
  padding: clamp(3rem,8vw,6.5rem) 0 clamp(2rem,5vw,4rem);
  border-bottom: 1px solid var(--black-border);
}
.blog-page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem,6vw,5rem);
  color: var(--cream);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 0;
}
.blog-page-header__sub {
  color: var(--cream-muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 48ch;
  margin-inline: auto;
}

/* Featured post */
.blog-featured {
  position: relative;
  min-height: clamp(340px, 50vw, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.blog-featured__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38) saturate(0.65);
  transition: transform 0.9s var(--ease-out), filter 0.5s;
  z-index: 0;
}
.blog-featured:hover .blog-featured__bg {
  transform: scale(1.03);
  filter: brightness(0.45) saturate(0.8);
}
.blog-featured__bg--empty {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a180a 100%);
}
.blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,5,5,0.97) 0%,
    rgba(5,5,5,0.65) 45%,
    rgba(5,5,5,0.08) 100%);
  z-index: 1;
}
.blog-featured__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem,6vw,5rem);
  max-width: 800px;
}
.blog-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem,4.5vw,3.6rem);
  color: var(--cream);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 0.6rem;
}
.blog-featured__title a { color: inherit; text-decoration: none; transition: color 0.3s; }
.blog-featured__title a:hover { color: var(--gold-light); }
.blog-featured__excerpt {
  color: rgba(245,237,208,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 1.25rem;
}
.blog-featured__foot {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: rgba(245,237,208,0.4);
  letter-spacing: 0.06em;
}
.blog-meta-sep { opacity: 0.3; }
.blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(176,162,30,0.3);
  transition: gap 0.3s, border-color 0.3s;
}
.blog-featured__cta:hover { gap: 0.75rem; border-bottom-color: var(--gold); }

/* Category badge */
.blog-cat-badge {
  display: inline-block;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(176,162,30,0.09);
  border: 1px solid rgba(176,162,30,0.2);
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  margin-bottom: 0.5rem;
}
.blog-cat-badge:hover { background: rgba(176,162,30,0.18); border-color: rgba(176,162,30,0.4); }
.blog-cat-badge--sm { font-size: 0.52rem; padding: 0.18rem 0.55rem; margin-bottom: 0.6rem; }

/* Grid section */
.blog-grid-section { padding: clamp(3rem,7vw,6rem) 0 clamp(4rem,8vw,7rem); }
.blog-grid-header { margin-bottom: 2.5rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Blog card */
.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(176,162,30,0.22);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
}
.blog-card__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.75);
  transition: transform 0.65s var(--ease-out), filter 0.4s;
}
.blog-card:hover .blog-card__img {
  transform: scale(1.07);
  filter: brightness(0.88) saturate(1);
}
.blog-card__img-empty {
  width: 100%; height: 100%;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem,1.6vw,1.15rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--cream);
  margin: 0;
}
.blog-card__title a { color: inherit; text-decoration: none; transition: color 0.25s; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt {
  font-size: 0.83rem;
  color: var(--cream-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  color: rgba(245,237,208,0.3);
  letter-spacing: 0.05em;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid var(--black-border);
}

/* Pagination */
.blog-pagination { margin-top: 3.5rem; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 0.5rem;
  border: 1px solid var(--black-border);
  color: var(--cream-muted); font-size: 0.8rem;
  text-decoration: none; border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  gap: 0.35rem;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  border-color: var(--gold); color: var(--gold); background: rgba(176,162,30,0.06);
}
.blog-pagination .prev, .blog-pagination .next { padding: 0 1rem; font-size: 0.7rem; letter-spacing: 0.1em; }

/* Empty state */
.blog-empty { min-height: 72vh; display: flex; align-items: center; }
.blog-empty__inner {
  max-width: 540px; margin: 0 auto;
  text-align: center; padding: 5rem 0;
}
.blog-empty__deco { margin-bottom: 1.75rem; }
.blog-empty__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem,5vw,3rem);
  color: var(--cream); font-weight: 700; line-height: 1.2;
  margin: 0.75rem 0 0.6rem;
}
.blog-empty__sub {
  color: var(--cream-muted); font-size: 0.95rem; line-height: 1.75;
  margin-bottom: 2.25rem;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { min-height: 280px; }
  .blog-featured__title { font-size: 1.6rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--black);
  padding-top: calc(var(--nav-height) + var(--announce-h));
  min-height: 100vh;
}

/* Hero */
.contact-hero {
  text-align: center;
  padding: clamp(4rem,10vw,8rem) 0 clamp(3rem,7vw,5rem);
  position: relative;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(176,162,30,0.12));
  pointer-events: none;
}
.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem,9vw,8rem);
  color: var(--cream);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 1rem;
}
.contact-hero__sub {
  color: var(--cream-muted);
  font-size: 1rem;
  margin-top: 1.25rem;
  max-width: 46ch;
  margin-inline: auto;
  line-height: 1.75;
}

/* Channels + Form section */
.contact-section {
  border-top: 1px solid var(--black-border);
  padding: clamp(3.5rem,8vw,7rem) 0 clamp(4rem,9vw,8rem);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,7vw,7rem);
  align-items: start;
}
.contact-layout__lead { margin-bottom: 2.5rem; }
.contact-layout__lead h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem,3vw,2.1rem);
  color: var(--cream);
  font-weight: 700;
  margin-top: 0.75rem;
  line-height: 1.25;
}

/* Channel cards */
.contact-channels { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease-out);
}
.contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(176,162,30,0.28);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.contact-card:hover::before { transform: scaleY(1); }

/* WhatsApp accent */
.contact-card--wa { border-color: rgba(37,211,102,0.18); }
.contact-card--wa::before { background: #25d366; }
.contact-card--wa:hover { border-color: rgba(37,211,102,0.38); }

.contact-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(176,162,30,0.07);
  border: 1px solid rgba(176,162,30,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-muted);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.contact-card--wa .contact-card__icon {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.18);
  color: #4ade80;
}
.contact-card:hover .contact-card__icon {
  background: rgba(176,162,30,0.14);
  border-color: rgba(176,162,30,0.35);
  color: var(--gold);
}
.contact-card--wa:hover .contact-card__icon {
  background: rgba(37,211,102,0.14);
  border-color: rgba(37,211,102,0.35);
}

.contact-card__info { flex: 1; min-width: 0; }
.contact-card__label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.2rem;
}
.contact-card--wa .contact-card__label { color: rgba(74,222,128,0.65); }
.contact-card__value {
  font-size: 0.93rem;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-card__arrow {
  color: var(--gold-muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}
.contact-card:hover .contact-card__arrow {
  transform: translateX(4px);
  color: var(--gold);
}
.contact-card--wa:hover .contact-card__arrow { color: #4ade80; }

/* Sticky form */
.contact-form-wrap {
  position: sticky;
  top: calc(var(--nav-height) + var(--announce-h) + 1.5rem);
}
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: clamp(2rem,5vw,2.75rem);
}
.contact-form__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.contact-form__sub {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Floating label fields */
.cf-field {
  position: relative;
  margin-bottom: 2rem;
}
.cf-field input,
.cf-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--black-border);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.75rem 0 0.5rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  box-sizing: border-box;
}
.cf-field textarea { min-height: 96px; }
.cf-field input:focus,
.cf-field textarea:focus { border-bottom-color: transparent; }

.cf-label {
  position: absolute;
  top: 0.75rem; left: 0;
  font-size: 0.85rem;
  color: var(--cream-muted);
  pointer-events: none;
  transition: top 0.25s, font-size 0.25s, color 0.25s, letter-spacing 0.25s;
}
.cf-field input:focus ~ .cf-label,
.cf-field input:not(:placeholder-shown) ~ .cf-label,
.cf-field textarea:focus ~ .cf-label,
.cf-field textarea:not(:placeholder-shown) ~ .cf-label {
  top: -0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.cf-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.38s var(--ease-out);
}
.cf-bg-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 100%;
  background: var(--black-border);
}
.cf-field input:focus ~ .cf-bg-line,
.cf-field textarea:focus ~ .cf-bg-line { opacity: 0; }
.cf-field input:focus ~ .cf-line,
.cf-field textarea:focus ~ .cf-line { width: 100%; }

/* Form feedback */
.cf-msg {
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cf-msg--ok {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
}
.cf-msg--err {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.18);
  color: #fca5a5;
}

/* Submit */
.cf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-top: 0.25rem;
}
.cf-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(176,162,30,0.38);
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }
}
@media (max-width: 560px) {
  .contact-hero h1 { font-size: clamp(2.8rem,12vw,4rem); }
}
