html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F7F2EA;
  color: #2B1219;
  font-family: 'Jost', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #5C1B36;
  text-decoration: none;
}

a:hover {
  color: #C77A52;
}

section[id] {
  scroll-margin-top: 78px;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Header ---------- */

.tb-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  height: 78px;
  background: #5C1B36;
  color: #F2DFB8;
}

.tb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F2DFB8;
}

.tb-logo-mark {
  display: block;
  width: 26px;
  height: 26px;
  border: 1.5px solid #D98A62;
  border-radius: 50%;
  position: relative;
}

.tb-logo-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background: #D98A62;
  border-radius: 50%;
}

.tb-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
}

.tb-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
}

.tb-nav-links a {
  color: #F2DFB8;
  white-space: nowrap;
}

.tb-btn-cta {
  flex: none;
  padding: 11px 20px;
  border: 1px solid rgba(242, 223, 184, .5);
  color: #F2DFB8;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}

.tb-btn-cta:hover {
  background: #D98A62;
  border-color: #D98A62;
  color: #3A0F22;
}

.tb-menu-input {
  display: none;
}

.tb-menu-btn {
  display: none;
  flex: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.tb-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #F2DFB8;
  transition: transform .25s, opacity .2s, width .2s;
}

.tb-menu-btn span:last-child {
  width: 70%;
}

.tb-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: #5C1B36;
  padding: 4px 24px 20px;
  border-top: 1px solid rgba(242, 223, 184, .15);
  box-shadow: 0 16px 28px rgba(20, 6, 12, .3);
}

.tb-mobile-menu a {
  padding: 15px 2px;
  border-bottom: 1px solid rgba(242, 223, 184, .12);
  color: #F2DFB8;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tb-mobile-menu-cta {
  margin-top: 16px;
  padding: 14px !important;
  text-align: center;
  background: #D98A62;
  color: #3A0F22 !important;
  border-bottom: none !important;
  font-weight: 500;
}

#tb-menu-toggle:checked ~ .tb-mobile-menu {
  display: flex;
}

#tb-menu-toggle:checked ~ .tb-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#tb-menu-toggle:checked ~ .tb-menu-btn span:nth-child(2) {
  opacity: 0;
}

#tb-menu-toggle:checked ~ .tb-menu-btn span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.tb-hero {
  position: relative;
  background: #5C1B36;
  color: #F2DFB8;
  padding: 120px 40px 96px;
  overflow: hidden;
}

.tb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(217, 138, 98, .09) 0 2px, transparent 2px 16px);
  pointer-events: none;
}

.tb-hero-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: end;
}

.tb-eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #D98A62;
}

.tb-h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.015em;
  text-wrap: pretty;
}

.tb-h1 i {
  color: #D98A62;
  font-style: italic;
}

.tb-hero-copy {
  margin: 28px 0 0;
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(242, 223, 184, .82);
  text-wrap: pretty;
}

.tb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.tb-btn-primary {
  padding: 15px 28px;
  background: #D98A62;
  color: #3A0F22;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid #D98A62;
  transition: background .2s;
}

.tb-btn-primary:hover {
  background: #F2DFB8;
}

.tb-btn-outline {
  padding: 15px 28px;
  border: 1px solid rgba(242, 223, 184, .4);
  color: #F2DFB8;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: border-color .2s;
}

.tb-btn-outline:hover {
  border-color: #F2DFB8;
}

.tb-hero-photo {
  border: 1px solid rgba(242, 223, 184, .28);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.tb-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tb-flag {
  display: flex;
  height: 6px;
}

.tb-flag span {
  flex: 1;
}

.tb-flag span:nth-child(1) { background: #3F7A4E; }
.tb-flag span:nth-child(2) { background: #F2DFB8; }
.tb-flag span:nth-child(3) { background: #A32A32; }

/* ---------- Intro (3 columns) ---------- */

.tb-intro {
  padding: 96px 40px;
  background: #F7F2EA;
}

.tb-intro-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.tb-intro-grid h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 34px;
  color: #5C1B36;
}

.tb-intro-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: #4A2A32;
  text-wrap: pretty;
}

/* ---------- Section shared ---------- */

.tb-pad {
  padding: 96px 40px;
}

.tb-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tb-h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 52px;
  color: #5C1B36;
  line-height: 1;
}

.tb-h2--light {
  color: #F2DFB8;
}

.tb-tag {
  margin: 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #8A6A62;
}

/* ---------- Vinos ---------- */

.tb-wines {
  background: #EFE6D8;
}

.tb-wines-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.tb-quincena {
  position: relative;
  height: clamp(420px, 50vw, 640px);
  overflow: hidden;
  margin-bottom: 64px;
  border: 1px solid rgba(92, 27, 54, .25);
}

.tb-quincena-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: tb-quincena-fade 20s infinite;
}

