/* ============================================
   SABOR & ARTE — MODERN REDESIGN 2025
   ============================================ */

:root {
  --bg: #f8f4ee;
  --bg-dark: #0f0d0a;
  --bg-dark2: #181410;
  --surface: #ffffff;
  --ink: #1c1410;
  --ink-inv: #f0e8de;
  --muted: #7a7065;
  --muted-inv: #a89a8e;
  --gold: #c9a252;
  --gold-lt: #e4c07e;
  --wine: #7c1a2a;
  --line: rgba(28, 20, 16, 0.09);
  --line-inv: rgba(240, 232, 222, 0.1);
  --max: 1280px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --sh: 0 2px 12px rgba(28,20,16,.06), 0 8px 32px rgba(28,20,16,.05);
  --sh-lg: 0 8px 32px rgba(28,20,16,.1), 0 24px 64px rgba(28,20,16,.08);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

/* ---- CONTAINER ---- */
.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
  font-family: "Cormorant Garamond", serif;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--bg-dark);
}

/* ---- TOP STRIP ---- */
.top-strip {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line-inv);
  color: var(--ink-inv);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.top-strip-content {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.65rem 0;
}

/* ---- UTILITY BAR ---- */
.utility-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0 0.9rem;
}

.utility-link {
  text-decoration: none;
  color: var(--muted-inv);
  font-size: 0.85rem;
  transition: color 200ms;
}

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

.utility-bar .utility-link:last-child {
  justify-self: end;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--ink-inv);
  text-align: center;
}

.brand-logo {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo--footer {
  height: 130px;
  margin-bottom: 0.75rem;
}

/* ---- STICKY NAV ---- */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(15, 13, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-inv);
  width: 100%;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted-inv);
  font-size: 0.875rem;
  transition: color 200ms;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 250ms ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.section-heading a,
.reserve-links a,
.footer a {
  text-decoration: none;
}

.search-shell {
  border: 1px solid var(--line-inv);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  color: var(--muted-inv);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
  cursor: text;
  transition: border-color 200ms;
}

.search-shell:hover {
  border-color: rgba(240, 232, 222, 0.25);
}

.search-shell input {
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
}

.nav-actions,
.hero-actions,
.card-actions,
.service-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- BUTTONS ---- */
.nav-pill, .btn {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
}

.nav-pill {
  border: 1px solid var(--line-inv);
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-inv);
  transition: background 200ms;
}

.nav-pill:hover { background: rgba(255, 255, 255, 0.1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 82, 0.32);
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.btn.ghost {
  background: transparent;
  color: var(--ink-inv);
  border-color: rgba(240, 232, 222, 0.28);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(240, 232, 222, 0.45);
  box-shadow: none;
}

/* ---- HERO ---- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.hero-copy {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-inv);
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-copy h1 {
  margin: 0.9rem 0 1.3rem;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.9;
  color: var(--ink-inv);
  letter-spacing: -0.02em;
  font-family: "Cormorant Garamond", serif;
  max-width: 10ch;
}

.lead {
  color: var(--muted-inv);
  line-height: 1.65;
  max-width: 42ch;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-inv);
}

.hero-notes span {
  color: var(--muted-inv);
  font-size: 0.83rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.hero-notes span::before {
  content: "→";
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.12em;
}

/* ---- HERO CARD ---- */
.hero-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #000;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 700ms;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.72) 0%, rgba(15,13,10,0.1) 55%, transparent 100%);
}

.hero-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  border-radius: 8px;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-dark2);
  border-top: 1px solid var(--line-inv);
}

.hero-card-foot strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink-inv);
  font-size: 0.92rem;
}

.hero-card-foot p {
  color: var(--muted-inv);
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-shrink: 0;
}

.hero-dots button {
  width: 24px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(201, 162, 82, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 300ms, width 300ms;
}

.hero-dots button.is-active {
  background: var(--gold);
  width: 42px;
}

/* ---- PROMO ROW ---- */
.promo-row {
  padding: 2rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.promo-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.3rem 1.2rem;
  transition: box-shadow 220ms, transform 220ms;
}

.promo-grid article:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
}

