/* =====================================================
   SOMMELIER NÓMADA — Hoja de estilos
   Paleta refinada al branding oficial (vinotinto · rosa-crema · dorado tenue)
   ===================================================== */

:root {
  --wine-900: #2E0810;
  --wine-700: #4A0E15;
  --wine-500: #7A1424;
  --gold:     #B08D5A;
  --gold-soft:#D4B383;
  --cream:    #F5EDE3;
  --cream-2:  #EBDFD2;
  --pink-soft:#D9BFB6;
  --ink:      #1A1410;
  --ink-soft: #4A3F38;
  --muted:    #8B7E73;
  --line:     rgba(74, 14, 21, 0.12);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --w-max: 1200px;
  --w-narrow: 880px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 8px;

  --t-fast: 200ms ease;
  --t-med:  400ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 700ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine-700);
  margin: 0 0 16px 0;
}
.eyebrow--light { color: var(--pink-soft); }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.section__title em {
  font-style: italic;
  color: var(--wine-700);
  font-weight: 400;
}
.section__title--light { color: var(--cream); }
.section__title--light em { color: var(--pink-soft); }

.section__head {
  max-width: var(--w-narrow);
  margin: 0 auto 64px auto;
  text-align: center;
}
.section__sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

.lead {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--wine-700);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  transition: transform var(--t-med), background var(--t-med), border-color var(--t-med), color var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
}
.btn--primary {
  background: var(--wine-700);
  color: var(--cream);
  border-color: var(--wine-700);
}
.btn--primary:hover {
  background: var(--wine-900);
  border-color: var(--wine-900);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 227, 0.5);
}
.btn--ghost:hover {
  background: rgba(245, 237, 227, 0.1);
  border-color: var(--cream);
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}
.btn--small { padding: 10px 18px; font-size: 12px; }
.btn--full { width: 100%; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: all var(--t-med);
}
.nav.is-scrolled {
  background: rgba(245, 237, 227, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}
.nav__brand em {
  font-style: italic;
  color: var(--pink-soft);
  font-weight: 400;
}
.nav__logo {
  width: 32px;
  height: 32px;
  color: var(--pink-soft);
  transition: color var(--t-fast);
}
.nav.is-scrolled .nav__brand { color: var(--wine-700); }
.nav.is-scrolled .nav__brand em { color: var(--wine-500); }
.nav.is-scrolled .nav__logo { color: var(--wine-700); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  transition: color var(--t-fast);
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__cta {
  padding: 10px 22px;
  background: var(--cream);
  color: var(--wine-700) !important;
  border-radius: var(--r-md);
  border: 1px solid var(--cream);
}
.nav.is-scrolled .nav__cta {
  background: var(--wine-700);
  color: var(--cream) !important;
  border-color: var(--wine-700);
}
.nav__cta:hover { transform: translateY(-1px); }

.nav__tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color var(--t-fast);
}
.nav.is-scrolled .lang { color: var(--wine-700); }
.lang__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 4px 0;
  font: inherit;
  opacity: 0.58;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.lang__btn:hover,
.lang__btn.is-active { opacity: 1; }
.lang__btn.is-active { color: var(--pink-soft); }
.nav.is-scrolled .lang__btn.is-active { color: var(--wine-500); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  margin: 5px auto;
  transition: all var(--t-fast);
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px;
    gap: 24px;
    transition: right var(--t-med);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav__tools { margin-left: auto; }
  .lang { color: var(--cream); }
  .nav.is-scrolled .lang { color: var(--wine-700); }
  .nav__links.is-open { right: 0; }
  .nav__links a { color: var(--ink) !important; font-size: 18px; }
  .nav__cta { background: var(--wine-700); color: var(--cream) !important; border-color: var(--wine-700); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 72px;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(217, 191, 182, 0.12), transparent 60%),
    linear-gradient(135deg, #2E0810 0%, #4A0E15 55%, #2E0810 100%);
  z-index: -2;
  transform: scale(1.04);
  animation: wineDrift 18s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(74, 14, 21, 0.5), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(217, 191, 182, 0.08), transparent 50%);
  z-index: -1;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 237, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 237, 227, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
}
.hero__logo {
  width: 82px;
  height: 82px;
  color: var(--pink-soft);
  margin-bottom: 24px;
  display: block;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 104px 0 56px;
  }
  .hero__logo {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
  }
  .hero .eyebrow { margin-bottom: 20px; }
  .hero__sub { margin-bottom: 32px; }
}
.hero__content {
  max-width: 880px;
  color: var(--cream);
  position: relative;
}
.hero .eyebrow { color: var(--pink-soft); margin-bottom: 28px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 30px 0;
  color: var(--cream);
}
.hero__title em { font-style: italic; color: var(--pink-soft); }
.hero__sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  max-width: 620px;
  color: rgba(245, 237, 227, 0.85);
  margin: 0 0 42px 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(245, 237, 227, 0.3);
  overflow: hidden;
}
.hero__scroll span {
  display: block;
  width: 100%;
  height: 30px;
  background: var(--pink-soft);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
@keyframes wineDrift {
  0% { transform: scale(1.04) translate3d(0, 0, 0); filter: saturate(1); }
  100% { transform: scale(1.08) translate3d(-1.5%, 1%, 0); filter: saturate(1.08); }
}

section { padding: 120px 0; }
@media (max-width: 768px) { section { padding: 80px 0; } }

.manifiesto { background: var(--cream); border-bottom: 1px solid var(--line); }
.manifiesto__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.manifiesto__label .section__title { margin-bottom: 0; }
.manifiesto__text p { margin: 0 0 20px 0; color: var(--ink-soft); }
.manifiesto__text p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .manifiesto__grid { grid-template-columns: 1fr; gap: 32px; }
}

