/* Loja: Outfit + paleta do calendário de jogos (bordô, branco, dourado). */

:root {
  --bg: #ffffff;
  --soft: #f7f5f3;
  --line: rgba(74, 16, 24, 0.12);
  --ink: #1a1a1a;
  --ink-2: #4a4a4a;
  --muted: #8a8a8a;
  --wine: #4a1018;
  --wine-2: #6b1a24;
  --gold: #b59a6d;
  --orange: var(--wine);
  --orange-deep: var(--wine-2);
  --cream: #ffffff;
  --serif: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(20px, 4vw, 40px);
  --max: 1600px;
  --header: 80px;
  --tabbar: 56px;
  --pill: 999px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.announce { display: none; }

::selection { background: var(--wine); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header);
  padding: 12px max(var(--pad), calc((100% - var(--max)) / 2));
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.brand {
  z-index: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  line-height: 1;
  overflow: visible;
}
.brand img {
  display: block;
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--pill);
  color: #6b6b6b;
}
.nav-links a:hover,
.nav-links a.is-on {
  background: #f0eeeb;
  color: var(--ink);
}
.header-logo {
  justify-self: end;
  z-index: 1;
}
.header-logo img { height: 56px; width: auto; }
@media (max-width: 749px) {
  body {
    padding-bottom: calc(var(--tabbar) + env(safe-area-inset-bottom, 0px));
  }
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 8px var(--pad);
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
  }
  .brand img {
    height: auto;
    max-height: 36px;
    max-width: min(240px, 62vw);
  }
  .header-logo { justify-self: end; }
  .header-logo img { height: 44px; }
  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    justify-content: stretch;
    min-height: calc(var(--tabbar) + env(safe-area-inset-bottom, 0px));
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }
  .nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
    border-radius: 10px;
    color: #8a8a8a;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
  }
  .nav-links a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: currentColor;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
  }
  .nav-links a:nth-child(1)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.5 3.5c.8.6 1.7 1.5 2.9 1.7.4.1.6.5.5.9l-1.2 5.2c-.1.4-.5.7-.9.6l-1.8-.3V20c0 .6-.4 1-1 1H9c-.6 0-1-.4-1-1v-8.4l-1.8.3c-.4.1-.8-.2-.9-.6L4.1 6.1c-.1-.4.1-.8.5-.9 1.2-.2 2.1-1.1 2.9-1.7.5-.4 1.2-.3 1.6.2L10.5 5h3l1.4-1.3c.4-.5 1.1-.6 1.6-.2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.5 3.5c.8.6 1.7 1.5 2.9 1.7.4.1.6.5.5.9l-1.2 5.2c-.1.4-.5.7-.9.6l-1.8-.3V20c0 .6-.4 1-1 1H9c-.6 0-1-.4-1-1v-8.4l-1.8.3c-.4.1-.8-.2-.9-.6L4.1 6.1c-.1-.4.1-.8.5-.9 1.2-.2 2.1-1.1 2.9-1.7.5-.4 1.2-.3 1.6.2L10.5 5h3l1.4-1.3c.4-.5 1.1-.6 1.6-.2z'/%3E%3C/svg%3E");
  }
  .nav-links a:nth-child(2)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.4 3.5 6.2v2.1h17V6.2L12 2.4zM5 10v7.2l7 3.4 7-3.4V10H5zm2 1.5h10V16l-5 2.4-5-2.4v-4.9z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.4 3.5 6.2v2.1h17V6.2L12 2.4zM5 10v7.2l7 3.4 7-3.4V10H5zm2 1.5h10V16l-5 2.4-5-2.4v-4.9z'/%3E%3C/svg%3E");
  }
  .nav-links a:nth-child(3)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 .01 20.01A10 10 0 0 0 12 2zm0 4.2a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8zM10.6 11h1.3c.6 0 1 .4 1 1v5.2c0 .6-.4 1-1 1h-1.3c-.6 0-1-.4-1-1V12c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 .01 20.01A10 10 0 0 0 12 2zm0 4.2a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8zM10.6 11h1.3c.6 0 1 .4 1 1v5.2c0 .6-.4 1-1 1h-1.3c-.6 0-1-.4-1-1V12c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
  }
  .nav-links a:hover,
  .nav-links a.is-on {
    background: transparent;
    color: var(--wine);
  }
}

