/* TOP WINEMAKERS — estilos compartidos del sitio */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..700;1,6..96,400..700&family=Instrument+Sans:wght@400;500;600&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #F4EFE6;
  color: #1B1512;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #6B1F2A; }
a:hover { color: #4A1520; }
input::placeholder { color: #8F8378; }

.serif {
  font-family: 'Bodoni Moda', Georgia, serif;
}

/* Header */
.tw-header {
  height: 88px;
  box-sizing: border-box;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D9CFC1;
  background: #F4EFE6;
  flex-wrap: wrap;
  gap: 12px;
}
.tw-logo {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #1B1512;
  text-decoration: none;
  white-space: nowrap;
}
.tw-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tw-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1B1512;
  text-decoration: none;
  padding: 14px 0;
}
.tw-nav a.active {
  color: #6B1F2A;
  border-bottom: 1px solid #6B1F2A;
}
.tw-nav a.cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 22px;
  background: #6B1F2A;
  color: #F4EFE6;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Footer */
.tw-footer {
  background: #1B1512;
  color: #B9AC9C;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.tw-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tw-footer-top a.tw-logo { color: #F4EFE6; }
.tw-footer nav { display: flex; gap: 24px; font-size: 14px; flex-wrap: wrap; }
.tw-footer nav a { color: #B9AC9C; text-decoration: none; padding: 8px 0; }
.tw-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #3A302B;
  font-size: 13px;
  flex-wrap: wrap;
}
.tw-footer-bottom .legal {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wrap { max-width: 1280px; margin: 0 auto; }
.px { padding-left: 24px; padding-right: 24px; }

@media (min-width: 900px) {
  .tw-header, .tw-footer { padding-left: 64px; padding-right: 64px; }
  .px { padding-left: 64px; padding-right: 64px; }
}