.sobre { background: var(--cream-2); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre__media { position: relative; }
.sobre__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid rgba(74, 14, 21, 0.12);
  box-shadow: 0 28px 70px rgba(74, 14, 21, 0.14);
  background: var(--wine-900);
}
.sobre__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46, 8, 16, 0.02), rgba(46, 8, 16, 0.22)),
    radial-gradient(circle at 70% 20%, rgba(245, 237, 227, 0.14), transparent 42%);
  pointer-events: none;
}
.sobre__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.01);
}
.sobre__badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--gold);
  color: var(--ink);
  padding: 24px 32px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(74, 14, 21, 0.15);
}
.sobre__badge-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}
.sobre__badge-num sup { font-size: 28px; font-weight: 400; }
.sobre__badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.sobre__text p { margin: 0 0 18px 0; color: var(--ink-soft); }
.sobre__quote {
  margin-top: 32px !important;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--wine-700) !important;
}
@media (max-width: 880px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre__badge { bottom: -20px; right: 16px; padding: 18px 24px; }
  .sobre__badge-num { font-size: 42px; }
}

.servicios { background: var(--cream); }
.servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}
@media (max-width: 880px) { .servicios__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .servicios__grid { grid-template-columns: 1fr; } }

.card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow), background var(--t-slow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--wine-700);
  transition: width var(--t-med);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--wine-500);
  box-shadow: 0 20px 50px rgba(74, 14, 21, 0.08);
}
.card:hover::before { width: 100%; }
.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: var(--r-md);
  color: var(--wine-700);
  margin-bottom: 24px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: var(--ink);
}
.card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.credenciales { background: var(--cream-2); }
.cred__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 880px) { .cred__grid { grid-template-columns: 1fr; gap: 48px; } }