.promo-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.promo-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---- SECTION HEADING ---- */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 200ms;
}

.section-heading a:hover { opacity: 0.7; }

/* ---- CATEGORIES ---- */
.categories {
  padding: 3rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.category-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: box-shadow 240ms, transform 240ms;
  text-decoration: none;
  display: block;
  color: inherit;
}

.category-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.category-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  transition: transform 400ms ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-copy {
  padding: 1rem 1.1rem;
}

.category-copy h3,
.product-copy h3,
.gift-panel h3,
.reserve-card h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 0.3rem;
  font-size: 1.65rem;
  line-height: 1;
}

.category-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---- COLLECTION STRIP ---- */
.collection-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 3rem;
}

.collection-strip article {
  background: var(--bg-dark);
  border: 1px solid var(--line-inv);
  border-radius: var(--r);
  padding: 1.5rem;
  cursor: pointer;
  transition: background 200ms;
}

.collection-strip article:hover {
  background: var(--bg-dark2);
}

.collection-strip strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink-inv);
}

.collection-strip p {
  color: var(--muted-inv);
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.5;
}

/* ---- FEATURED ---- */
.featured {
  padding: 0 0 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 240ms, transform 240ms;
}

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

.product-image {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-image span {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy {
  padding: 1rem 1rem 0.5rem;
  flex: 1;
}

.product-copy h3 {
  font-size: 1.5rem;
}

.product-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.price {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--wine);
  font-size: 1.05rem;
  font-weight: 800;
}

.card-actions {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  gap: 0.55rem;
}

.card-actions .btn {
  flex: 1;
  font-size: 0.82rem;
  padding: 0.7rem 0.8rem;
}

.card-actions .btn.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.card-actions .btn.ghost:hover {
  background: var(--bg);
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

/* ---- GIFT BANNER ---- */
.gift-banner {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-inv);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2.5rem;
  margin: 1rem 0 3rem;
}

.gift-copy {
  padding: 0.5rem 0;
}

.gift-copy h2 {
  color: var(--ink-inv);
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.gift-copy p {
  color: var(--muted-inv);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.gift-panel {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.gift-panel article {
  border-radius: var(--r);
  border: 1px solid var(--line-inv);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.1rem;
}

.gift-panel h3 {
  color: var(--ink-inv);
  font-size: 1.4rem;
}

.gift-panel p {
  color: var(--muted-inv);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
}

/* ---- RESERVES ---- */
.reserves {
  padding: 0 0 3rem;
}

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.reserve-card {
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.3rem;
  display: grid;
  gap: 0.75rem;
  transition: box-shadow 220ms, transform 220ms;
}

.reserve-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
}

.reserve-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.55rem;
}

.reserve-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.5;
}

.reserve-card strong {
  color: var(--wine);
  font-size: 1.05rem;
  font-weight: 800;
}

.reserve-links {
  display: flex;
  gap: 1.2rem;
}

.reserve-links a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 200ms;
}

.reserve-links a:hover { opacity: 0.7; }

/* ---- SERVICE STRIP ---- */
.service-strip {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-inv);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.service-strip h2 {
  color: var(--ink-inv);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  max-width: 36ch;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.newsletter h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.newsletter p {
  color: var(--muted);
}

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

.nl-form input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  min-width: 200px;
}

.nl-form input:focus {
  border-color: var(--gold);
}

.nl-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.nl-success {
  text-align: center;
  flex-shrink: 0;
}

.nl-success .promo-code-value {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.4rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-dark);
  padding: 3rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-inv);
}

.footer .brand {
  color: var(--ink-inv);
  margin-bottom: 0.75rem;
  display: block;
  font-size: 1.5rem;
}

.footer p {
  color: var(--muted-inv);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer strong {
  display: block;
  color: var(--muted-inv);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer a {
  color: var(--muted-inv);
  font-size: 0.9rem;
  transition: color 200ms;
}

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

/* ---- FOOTER SOCIAL BUTTONS ---- */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-inv);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-inv);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms, color 200ms, border-color 200ms;
}