.home-hero {
  display: grid;
  gap: 48px;
  padding: 56px 0 72px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.home-hero__copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.home-hero__kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.home-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.home-hero__title span {
  display: table;
  margin: 0 0 6px;
  padding: 0.12em 0.22em 0.16em;
  background: #6e1520;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.home-hero__lead {
  margin: 22px 0 0;
  max-width: none;
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
}
.home-hero__media {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  column-gap: 20px;
  align-items: start;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.home-hero__shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 20px;
  width: min(var(--max), 100%);
  margin: 8px auto 0;
  padding: 0 var(--pad);
}
.home-hero__tile { color: var(--ink); }
.home-hero__shot {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--soft);
}
.home-hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}
.home-hero__shot img.is-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
@media (hover: hover) {
  .home-hero__tile:hover .home-hero__shot img.is-hover { opacity: 1; }
}
.home-hero__left .home-hero__shot,
.home-hero__card .home-hero__shot { aspect-ratio: 3 / 4; }
.home-hero__right .home-hero__shot { aspect-ratio: 16 / 10; }
.home-hero__right { margin-top: clamp(32px, 9vw, 112px); }
.home-hero__cap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  font-size: 15px;
}
.home-hero__cap em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}
.home-hero__frame {
  position: relative;
}
.home-hero__overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}
@media (max-width: 749px) {
  .home-hero { padding-top: 24px; gap: 28px; }
  .home-hero__media { grid-template-columns: 1fr; gap: 28px; }
  .home-hero__right { margin-top: 0; }
  .home-hero__shelf {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 28px;
  }
}

.split {
  display: grid;
  min-height: 560px;
  width: min(var(--max), 100%);
  margin: 48px auto 0;
}
@media (min-width: 750px) {
  .split { grid-template-columns: 1fr 1fr; }
}
.split--flip .split__copy { order: 2; }
.split__media { position: relative; background: var(--soft); }
.split__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.split__overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 16px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}
.split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 64px);
  background: var(--soft);
}
.split__copy h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}
.split__copy p { margin: 0; max-width: 38em; color: var(--ink-2); }
.split__cat { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.split__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

@media (min-width: 750px) {
  .split--screen {
    min-height: 0;
    height: calc(100svh - var(--header));
    max-height: calc(100svh - var(--header));
    margin-top: 48px;
    overflow: hidden;
  }
  .split--screen .split__media,
  .split--screen .split__copy {
    min-height: 0;
    height: 100%;
  }
  .split--screen .split__media img {
    min-height: 0;
    height: 100%;
    object-fit: contain;
    background: var(--soft);
  }
  .split--screen .split__copy {
    padding: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 56px);
  }
}

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
}
.wrap--flush { width: 100%; max-width: none; padding: 0; }
.wrap--prose { width: min(720px, 100%); padding: 40px var(--pad) 80px; }

.section { padding: 72px var(--pad) 32px; }
#catalogo { scroll-margin-top: calc(var(--header) + 16px); }
.catalogo-more {
  display: flex;
  justify-content: center;
  margin: 40px auto 0;
  width: min(var(--max), 100%);
}
.catalogo-more[hidden] { display: none; }
.kits-index {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 8px var(--pad) 80px;
}
.kits-index .crumbs { margin: 16px 0 0; }
.kits-index .collection-head h1 em {
  font-style: italic;
  font-weight: 600;
}
.kits-index__count {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.kits-index__toolbar {
  margin: 0 0 28px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}
.section-head a { border-bottom: 1px solid var(--ink); font-size: 14px; }

.collection-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding: 28px 0 20px;
}
.collection-head h1, .collection-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--ink);
}
.lead { margin: 8px 0 0; max-width: 40em; color: var(--ink-2); }
.muted { color: var(--muted); }