.cred__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 32px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--wine-700);
}
.cred__list { list-style: none; padding: 0; margin: 0; }
.cred__list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred__list li:last-child { border-bottom: 0; }
.cred__list strong {
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
}
.cred__list span { font-size: 14px; color: var(--muted); }
.cred__list--featured li { padding: 28px 0; }
.cred__year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.faq { background: var(--cream); }
.faq__list { max-width: var(--w-narrow); margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq__item summary {
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  color: var(--wine-700);
  transition: transform var(--t-med);
  margin-left: 24px;
}
.faq__item[open] summary { color: var(--wine-700); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0 24px 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

.premium { background: var(--cream-2); }
.premium__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .premium__grid { grid-template-columns: 1fr; } }

.product {
  background: #FFFFFF;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
}
.product:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 14, 21, 0.24);
  box-shadow: 0 26px 60px rgba(74, 14, 21, 0.12);
}
.product__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--wine-900);
}
.product__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(46, 8, 16, 0.26));
  pointer-events: none;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 1200ms cubic-bezier(.2,.7,.2,1), filter 1200ms cubic-bezier(.2,.7,.2,1);
}
.product:hover .product__media img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05);
}
.product__body { padding: 28px; }
.product__cat {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px 0;
  font-weight: 500;
}
.product__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: var(--ink);
}
.product__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 22px 0;
  line-height: 1.6;
}
.product__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine-700);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
  transition: color var(--t-med);
}
.product__link::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width var(--t-med);
}
.product__link:hover { color: var(--wine-900); }
.product__link:hover::after { width: 42px; }
}
.premium__note {
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}
.premium__note a {
  color: var(--wine-700);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

.club {
  background: linear-gradient(160deg, #2E0810 0%, #4A0E15 55%, #2E0810 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.club::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(217, 191, 182, 0.12), transparent 60%);
  pointer-events: none;
}
.club::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 237, 227, 0.045), transparent);
  transform: translateX(-100%);
  animation: softSheen 11s ease-in-out infinite;
  pointer-events: none;
}
@keyframes softSheen {
  0%, 44% { transform: translateX(-100%); opacity: 0; }
  56% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
.club__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.club__inner .section__title { margin-bottom: 28px; }
.club__text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 237, 227, 0.85);
  margin: 0 0 40px 0;
}

.contacto { background: var(--cream); }
.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .contacto__grid { grid-template-columns: 1fr; gap: 60px; }
}

.contacto__info p { color: var(--ink-soft); margin: 0 0 32px 0; }

.contacto__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  background: #FFFFFF;
}
.channel:hover {
  border-color: var(--wine-500);
  transform: translateX(4px);
  box-shadow: 0 16px 40px rgba(74, 14, 21, 0.06);
}
.channel__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: var(--r-md);
  color: var(--wine-700);
  flex-shrink: 0;
}
.channel__icon svg { width: 22px; height: 22px; }
.channel strong { display: block; font-weight: 500; color: var(--ink); }
.channel span { font-size: 13px; color: var(--muted); }

.contacto__form {
  background: #FFFFFF;
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  box-shadow: 0 24px 60px rgba(74, 14, 21, 0.06);
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  color: var(--ink);
  transition: border-color var(--t-fast);
  font-weight: 400;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wine-700);
  background: #FFFFFF;
}
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #8B1A2B;
  background: rgba(139, 26, 43, 0.04);
}
.field textarea { resize: vertical; min-height: 100px; }
.contacto__form .btn { grid-column: 1 / -1; margin-top: 8px; }
.contacto__form.is-loading .btn {
  opacity: 0.78;
  pointer-events: none;
}
.honeypot,
.form__frame {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}
.form__note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 16px;
  background: rgba(176, 141, 90, 0.12);
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 14px;
}
.form__note.is-error {
  border-color: #8B1A2B;
  background: rgba(139,26,43,0.08);
}
@media (max-width: 560px) {
  .contacto__form { grid-template-columns: 1fr; padding: 28px; }
}

.footer {
  background: var(--wine-900);
  color: var(--cream);
  padding: 60px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
}
.footer__brand em { color: var(--pink-soft); font-style: italic; }
.footer__logo {
  width: 44px;
  height: 44px;
  color: var(--pink-soft);
}
.footer__tag {
  margin: 0;
  color: rgba(245, 237, 227, 0.7);
  font-size: 15px;
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 237, 227, 0.56);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__credit a {
  color: rgba(245, 237, 227, 0.78);
  min-width: 80px;
  border-bottom: 1px solid rgba(245, 237, 227, 0.22);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer__credit a:hover {
  color: var(--pink-soft);
  border-color: var(--pink-soft);
}
.footer__links {
  display: flex;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 14px;
  color: rgba(245, 237, 227, 0.8);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--pink-soft); }
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 237, 227, 0.5);
  padding-top: 24px;
  border-top: 1px solid rgba(245, 237, 227, 0.1);
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__bg,
  .club::after { animation: none !important; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