.tb-quincena-slide:nth-child(1) { animation-delay: 0s; }
.tb-quincena-slide:nth-child(2) { animation-delay: 5s; }
.tb-quincena-slide:nth-child(3) { animation-delay: 10s; }
.tb-quincena-slide:nth-child(4) { animation-delay: 15s; }

.tb-quincena-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tb-quincena-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(43, 18, 25, .74) 0%,
    rgba(43, 18, 25, .24) 30%,
    rgba(43, 18, 25, 0) 52%,
    rgba(43, 18, 25, .18) 68%,
    rgba(43, 18, 25, .88) 100%);
}

.tb-quincena-info {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 44px 40px;
  background: linear-gradient(to bottom,
    rgba(43, 18, 25, .68) 0,
    rgba(43, 18, 25, .68) calc(100% - 40px),
    rgba(43, 18, 25, 0) 100%);
}

.tb-tag--light {
  color: rgba(242, 223, 184, .78);
}

.tb-quincena-title {
  margin: 8px 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  color: #F2DFB8;
  line-height: 1.05;
}

.tb-quincena-copy {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(242, 223, 184, .82);
}

.tb-quincena-captions {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.tb-quincena-caption {
  position: absolute;
  left: 44px;
  right: 120px;
  bottom: 30px;
  margin: 0;
  opacity: 0;
  animation: tb-quincena-fade 20s infinite;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.tb-quincena-caption:nth-child(1) { animation-delay: 0s; }
.tb-quincena-caption:nth-child(2) { animation-delay: 5s; }
.tb-quincena-caption:nth-child(3) { animation-delay: 10s; }
.tb-quincena-caption:nth-child(4) { animation-delay: 15s; }

.tb-quincena-caption b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  color: #F2DFB8;
  line-height: 1.1;
}

.tb-quincena-caption span {
  font-size: 12.5px;
  letter-spacing: .04em;
  color: rgba(242, 223, 184, .7);
}

.tb-quincena-dots {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 34px;
  display: flex;
  gap: 7px;
}

.tb-quincena-dots span {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(242, 223, 184, .3);
}

.tb-quincena-dots span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #D98A62;
  opacity: 0;
  animation: tb-quincena-dot 20s infinite;
}

.tb-quincena-dots span:nth-child(1)::after { animation-delay: 0s; }
.tb-quincena-dots span:nth-child(2)::after { animation-delay: 5s; }
.tb-quincena-dots span:nth-child(3)::after { animation-delay: 10s; }
.tb-quincena-dots span:nth-child(4)::after { animation-delay: 15s; }

@keyframes tb-quincena-fade {
  0%, 100% { opacity: 0; }
  5% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
}

@keyframes tb-quincena-dot {
  0%, 100% { opacity: 0; }
  2% { opacity: 1; }
  23% { opacity: 1; }
  25% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tb-quincena-slide,
  .tb-quincena-caption {
    animation: none;
    opacity: 0;
  }
  .tb-quincena-slide:first-child,
  .tb-quincena-caption:first-child {
    opacity: 1;
  }
  .tb-quincena-dots span::after {
    animation: none;
    opacity: 0;
  }
  .tb-quincena-dots span:first-child::after {
    opacity: 1;
  }
}

.tb-tag-link {
  color: #8A6A62;
  border-bottom: 1px solid rgba(138, 106, 98, .35);
  transition: color .2s, border-color .2s;
}

.tb-tag-link:hover {
  color: #C77A52;
  border-color: #C77A52;
}

.tb-wines-legend {
  margin: 0 0 48px;
  max-width: 74ch;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #6A4A50;
}

.tb-wines-legend b {
  font-weight: 500;
  color: #5C1B36;
}

.tb-wines-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
}

.tb-wine-cat {
  margin-bottom: 48px;
}

.tb-wine-cat:last-child {
  margin-bottom: 0;
}

.tb-wine-cat--full {
  max-width: 1180px;
  margin: 64px auto 0;
}

.tb-wine-cat-title {
  margin: 0 0 4px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  color: #5C1B36;
  line-height: 1.1;
}

.tb-wine-cat-note {
  margin: 0 0 18px;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: #8A6A62;
}

.tb-wine-colhead {
  display: grid;
  gap: 10px;
  align-items: end;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(92, 27, 54, .22);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8A6A62;
}

.tb-wine-colhead span:not(:first-child) {
  text-align: right;
}