.social-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.social-btn.whatsapp:hover  { background: rgba(37, 211, 102, 0.15); border-color: rgba(37, 211, 102, 0.4); color: #25d366; }
.social-btn.instagram:hover { background: rgba(228, 64, 95, 0.15);  border-color: rgba(228, 64, 95, 0.4);  color: #e4405f; }
.social-btn.facebook:hover  { background: rgba(24, 119, 242, 0.15); border-color: rgba(24, 119, 242, 0.4); color: #1877f2; }
.social-btn.tiktok:hover    { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); color: #fff; }

/* ============================================
   PROMO BANNER (PRIMERA VISITA)
   ============================================ */

.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: overlayIn 350ms ease;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.promo-modal {
  background: var(--bg-dark);
  border: 1px solid var(--line-inv);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: modalIn 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-inv);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-inv);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  padding: 0;
  line-height: 1;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink-inv);
}

.promo-deco {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  margin-bottom: 1.5rem;
  border-radius: 999px;
}

.promo-modal .eyebrow {
  margin-bottom: 0.6rem;
}

.promo-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink-inv);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}

.promo-copy {
  color: var(--muted-inv);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.promo-code-box {
  background: rgba(201, 162, 82, 0.07);
  border: 1.5px dashed rgba(201, 162, 82, 0.35);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.promo-code-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-inv);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.promo-code-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  line-height: 1;
}

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

.promo-actions .btn {
  width: 100%;
  font-size: 0.9rem;
  border-radius: var(--r);
}

.promo-actions .btn.ghost {
  border-color: rgba(240, 232, 222, 0.12);
  color: var(--muted-inv);
  font-size: 0.85rem;
}

.promo-actions .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  transform: none;
  border-color: rgba(240, 232, 222, 0.2);
}

/* ---- PROMO FORM ---- */
.promo-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

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

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-inv);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-inv);
  border-radius: var(--r-sm, 10px);
  padding: 0.75rem 1rem;
  color: var(--ink-inv);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 200ms, background 200ms;
  width: 100%;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 154, 142, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201, 162, 82, 0.5);
  background: rgba(201, 162, 82, 0.04);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.delay-1 { transition-delay: 110ms; }

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .promo-grid,
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-grid,
  .gift-banner,
  .reserve-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .collection-strip {
    grid-template-columns: 1fr;
  }

  .gift-banner {
    padding: 2rem;
  }
}

@media (max-width: 860px) {
  .utility-bar,
  .section-heading,
  .hero-card-foot,
  .newsletter {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .top-strip-content {
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: flex-start;
  }

  .nav-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .nav-links {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .hero-copy,
  .hero-media {
    min-height: auto;
  }

  .hero-copy {
    border-right: none;
    border-bottom: 1px solid var(--line-inv);
    padding: 2rem 1.5rem;
  }

  .hero-notes,
  .promo-grid,
  .category-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    gap: 0.4rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .search-shell,
  .nav-actions,
  .service-actions {
    width: 100%;
  }

  .service-strip,
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .btn, .nav-pill {
    width: 100%;
  }

  .card-actions .btn {
    width: auto;
    flex: 1;
  }

  .card-actions a,
  .reserve-links a {
    width: 100%;
    text-align: center;
  }

  .promo-modal {
    border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem;
  }

  .promo-code-value {
    font-size: 1.65rem;
  }
}

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */

.wa-float-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 200ms, box-shadow 200ms;
}

.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wa-modal {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem 1.8rem 1.8rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wa-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  transition: background 150ms, color 150ms;
}

.wa-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.wa-modal-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #25d366;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.wa-modal-sub {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 1.2rem;
}

.wa-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.wa-form input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #222;
  background: #fafafa;
  transition: border-color 150ms;
  box-sizing: border-box;
}

.wa-form input:focus {
  outline: none;
  border-color: #25d366;
  background: #fff;
}

.wa-form-submit {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 150ms;
}

.wa-form-submit:hover {
  background: #1ebe5d;
}