.clubs-index {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 8px var(--pad) 80px;
}
.clubs-index .crumbs { margin: 16px 0 0; }
.clubs-index .collection-head h1 em {
  font-style: normal;
  color: var(--gold);
}
.clubs-index__count {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.clubs-geo {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
  background: var(--soft);
  color: var(--ink);
  overflow: hidden;
  border: 1px solid var(--line);
}
@media (min-width: 900px) {
  .clubs-geo {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    height: min(72vh, 740px);
  }
}
.clubs-geo__map {
  position: relative;
  min-height: 420px;
  padding: 12px 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.clubs-geo__list {
  border-top: 1px solid var(--line);
  overflow-y: auto;
  max-height: 60vh;
  background: #fff;
}
@media (min-width: 900px) {
  .clubs-geo__map { min-height: 0; height: 100%; }
  .clubs-geo__list {
    border-top: 0;
    border-left: 1px solid var(--line);
    max-height: none;
    height: 100%;
  }
}
.geo-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.geo-district {
  fill: var(--soft);
  stroke: var(--line);
  stroke-width: 35;
  stroke-linejoin: round;
  cursor: default;
}
.geo-district.has-club {
  fill: #efe8e4;
  stroke: var(--wine);
  cursor: pointer;
}
.geo-district.has-club:hover,
.geo-district.is-on {
  fill: var(--wine);
  stroke: var(--wine);
}
.geo-pin { cursor: pointer; }
.geo-pin__glow {
  fill: var(--gold);
  opacity: 0.28;
}
.geo-pin__dot { fill: var(--wine); }
.geo-pin.is-on .geo-pin__glow { opacity: 0.5; }
.geo-pin.is-on .geo-pin__dot { fill: var(--gold); }
.geo-af {
  border-bottom: 1px solid var(--line);
}
.geo-af summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.geo-af summary::-webkit-details-marker { display: none; }
.geo-af__count {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.geo-af.is-on summary,
.geo-af[open] summary { background: var(--soft); }

.club-suggest {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ebe4df;
}
.club-suggest--band {
  width: 100%;
}
.club-suggest--split {
  display: grid;
  align-items: stretch;
  min-height: min(72vh, 720px);
}
@media (min-width: 900px) {
  .club-suggest--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}
.kits-index .club-suggest,
.clubs-index .club-suggest {
  margin-top: 56px;
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  width: auto;
}
.club-suggest__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #2a1818;
}
.club-suggest__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: club-suggest-media 16s ease-out forwards;
}
.club-suggest__panel {
  display: flex;
  align-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(74, 16, 24, 0.08), transparent 55%),
    linear-gradient(160deg, #f7f1ed 0%, #f3ebe8 55%, #efe6e1 100%);
  animation: club-suggest-panel 700ms ease-out both;
}
.club-suggest__inner {
  max-width: 520px;
  width: 100%;
}
.club-suggest .kicker {
  color: var(--wine);
}
.club-suggest h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.08;
}
.club-suggest .lead {
  margin: 0 0 28px;
  font-size: 17px;
  max-width: 34em;
}
.club-suggest__form {
  max-width: none;
}
.club-suggest__row {
  display: grid;
  gap: 0;
}
@media (min-width: 640px) {
  .club-suggest__row {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
}
.club-suggest__legal {
  margin: 8px 0 20px;
}
.club-suggest__legal a {
  color: var(--wine);
  font-weight: 600;
}
.club-suggest__ok {
  margin: 0;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.club-suggest .err {
  margin: 0 0 16px;
}
@keyframes club-suggest-media {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes club-suggest-panel {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .club-suggest__media img,
  .club-suggest__panel {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

.club-suggest-callout {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 22px;
  margin: 0 0 28px;
  padding: 14px 18px 14px 14px;
  background: var(--wine);
  color: #fff;
  overflow: hidden;
}
@media (max-width: 640px) {
  .club-suggest-callout {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .club-suggest-callout .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
.club-suggest-callout__media {
  width: 72px;
  height: 88px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.club-suggest-callout__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.club-suggest-callout__kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.club-suggest-callout__title {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.club-suggest-callout__text {
  margin: 6px 0 0;
  max-width: 34em;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}
.club-suggest-callout .btn--cream {
  flex-shrink: 0;
  background: #fff;
  color: var(--wine);
  border-color: #fff;
}
.club-suggest-callout .btn--cream:hover {
  background: var(--soft);
  color: var(--wine);
}
.collection-head .lead a {
  color: var(--wine);
  font-weight: 600;
  border-bottom: 1px solid rgba(74, 16, 24, 0.35);
}
.collection-head .lead a:hover {
  border-bottom-color: var(--wine);
}
.geo-club {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  color: inherit;
}
.geo-club:hover,
.geo-club.is-on { background: var(--soft); }
.geo-club__meta {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.geo-club__body { min-width: 0; }
.geo-club__body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.geo-club__body em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.geo-club__side {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}
.clubs-grid {
  display: grid;
  gap: 12px;
}
.club-tile {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  color: inherit;
  padding: 10px 12px 10px 10px;
  background: var(--soft);
}
.club-tile__media {
  height: 88px;
  background: #fff;
}
.club-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.club-tile__body { padding: 4px 4px 4px 0; min-width: 0; }
.club-tile__meta {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.club-tile h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.club-tile__lema {
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}
.club-tile__foot {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
@media (min-width: 720px) {
  .clubs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }
  .club-tile { grid-template-columns: 140px minmax(0, 1fr); }
  .club-tile__media { height: 100px; }
}
.kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.toolbar label { font-size: 13px; color: var(--muted); }
.toolbar select {
  appearance: none;
  padding: 8px 28px 8px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%231a1a1a'/%3E%3C/svg%3E") no-repeat right center;
  font: inherit;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(4, 1fr); gap: 36px 20px; }
}
.grid--shop {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  align-items: start;
}
@media (max-width: 749px) {
  .grid--shop { grid-template-columns: 1fr; }
}
.grid--shop .card:first-child { grid-row: span 2; }
.grid--shop .card:first-child .card__photo {
  aspect-ratio: auto;
  min-height: min(78vh, 820px);
  height: 100%;
}

.card { color: var(--ink); }
.card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
}
.card__photo img { width: 100%; height: 100%; object-fit: cover; }
.card__photo img.is-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.card:hover .card__photo img.is-hover { opacity: 1; }
.card__quick {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: none;
  width: auto;
  min-width: 0;
  min-height: 36px;
  padding: 8px 18px;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
@media (hover: hover) {
  .card:hover .card__quick { display: flex; }
}
.card__body { padding: 14px 0 0; }
.card__club, .card__name, .card__price { margin: 0; }
.card__club { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }
.card__name { font-family: var(--sans); font-size: 18px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.card__epoca {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.card__price { font-size: 14px; margin-top: 4px; color: var(--wine); font-weight: 600; }
.card__note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: var(--pill);
  background: var(--soft);
  font-size: 12px;
}

.looks { display: none; }

.product {
  display: grid;
  gap: 32px;
  padding: 8px var(--pad) 72px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .product {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: start;
    gap: 64px;
  }
}
.gallery { display: grid; gap: 10px; }
.gallery--stack {
  display: grid;
  gap: 10px;
  align-items: start;
}
.gallery__stage {
  margin: 0;
  background: var(--soft);
  overflow: hidden;
}
.gallery__stage img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.gallery__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.gallery__shot {
  margin: 0;
  background: var(--soft);
  scroll-margin-top: calc(var(--header) + 12px);
  overflow: hidden;
}
.gallery__shot + .gallery__shot {
  border-top: 1px solid var(--line);
}
.gallery__shot img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gallery__thumbs button {
  width: 72px;
  padding: 0;
  border: 1px solid transparent;
  background: var(--soft);
  cursor: pointer;
}
.gallery__thumbs button.is-on { border-color: var(--wine); }
.gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .gallery:not(.gallery--solo) {
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: start;
  }
  .gallery--stack {
    grid-template-columns: 80px minmax(0, 1fr);
  }
  .gallery:not(.gallery--solo) .gallery__thumbs,
  .gallery--stack .gallery__thumbs {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: calc(var(--header) + 12px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-self: start;
    max-height: calc(100vh - var(--header) - 24px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .gallery:not(.gallery--solo) .gallery__thumbs button,
  .gallery--stack .gallery__thumbs button { width: 100%; }
  .gallery:not(.gallery--solo) .gallery__stage,
  .gallery--stack .gallery__stack { grid-column: 2; grid-row: 1; min-width: 0; }
}
@media (max-width: 899px) {
  .gallery--stack .gallery__thumbs {
    position: sticky;
    top: var(--header);
    z-index: 2;
    padding: 8px 0;
    background: #fff;
    order: -1;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery--stack .gallery__thumbs::-webkit-scrollbar { display: none; }
  .gallery--stack .gallery__thumbs button {
    flex: 0 0 64px;
    width: 64px;
  }
}

.buy .btn { width: 100%; min-height: 56px; padding: 16px 28px; margin-top: 20px; }
@media (min-width: 900px) {
  .buy { position: sticky; top: calc(var(--header) + 20px); padding-top: 4px; }
}
.buy .kicker { margin: 0 0 8px; }
.buy h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.vendor { margin: 0 0 8px; font-size: 15px; }
.vendor a { color: var(--gold); font-weight: 600; }
.price { margin: 0; color: var(--wine); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.price-note { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.price-note + .price-note { margin-top: 2px; }
.buy__box {
  margin-top: 16px;
  padding: 20px 18px 18px;
  background: var(--soft);
  border-radius: 4px;
}
.buy__story {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.buy__story summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.buy__story summary::-webkit-details-marker { display: none; }
.buy__story summary::after { content: "+"; color: var(--gold); font-weight: 400; font-size: 20px; }
.buy__story[open] summary::after { content: "-"; }
.buy__story__body {
  padding: 0 0 16px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}
.buy__story__body p { margin: 0 0 12px; }
.buy__story__body p:last-child { margin-bottom: 0; }
.buy__lead { margin: 16px 0 24px; max-width: 36em; color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.sold-by {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}
.sold-by strong { color: var(--wine); font-weight: 600; }
.opt-label { margin: 0 0 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.buy__note { margin: 10px 0 0; font-size: 13px; color: var(--muted); }
.buy-pers {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 12px;
  margin: 8px 0 4px;
}
.buy-pers .field span { font-size: 13px; font-weight: 600; color: var(--ink); }
.buy-pers .field input {
  width: 100%;
  min-height: 56px;
  padding: 16px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
}
.buy-pers .field input::placeholder,
#pedido-pers-campos input::placeholder {
  color: #9a9a9a;
  font-weight: 400;
  font-style: italic;
  opacity: 1;
}
.buy-pers .field input:focus {
  outline: none;
  border-color: var(--ink);
}
#pedido-pers-campos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 14px;
}
#pedido-pers-campos .field input {
  min-height: 56px;
  padding: 16px 16px;
}

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.pills button {
  min-width: 52px;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.pills button.is-on { background: var(--wine); color: #fff; border-color: var(--wine); }

.acc { margin-top: 12px; border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; color: var(--gold); font-weight: 400; font-size: 20px; }
.acc details[open] summary::after { content: "-"; }
.acc p { margin: 0 0 16px; color: var(--ink-2); }

.pdp-club {
  width: min(var(--max), 100%);
  margin: 0 auto 8px;
  background: var(--soft);
}
.pdp-club__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px var(--pad);
}
.pdp-club__copy .kicker { margin: 0; }
.pdp-club__copy h2 {
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.pdp-club__copy p { margin: 0; max-width: 40em; color: var(--ink-2); font-size: 14px; }
.pdp-club__copy .btn {
  width: auto;
  align-self: flex-start;
  min-height: 40px;
  padding: 8px 16px;
  margin-top: 4px;
}

.related, .pad { padding: 48px var(--pad) 80px; }
.club-kits {
  scroll-margin-top: calc(var(--header) + 16px);
  padding-top: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.club-kits__count {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.section-head .club-kits__count { font-weight: 400; }
.club-kits--soon {
  background: var(--soft);
  border-top: 1px solid var(--line);
}
.club-soon {
  width: min(560px, 100%);
}
.club-soon .kicker { margin-bottom: 12px; }
.club-soon h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.club-soon p:last-child {
  margin: 0;
  color: var(--ink-2);
  max-width: 36em;
}
.related h2, .pad h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.related .kicker { margin-bottom: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--pill);
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover { background: var(--orange-deep); filter: none; }
.btn--inline { width: auto; }
.btn--cream {
  background: var(--orange);
  color: #fff;
}
.btn--ghost, .btn-ghost, .btn--ghost-light {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: var(--pill);
}

.photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.photos figure { margin: 0; background: var(--soft); }
.photos figure:first-child { grid-column: 1 / -1; }
.photos img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.photos figure:first-child img { aspect-ratio: 4 / 5; }
.photos figcaption {
  padding: 10px 2px 0;
  font-size: 13px;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.features p {
  margin: 8px 0 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.features svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.4; }

.spec {
  display: grid;
  gap: 0;
  margin: 0 var(--pad) 48px;
  border-top: 1px solid var(--line);
}
.spec__row {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 750px) {
  .spec__row { grid-template-columns: 180px 1fr; align-items: start; }
}
.spec__row span { font-size: 14px; color: var(--ink); }
.spec__row p { margin: 0; color: var(--ink-2); }

.crumbs, .crumbs-wrap .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}
.crumbs-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 16px var(--pad) 0;
}
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; }

.club-hero {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
  background: var(--bg);
  overflow: hidden;
}
@media (min-width: 750px) {
  .club-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 560px auto;
    height: auto;
    min-height: 0;
    max-height: none;
  }
}
.club-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 750px) {
  .club-hero__copy {
    grid-column: 1;
    grid-row: 1;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 36px clamp(24px, 3vw, 40px) 36px 0;
    height: 100%;
    overflow: hidden;
  }
  .club-hero__visual {
    grid-column: 2;
    grid-row: 1;
  }
}
.club-hero__intro h1 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 10ch;
  margin: 0 0 12px;
}
.club-hero__intro .kicker { margin: 0 0 10px; }
.club-hero__intro .crumbs { margin-bottom: 20px; }
.club-hero__actions { margin: 20px 0 0; }
.club-hero__lead {
  margin: 0;
  max-width: 36em;
  color: var(--ink-2);
  font-size: 14px;
}
.club-hero__visual {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
@media (min-width: 750px) {
  .club-hero__visual {
    height: 560px;
    min-height: 560px;
  }
}
.club-hero__art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 280px;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 750px) {
  .club-hero__art {
    height: 560px;
    min-height: 560px;
  }
}
.club-hero__art img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.club-hero__art img.club-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.club-hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
  width: auto;
  margin: 0 calc(-1 * var(--pad));
  padding: 0 var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  background: var(--bg);
}
@media (min-width: 750px) {
  .club-hero__facts { grid-template-columns: repeat(4, 1fr); }
}
.club-hero__facts div {
  padding: 18px 16px 20px;
  border-right: 1px solid var(--line);
}
.club-hero__facts div:last-child { border-right: 0; }
.club-hero__facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.club-hero__facts p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.02em;
}
.club-official { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.club-prose {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 48px var(--pad) 8px;
}
.club-prose h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.club-prose p { color: var(--ink-2); }
.club-contact-block {
  background: var(--soft);
  border-top: 1px solid var(--line);
}
.club-contact-block__inner {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 48px var(--pad) 56px;
}
.club-contact-block h2 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.club-contact-block .kicker {
  margin-bottom: 12px;
}
.club-contact span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.club-contact {
  margin: 0 0 16px;
  color: var(--ink-2);
}
.club-contact:last-of-type {
  margin-bottom: 0;
}
.club-contact a { color: var(--wine); font-weight: 600; }
.club-social { display: flex; gap: 16px; }
.club-social a { color: var(--wine); font-weight: 600; }
.club-press {
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.club-press__inner {
  padding: 32px 0 56px;
}
.club-press__head {
  max-width: 520px;
  margin-bottom: 40px;
  padding: 0 var(--pad);
}
.club-press__head .kicker {
  margin-bottom: 12px;
}
.club-press h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}
.club-press__track {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad);
  scroll-padding-inline: var(--pad);
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.club-press__track::-webkit-scrollbar { height: 6px; }
.club-press__track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}
.club-press__timeline {
  list-style: none;
  display: flex;
  gap: 0;
  width: max-content;
  margin: 0;
  padding: 0;
  position: relative;
}
.club-press__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 1px;
  background: var(--line);
}
.club-press__entry {
  flex: 0 0 min(300px, 72vw);
  width: min(300px, 72vw);
  margin: 0;
  padding: 48px 32px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}
.club-press__entry:last-child { padding-right: 0; }
.club-press__entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 4px var(--bg);
  z-index: 1;
}
.club-press__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.club-press__date {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.club-press__fonte {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.club-press__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
a.club-press__card:hover h3 { color: var(--wine); }
.club-press h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.club-press__card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}
.club-press__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  color: var(--wine);
  font-weight: 600;
  font-size: 13px;
}

.steps {
  display: grid;
  gap: 24px;
  margin: 8px 0 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 750px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.steps article h2 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.steps article p { margin: 0; color: var(--ink-2); }
.steps .num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.panel .num { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.columns { display: grid; gap: 40px; margin: 8px 0 32px; }
@media (min-width: 750px) { .columns { grid-template-columns: 1fr 1fr; } }
.panel h2 { margin: 6px 0 12px; font-family: var(--serif); font-weight: 700; color: var(--ink); }
.panel ol { margin: 0; padding-left: 18px; }
.notice { margin: 20px 0; color: var(--ink-2); }

.wrap--ask { padding-bottom: 40px; }
.ask__lead { margin: 0 0 24px; max-width: 36em; color: var(--ink-2); }
.ask {
  display: grid;
  gap: 28px;
  padding: 8px 0 0;
}
.ask__form h1 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.ask__card {
  background: var(--soft);
  align-self: start;
}
@media (max-width: 859px) {
  .ask__card {
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: stretch;
  }
  .ask__photo img { aspect-ratio: 1; height: 100%; object-fit: contain; }
}
.ask__card a { color: var(--wine); font-weight: 600; }
.ask__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
}
.ask__card > div { padding: 16px 16px 20px; }
.ask__card p { margin: 0 0 4px; }
.ask__size { font-size: 14px; color: var(--ink-2); }
.ask__size strong { color: var(--ink); }
@media (min-width: 860px) {
  .ask {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
    align-items: start;
  }
  .ask__form { order: 0; min-width: 0; }
  .ask__card { order: 1; position: sticky; top: calc(var(--header) + 16px); }
}
.ask-block {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 8px 0 24px;
  border: 0;
  border-top: 1px solid var(--line);
}
.ask-block[hidden] {
  display: none !important;
}
.ask-block legend {
  padding: 18px 0 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ask-block legend span {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}
.ask-row { display: grid; gap: 14px; }
@media (min-width: 560px) {
  .ask-row { grid-template-columns: 140px minmax(0, 1fr); }
  .ask-row--wide { grid-template-columns: 1fr 1fr; }
}
.ask-block .pills { margin: 0; }
.pay-choices {
  display: grid;
  gap: 10px;
}
@media (min-width: 640px) {
  .pay-choices { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
.pay-choice {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 400;
}
.pay-choice[hidden] {
  display: none !important;
}
.pay-choice span { display: grid; gap: 2px; }
.pay-choice strong { color: var(--ink); font-size: 16px; font-weight: 600; }
.pay-choice em {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}
.pay-choice:hover { border-color: rgba(74, 16, 24, 0.35); }
.pay-choice:has(input:checked) {
  border-color: var(--wine);
  background: var(--soft);
}
.pay-choice input[type="radio"] {
  appearance: radio;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--wine);
}
.ask-submit {
  display: grid;
  gap: 10px;
  padding: 8px 0 24px;
}
.ask-submit__bar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ask-submit__price {
  margin: 0;
  flex: 1 1 auto;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ask-submit .btn {
  width: auto;
  min-width: 11.5rem;
  flex: 0 0 auto;
}
.ask-submit__hint { margin: 0; }
.ask-submit__legal { margin: 8px 0 0; }
.ask-submit__legal a {
  color: var(--wine);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}
@media (max-width: 749px) {
  .ask-submit {
    position: sticky;
    bottom: calc(var(--tabbar) + env(safe-area-inset-bottom, 0px));
    z-index: 20;
    margin: 0 calc(var(--pad) * -1);
    padding: 12px var(--pad) 12px;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid var(--line);
  }
  .ask-submit .btn { flex: 1 1 auto; width: auto; min-width: 0; }
}
@media (max-width: 420px) {
  .ask-submit__bar { flex-wrap: wrap; }
  .ask-submit .btn { width: 100%; }
}

.ask__form form.stack { max-width: none; }
form.stack { display: grid; gap: 0; max-width: 560px; }
label.field, fieldset.field {
  display: grid; gap: 6px; padding: 0; border: 0; font-size: 13px; color: var(--ink);
}
.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-size: 16px;
  background: #fff;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9a9a9a;
  font-style: italic;
  font-weight: 400;
  opacity: 1;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field-hint { color: var(--muted); font-size: 13px; font-weight: 400; }
.radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.radios label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
}
.radios input[type="radio"] {
  appearance: radio;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--wine);
}
.hp { position: absolute; left: -9999px; }

.wrap--confirm { width: min(1040px, 100%); padding: 32px var(--pad) 88px; }
.confirm-empty { max-width: 36em; }
.confirm-empty h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.confirm-head { margin: 0 0 32px; max-width: 40em; }
.confirm-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: var(--pill);
  background: var(--soft);
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.confirm-head h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.confirm-head p { margin: 0; color: var(--ink-2); }
.confirm-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 860px) {
  .confirm-grid { grid-template-columns: 1fr 1.05fr; gap: 40px; }
  .confirm-pay { position: sticky; top: calc(var(--header) + 16px); }
}
.confirm-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  margin: 0 0 28px;
  padding: 16px;
  background: var(--soft);
}
.confirm-item__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
}
.confirm-item h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.confirm-item p { margin: 0 0 4px; }
.confirm-item__price {
  margin-top: 8px;
  color: var(--wine);
  font-weight: 700;
}
.confirm-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.confirm-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.confirm-steps span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.confirm-steps strong { display: block; color: var(--ink); margin-bottom: 2px; }
.confirm-steps p { margin: 0; color: var(--ink-2); font-size: 14px; }
.confirm-pay {
  padding: 24px 22px 28px;
  border: 1px solid var(--line);
  background: #fff;
}
.confirm-pay h2 {
  margin: 0 0 4px;
  color: var(--wine);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.confirm-pay__to { margin: 0 0 24px; color: var(--ink-2); }
.confirm-pay__row {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.confirm-pay__row span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.confirm-pay__row .btn-ghost {
  justify-self: start;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 13px;
}
.confirm-pay__note {
  margin: 20px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}
.confirm-nav { margin: 32px 0 0; }
.confirm-nav a {
  color: var(--wine);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}
.ref {
  font-family: var(--sans);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--wine);
  word-break: break-all;
}
.pay-destino {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--wine);
  word-break: break-all;
}

.sticky-pedir {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--tabbar) + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px var(--pad) 10px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.sticky-pedir.is-on { display: flex; }
.sticky-pedir img {
  width: 44px;
  height: 56px;
  object-fit: contain;
  background: var(--soft);
  flex: 0 0 auto;
}
.sticky-pedir div { flex: 1; min-width: 0; }
.sticky-pedir p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-pedir span { font-size: 13px; color: var(--wine); font-weight: 700; }
.sticky-pedir .btn { width: auto; min-height: 42px; padding: 8px 18px; }
@media (min-width: 900px) {
  .sticky-pedir { display: none !important; }
}

.site-footer {
  margin-top: clamp(48px, 6vw, 88px);
  padding: 64px var(--pad) 28px;
  background: var(--wine);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
@media (min-width: 750px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand {
  margin: 0 0 10px;
  line-height: 0;
}
.footer-brand img {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.site-footer nav { display: grid; gap: 8px; align-content: start; }
.site-footer h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-note {
  width: min(var(--max), 100%);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(181, 154, 109, 0.35);
  font-size: 13px;
  color: var(--gold);
}
.legal { color: var(--ink-2); }
.legal .updated {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.legal-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.legal-index a {
  color: var(--wine);
  border-bottom: 1px solid rgba(181, 154, 109, 0.7);
}
.legal h2 {
  margin: 40px 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--wine);
}
.legal h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.legal p { margin: 0 0 14px; }
.legal ul,
.legal ol {
  margin: 0 0 16px;
  padding-left: 1.15em;
}
.legal li { margin: 0 0 8px; }
.legal-table {
  width: 100%;
  margin: 0 0 20px;
  border-collapse: collapse;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: var(--soft);
  color: var(--ink);
  font-weight: 600;
}
.legal a {
  color: var(--wine);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

.err { color: #9b1c1c; }
.empty { padding: 28px 0; }
.club-logo, .club-logo--fallback { width: 96px; height: 96px; object-fit: cover; }
.details { display: none; }