.tb-wine-colhead.cols-3 {
  grid-template-columns: 1fr 52px 52px 66px;
}

.tb-wine-colhead.cols-2 {
  grid-template-columns: 1fr 60px 76px;
}

.tb-wine-row {
  display: grid;
  gap: 10px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(92, 27, 54, .14);
}

.tb-wine-cat--full .tb-wine-row {
  border-bottom-color: rgba(92, 27, 54, .14);
}

.tb-wine-row:last-child {
  border-bottom: none;
}

.tb-wine-row.cols-3 {
  grid-template-columns: 1fr 52px 52px 66px;
}

.tb-wine-row.cols-2 {
  grid-template-columns: 1fr 60px 76px;
}

.tb-wine-row.cols-1 {
  grid-template-columns: 1fr auto;
}

.tb-wine-main p:first-child {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: #2B1219;
}

.tb-wine-main p:last-child {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: #7A5A60;
  letter-spacing: .02em;
  text-wrap: pretty;
}

.tb-wine-price {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: #5C1B36;
  text-align: right;
  align-self: center;
}

.tb-wine-price.dash {
  color: #C2ACA4;
}

.tb-wine-price--text {
  font-size: 11px;
  white-space: nowrap;
}

.tb-wine-row.cols-1 .tb-wine-price {
  font-size: 15px;
}

/* ---------- Charcutería ---------- */

.tb-charcuteria {
  background: #5C1B36;
  color: #F2DFB8;
}

.tb-charcuteria-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.tb-charcuteria-intro {
  margin: 0 0 52px;
  max-width: 52ch;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(242, 223, 184, .8);
}

.tb-tablas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tb-tabla-card {
  border: 1px solid rgba(242, 223, 184, .25);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}

.tb-tabla-card:hover {
  border-color: #D98A62;
}

.tb-tabla-tag {
  margin: 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: #D98A62;
}

.tb-tabla-name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  line-height: 1.1;
}

.tb-tabla-desc {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(242, 223, 184, .78);
  flex: 1;
}

.tb-tabla-desc em {
  font-style: normal;
  color: #D98A62;
}

.tb-tabla-sizes {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 223, 184, .2);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tb-tabla-sizes div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.tb-tabla-sizes span {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(242, 223, 184, .9);
}

.tb-tabla-sizes span i {
  font-style: normal;
  margin-left: 4px;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(242, 223, 184, .5);
}

.tb-tabla-sizes b {
  flex: none;
  font-family: ui-monospace, Menlo, monospace;
  font-weight: 500;
  font-size: 14.5px;
  color: #F2DFB8;
}

.tb-tabla-extra {
  max-width: 1180px;
  margin: 32px auto 0;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(242, 223, 184, .25);
}

.tb-tabla-extra span {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F2DFB8;
}

.tb-tabla-extra b {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 16px;
  font-weight: 500;
  color: #D98A62;
}

.tb-tabla-note {
  max-width: 1180px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(242, 223, 184, .55);
}

/* ---------- Experiencias ---------- */

.tb-experiencias {
  background: #F7F2EA;
}

.tb-experiencias-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.tb-exp-intro {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 300;
  color: #6A4A50;
  max-width: 52ch;
}

.tb-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tb-exp-card {
  border: 1px solid rgba(92, 27, 54, .18);
  background: #FBF7F0;
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tb-exp-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tb-exp-num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #5C1B36;
  color: #F2DFB8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-exp-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 27px;
  color: #5C1B36;
  line-height: 1.1;
}

.tb-exp-subtitle {
  margin: 3px 0 0;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C77A52;
}

.tb-exp-desc {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #4A2A32;
}

.tb-exp-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tb-exp-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 300;
  color: #4A2A32;
  line-height: 1.4;
}

.tb-exp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D98A62;
}

.tb-exp-wines {
  border-top: 1px solid rgba(92, 27, 54, .14);
  padding-top: 16px;
}

.tb-exp-wines-label {
  margin: 0 0 14px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8A6A62;
}

.tb-exp-wines-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tb-exp-wine {
  flex: 1;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: #5C1B36;
}

.tb-exp-wine span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tb-exp-wine b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14.5px;
  color: #2B1219;
  line-height: 1.2;
}

.tb-exp-wine i {
  font-style: normal;
  font-size: 11px;
  font-weight: 300;
  color: #7A5A60;
  line-height: 1.3;
}

.tb-exp-arrow {
  flex: none;
  color: #D98A62;
  align-self: flex-start;
  margin-top: 3px;
}

.tb-exp-prices {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(92, 27, 54, .14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.tb-exp-price-label {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8A6A62;
}

.tb-exp-price-label span {
  display: block;
  text-transform: none;
  letter-spacing: normal;
  font-size: 11px;
  color: #B79C90;
}

.tb-exp-price {
  margin: 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 22px;
  color: #5C1B36;
}

.tb-info-row {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(92, 27, 54, .14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.tb-info-row > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #C77A52;
}

.tb-info-row p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #2B1219;
  line-height: 1.4;
}

.tb-info-row p span {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 300;
  color: #7A5A60;
}

.tb-exp-closing {
  margin: 48px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: #6A4A50;
  line-height: 1.7;
}

.tb-exp-closing i {
  font-style: italic;
}

/* ---------- Panini ---------- */

.tb-panini {
  background: #EFE6D8;
}

.tb-panini-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.tb-panini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.tb-panini-card {
  position: relative;
  border: 1px solid rgba(92, 27, 54, .18);
  background: #F7F2EA;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s;
}

.tb-panini-card:hover {
  border-color: #D98A62;
}

.tb-panini-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: -26px -22px 4px;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, rgba(92, 27, 54, .07) 0 6px, transparent 6px 14px);
  border-bottom: 1px solid rgba(92, 27, 54, .16);
}

.tb-panini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tb-panini-photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8A6A62;
}

.tb-panini-card--special .tb-panini-photo {
  background: repeating-linear-gradient(45deg, rgba(242, 223, 184, .08) 0 6px, transparent 6px 14px);
  border-bottom-color: rgba(242, 223, 184, .22);
}

.tb-panini-card--special .tb-panini-photo-fallback {
  color: rgba(242, 223, 184, .6);
}

.tb-panini-card--special {
  background: #5C1B36;
  color: #F2DFB8;
  border-color: rgba(242, 223, 184, .25);
}

.tb-panini-num {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #C77A52;
}

.tb-panini-card--special .tb-panini-num {
  color: #D98A62;
}

.tb-panini-name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: #5C1B36;
  line-height: 1.1;
}

.tb-panini-card--special .tb-panini-name {
  color: #F2DFB8;
}

.tb-panini-name small {
  display: block;
  margin-top: 3px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8A6A62;
}

.tb-panini-card--special .tb-panini-name small {
  color: #D98A62;
}

.tb-panini-ing {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tb-panini-ing li {
  font-size: 14px;
  font-weight: 300;
  color: #2B1219;
  line-height: 1.4;
}

.tb-panini-card--special .tb-panini-ing li {
  color: rgba(242, 223, 184, .92);
}

.tb-panini-en {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(92, 27, 54, .14);
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  color: #7A5A60;
  line-height: 1.5;
  flex: 1;
}

.tb-panini-card--special .tb-panini-en {
  border-top-color: rgba(242, 223, 184, .22);
  color: rgba(242, 223, 184, .68);
}

.tb-panini-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.tb-panini-price {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 17px;
  color: #5C1B36;
}

.tb-panini-card--special .tb-panini-price {
  color: #F2DFB8;
}

.tb-panini-bread {
  font-size: 10.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8A6A62;
  text-align: right;
}

.tb-panini-card--special .tb-panini-bread {
  color: rgba(242, 223, 184, .6);
}

.tb-panini-special-head {
  margin: 44px 0 26px;
  padding-top: 32px;
  border-top: 1px solid rgba(92, 27, 54, .14);
}

/* ---------- Galería ---------- */

.tb-gallery {
  background: #F7F2EA;
}

.tb-gallery-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.tb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 150px);
  grid-template-areas:
    "equipo equipo jamon  logo"
    "equipo equipo jamon  pan"
    "fachada fachada jamon pan"
    "vitrina vitrina vinoteca tarumbo"
    "vitrina vitrina vinoteca tarumbo";
  gap: 16px;
}

.tb-ga-equipo   { grid-area: equipo; }
.tb-ga-jamon    { grid-area: jamon; }
.tb-ga-logo     { grid-area: logo; }
.tb-ga-pan      { grid-area: pan; }
.tb-ga-fachada  { grid-area: fachada; }
.tb-ga-vitrina  { grid-area: vitrina; }
.tb-ga-vinoteca { grid-area: vinoteca; }
.tb-ga-tarumbo  { grid-area: tarumbo; }

.tb-gallery-item {
  position: relative;
  border: 1px solid rgba(92, 27, 54, .2);
  overflow: hidden;
}

.tb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.tb-gallery-item:hover img {
  transform: scale(1.06);
}

.tb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, rgba(92, 27, 54, .06) 0 6px, transparent 6px 14px);
}

.tb-placeholder span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #8A6A62;
  text-align: center;
  padding: 0 16px;
}

.tb-hero-photo .tb-placeholder {
  background: repeating-linear-gradient(45deg, rgba(242, 223, 184, .07) 0 6px, transparent 6px 14px);
}

.tb-hero-photo .tb-placeholder span {
  color: rgba(242, 223, 184, .7);
  padding: 0 20px;
}

/* ---------- Sobre nosotros ---------- */

.tb-about {
  background: #5C1B36;
  color: #F2DFB8;
}

.tb-about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 64px;
  align-items: center;
}

.tb-about-copy {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242, 223, 184, .85);
}

.tb-about-signature {
  margin: 28px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: #D98A62;
}

.tb-about-photo {
  border: 1px solid rgba(242, 223, 184, .25);
  aspect-ratio: 1000 / 1778;
  overflow: hidden;
}

.tb-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Cómo llegar ---------- */

.tb-visit {
  background: #EFE6D8;
}

.tb-visit-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.tb-visit-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tb-visit-label {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #C77A52;
}

.tb-visit-value {
  margin: 0;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
  color: #2B1219;
}

.tb-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
  font-size: 17px;
  font-weight: 300;
  color: #2B1219;
}

.tb-hours .closed {
  color: #8A6A62;
}

.tb-contact {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.tb-visit-note {
  margin: 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: #8A6A62;
}

.tb-visit-map {
  border: 1px solid rgba(92, 27, 54, .2);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* ---------- Footer ---------- */

.tb-footer {
  background: #3A0F22;
  color: rgba(242, 223, 184, .72);
  padding: 56px 40px;
}

.tb-footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.tb-footer-brand p:first-child {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: #F2DFB8;
  line-height: 1;
}

.tb-footer-brand p:last-child {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #C77A52;
}

.tb-footer-links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 28px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tb-footer-links a {
  color: rgba(242, 223, 184, .72);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .tb-hero-grid { grid-template-columns: 1fr; }
  .tb-hero-photo { aspect-ratio: 16 / 9; max-height: 300px; }
  .tb-nav-links { gap: 18px; }
  .tb-header { padding: 0 24px; }
  .tb-panini-grid { grid-template-columns: repeat(2, 1fr); }
  .tb-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(10, 150px);
    grid-template-areas:
      "equipo equipo"
      "equipo equipo"
      "jamon  pan"
      "jamon  pan"
      "logo   pan"
      "fachada fachada"
      "vitrina vitrina"
      "vitrina vitrina"
      "vinoteca tarumbo"
      "vinoteca tarumbo";
  }
}

@media (max-width: 940px) {
  .tb-nav-links, .tb-btn-cta { display: none; }
  .tb-menu-btn { display: flex; }
}

@media (min-width: 941px) {
  .tb-menu-input, .tb-menu-btn, .tb-mobile-menu { display: none !important; }
}

@media (max-width: 820px) {
  .tb-hero { padding: 120px 24px 72px; }
  .tb-intro-grid,
  .tb-wines-columns,
  .tb-charcuteria-wrap .tb-tablas-grid,
  .tb-visit-grid,
  .tb-about-grid,
  .tb-exp-grid,
  .tb-info-row {
    grid-template-columns: 1fr;
  }
  .tb-about-photo { max-width: 360px; margin: 0 auto; order: -1; }
  .tb-pad { padding: 64px 24px; }
  .tb-section-head { align-items: flex-start; }
  .tb-quincena-info { padding: 28px 24px 32px; }
  .tb-quincena-caption { left: 24px; right: 90px; bottom: 22px; }
  .tb-quincena-dots { right: 20px; bottom: 26px; }
  .tb-exp-wines-flow { flex-direction: column; align-items: stretch; }
  .tb-exp-arrow { transform: rotate(90deg); align-self: flex-start; margin: -2px 0 -2px 3px; }
}

@media (max-width: 600px) {
  .tb-panini-grid { grid-template-columns: 1fr; }
  .tb-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    grid-auto-rows: 240px;
  }
  .tb-ga-equipo, .tb-ga-jamon, .tb-ga-logo, .tb-ga-pan,
  .tb-ga-fachada, .tb-ga-vitrina, .tb-ga-vinoteca, .tb-ga-tarumbo {
    grid-area: auto;
  }
}

@media (max-width: 480px) {
  .tb-wine-colhead.cols-3,
  .tb-wine-row.cols-3 {
    grid-template-columns: 1fr 44px 44px 56px;
    gap: 6px;
  }
  .tb-wine-colhead.cols-2,
  .tb-wine-row.cols-2 {
    grid-template-columns: 1fr 48px 60px;
    gap: 6px;
  }
  .tb-wine-price { font-size: 12px; }
}
