@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");

@font-face {
  font-family: "Tosh";
  src:
    url("assets/fonts/TRYToshA-Regular.woff2") format("woff2"),
    url("assets/fonts/TRYToshA-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 900;
}

@font-face {
  font-family: "Tosh";
  src:
    url("assets/fonts/TRYToshA-Light.woff2") format("woff2"),
    url("assets/fonts/TRYToshA-Light.ttf") format("truetype");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "Tosh";
  src:
    url("assets/fonts/TRYToshA-Thin.woff2") format("woff2"),
    url("assets/fonts/TRYToshA-Thin.ttf") format("truetype");
  font-display: swap;
  font-weight: 200;
}

:root {
  --orange: #ec7200;
  --orange-dark: #bd5800;
  --butter: #f4f0e8;
  --black: #050505;
  --blue: #050505;
  --blue-soft: #16120f;
  --paper: #f4f0e8;
  --surface: #f4f0e8;
  --beige: #ead8c2;
  --gray-warm: #e6e2dc;
  --brown: #5a2f16;
  --gold: #c69236;
  --green: #2b8a4b;
  --red: #c82020;
  --line: #dbd1c2;
  --muted: #675e56;
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.12);
  --shadow-soft: 0 14px 34px rgba(5, 5, 5, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  --shadow-lift: 0 28px 78px rgba(5, 5, 5, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  --font-display: "Tosh", "TRY Tosh A", "Host Grotesk", Inter, system-ui, sans-serif;
  --font-body: "Host Grotesk", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --radius-xl: 38px;
  --container: 1240px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0;
}

body.drawer-open,
body.modal-open,
body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  height: var(--header);
  padding: 0 28px;
  border-bottom: 1px solid rgba(232, 226, 210, 0.7);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  box-shadow: 0 12px 36px rgba(36, 44, 81, 0.11);
}

.brand img {
  width: 160px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-search,
.catalog-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 220px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.header-search svg,
.catalog-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.header-search input,
.catalog-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
}

.quote-trigger,
.mobile-menu-button,
.panel-close,
.drawer-header button,
.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.quote-trigger {
  position: relative;
  gap: 8px;
  height: 42px;
  padding: 0 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.quote-trigger svg {
  width: 18px;
}

.quote-trigger strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--paper);
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 82vh;
  padding-top: var(--header);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.section-dark {
  color: #fff;
  background: var(--blue);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.8) 0%, rgba(18, 20, 24, 0.58) 44%, rgba(18, 20, 24, 0.16) 100%),
    linear-gradient(0deg, rgba(18, 20, 24, 0.72), rgba(18, 20, 24, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 40px));
  margin: 0 auto 42px;
  margin-left: max(20px, calc((100% - var(--container)) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-kicker.light {
  color: var(--butter);
}

.hero h1,
.intro-grid h2,
.section-heading h2,
.catalog-panel h2,
.about-copy h2,
.club-grid h2,
.regions-grid h2,
.contact-grid h2 {
  margin: 0;
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: var(--butter);
  font-size: 4.65rem;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
  line-height: 1.48;
}

.hero-ctas,
.section-heading,
.catalog-toolbar {
  display: flex;
  align-items: center;
}

.hero-ctas {
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button,
.offer-card button,
.region-form button,
.contact-form button,
.quote-modal form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 36px rgba(245, 79, 27, 0.3);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button:disabled,
.quote-modal form button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.button.secondary {
  background: var(--butter);
  color: var(--blue);
}

.button.compact {
  min-height: 44px;
  background: var(--blue);
  color: #fff;
}

.button.full {
  width: 100%;
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  padding: 24px;
  background: rgba(36, 44, 81, 0.72);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--butter);
  font-size: 1rem;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.intro-band {
  padding: 54px 0;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
}

.intro-grid h2 {
  max-width: 620px;
  color: var(--blue);
  font-size: 3rem;
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.category-strip,
.catalog-section,
.about-section,
.operations-section,
.club-section,
.regions-section {
  padding: 92px 0;
}

.section-heading {
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 700px;
  color: var(--blue);
  font-size: 2.75rem;
}

.section-dark .section-heading h2 {
  color: #fff;
}

.text-link {
  color: var(--orange);
  font-weight: 850;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-card:hover,
.category-card.active {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(245, 79, 27, 0.13);
  transform: translateY(-2px);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--orange);
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.category-card small {
  margin-top: 5px;
  color: var(--muted);
}

.catalog-section {
  background: #f7f3eb;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 26px;
  align-items: start;
}

.catalog-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

.catalog-panel h2 {
  color: var(--butter);
  font-size: 2.25rem;
}

.catalog-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.filter-pill {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
}

.filter-pill.active {
  border-color: var(--butter);
  background: var(--butter);
  color: var(--blue);
}

.catalog-note {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.catalog-note svg {
  width: 22px;
  height: 22px;
  color: var(--butter);
  flex: 0 0 auto;
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.catalog-search {
  min-width: 0;
  flex: 1;
  height: 48px;
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(36, 44, 81, 0.06);
}

.product-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--paper);
}

.product-visual::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(243, 227, 152, 0.84), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(245, 79, 27, 0.18), transparent 28%);
  content: "";
}

.product-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card[data-tone="blue"] .product-visual {
  background: var(--blue);
}

.product-card[data-tone="blue"] .product-visual::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(245, 79, 27, 0.36), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(243, 227, 152, 0.2), transparent 28%);
}

.product-card[data-tone="orange"] .product-visual {
  background: var(--orange);
}

.product-card[data-tone="black"] .product-visual {
  background: var(--black);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--butter);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  gap: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-body h3 {
  margin: 9px 0 0;
  color: var(--blue);
  font-size: 1.15rem;
  line-height: 1.18;
}

.product-details {
  display: grid;
  gap: 4px;
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 0.93rem;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-action button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
}

.product-action button.is-added {
  background: var(--orange);
}

.product-action small {
  color: var(--muted);
  white-space: nowrap;
}

.offers-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.offers-section::before {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 46px solid rgba(243, 227, 152, 0.16);
  border-radius: 50%;
  content: "";
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 16px;
}

.offer-card,
.offer-photo {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
}

.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.offer-card.orange {
  background: var(--orange);
  color: #fff;
}

.offer-card.blue {
  background: #19203e;
  color: var(--butter);
}

.offer-card span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 850;
}

.offer-card h3 {
  margin: 34px 0 0;
  font-size: 2.25rem;
  line-height: 1;
}

.offer-card p {
  margin: 16px 0 24px;
  line-height: 1.5;
}

.offer-card button {
  width: fit-content;
  background: var(--butter);
  color: var(--blue);
}

.offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 62px;
  align-items: center;
}

.about-copy h2,
.club-grid h2,
.regions-grid h2,
.contact-grid h2 {
  color: var(--blue);
  font-size: 3.2rem;
}

.about-copy p,
.club-grid p,
.regions-grid p,
.contact-grid p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.66;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.about-stats div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.about-stats strong {
  display: block;
  color: var(--orange);
  font-size: 1.8rem;
}

.about-stats span {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 750;
  line-height: 1.25;
}

.editorial-stack {
  position: relative;
  min-height: 560px;
}

.editorial-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-main {
  width: 86%;
  height: 430px;
  object-fit: cover;
  margin-left: auto;
}

.image-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46%;
  height: 270px;
  object-fit: cover;
  border: 8px solid #fff;
}

.operations-section {
  background: var(--paper);
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.operations-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(36, 44, 81, 0.08);
}

.operations-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.operations-grid article:nth-child(3) img {
  object-position: center top;
}

.operations-grid div {
  padding: 22px;
}

.operations-grid h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.35rem;
}

.operations-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.club-section {
  background: #fff;
}

.club-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.club-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.club-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--blue);
  font-weight: 800;
}

.club-benefits svg {
  width: 19px;
  color: var(--orange);
}

.club-visual {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--orange) 0%, var(--orange) 58%, var(--butter) 58%, var(--butter) 100%);
  overflow: hidden;
}

.club-visual::after {
  position: absolute;
  right: 36px;
  top: 36px;
  color: rgba(36, 44, 81, 0.92);
  font-size: 1.05rem;
  font-weight: 850;
  content: "Novidades | campanhas | reposição";
}

.club-visual img {
  position: absolute;
  right: -60px;
  bottom: -42px;
  width: 84%;
  filter: drop-shadow(0 22px 40px rgba(36, 44, 81, 0.24));
}

.mascot-mark {
  position: absolute;
  top: 64px;
  left: 58px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
}

.regions-section {
  background: #f7f3eb;
}

.regions-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
}

.regions-copy-panel {
  align-self: start;
}

.region-map {
  position: relative;
}

.region-map img {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.route-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  width: 260px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(36, 44, 81, 0.18);
}

.route-card svg {
  color: var(--orange);
}

.route-card strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.route-card span {
  color: var(--muted);
}

.region-form {
  display: grid;
  grid-template-columns: 1fr 90px auto;
  gap: 8px;
  margin-top: 28px;
}

.region-form input,
.contact-form input,
.contact-form textarea,
.quote-modal input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  outline: 0;
  background: #fff;
  color: var(--black);
}

.region-form button {
  background: var(--blue);
  color: #fff;
}

.contact-section {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-grid h2 {
  color: #fff;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--butter);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 136px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  background: var(--orange);
  color: #fff;
}

.site-footer {
  padding: 48px 0;
  background: #1b213c;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.5fr));
  gap: 42px;
}

.footer-grid img {
  width: 180px;
}

.footer-grid p {
  max-width: 420px;
  line-height: 1.55;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-grid a,
.footer-grid button {
  display: block;
  margin: 8px 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  text-align: left;
}

.legal-page {
  padding: 78px 0 96px;
  background: linear-gradient(180deg, var(--paper), var(--gray-warm));
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--black);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}

.legal-content .legal-meta {
  margin-top: 14px;
  color: rgba(103, 94, 86, 0.78);
  font-size: 0.94rem;
  font-weight: 560;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(720px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(234, 216, 194, 0.2);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.94);
  color: var(--paper);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.32);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-consent > div:first-child {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cookie-consent svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.cookie-consent p {
  margin: 0;
}

.cookie-consent strong,
.cookie-consent span {
  display: block;
}

.cookie-consent span {
  margin-top: 3px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.95rem;
  line-height: 1.35;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-consent-actions a {
  color: rgba(244, 240, 232, 0.82);
  font-weight: 800;
}

.cookie-consent-actions button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.cookie-consent-actions button.secondary {
  border: 1px solid rgba(244, 240, 232, 0.28);
  background: rgba(244, 240, 232, 0.08);
  color: var(--paper);
}

.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  height: 100vh;
  padding: 24px;
  background: #fff;
  box-shadow: -24px 0 70px rgba(36, 44, 81, 0.22);
  transform: translateX(110%);
  transition: transform 220ms ease;
}

.quote-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  color: var(--blue);
}

.drawer-header button,
.modal-close,
.panel-close {
  width: 42px;
  height: 42px;
  background: var(--paper);
  color: var(--blue);
}

.drawer-items {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  overflow: auto;
}

.drawer-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.drawer-item img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.drawer-item h3 {
  margin: 0;
  color: var(--blue);
  font-size: 0.95rem;
  line-height: 1.15;
}

.drawer-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}

.qty-control {
  display: grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qty-control button {
  height: 30px;
  border: 0;
  background: var(--paper);
  color: var(--blue);
  cursor: pointer;
  font-weight: 850;
}

.qty-control strong {
  text-align: center;
  color: var(--blue);
}

.drawer-empty {
  display: none;
  place-items: center;
  gap: 8px;
  min-height: 280px;
  margin: auto 0;
  color: var(--muted);
  text-align: center;
}

.drawer-empty.is-visible {
  display: grid;
}

.drawer-empty svg {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.drawer-empty strong {
  color: var(--blue);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-backdrop,
.scrim {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.scrim {
  z-index: 70;
  background: rgba(15, 18, 27, 0.46);
}

.scrim.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 18, 27, 0.58);
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-modal h2 {
  margin: 0 44px 22px 0;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1.05;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.quote-modal form {
  display: grid;
  gap: 10px;
}

.quote-modal form button {
  background: var(--orange);
  color: #fff;
}

.quote-success {
  display: none;
  margin: 16px 0 0;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--blue);
  font-weight: 800;
}

.quote-success.is-visible {
  display: block;
}

.quote-success[data-status="error"] {
  background: #fff1eb;
  color: var(--red);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: grid;
  align-content: start;
  gap: 8px;
  width: min(360px, 100%);
  height: 100vh;
  padding: 24px;
  background: #fff;
  box-shadow: -24px 0 70px rgba(36, 44, 81, 0.2);
  transform: translateX(110%);
  transition: transform 220ms ease;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 850;
}

.panel-close {
  justify-self: end;
  margin-bottom: 12px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 160px 1fr auto;
    gap: 16px;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .header-search {
    display: none;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --header: 70px;
  }

  .site-header {
    grid-template-columns: 150px 1fr;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .quote-trigger span {
    display: none;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    margin-right: 20px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-proof,
  .intro-grid,
  .catalog-layout,
  .about-grid,
  .club-grid,
  .regions-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .intro-grid,
  .about-grid,
  .club-grid,
  .regions-grid,
  .contact-grid {
    gap: 32px;
  }

  .category-grid,
  .operations-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-panel {
    position: static;
  }

  .editorial-stack {
    min-height: auto;
  }

  .image-main,
  .image-float {
    position: static;
    width: 100%;
    height: 340px;
    border: 0;
    margin: 0;
  }

  .image-float {
    margin-top: 14px;
  }

  .club-visual {
    min-height: 360px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    height: 64px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .category-strip,
  .catalog-section,
  .about-section,
  .operations-section,
  .club-section,
  .regions-section,
  .offers-section,
  .contact-section {
    padding: 64px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .catalog-panel h2,
  .about-copy h2,
  .club-grid h2,
  .regions-grid h2,
  .contact-grid h2 {
    font-size: 2.1rem;
    line-height: 1.04;
  }

  .section-heading,
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .category-grid,
  .operations-grid,
  .offer-grid,
  .product-grid,
  .about-stats,
  .club-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 124px;
  }

  .catalog-panel {
    padding: 22px;
  }

  .product-visual {
    height: 190px;
  }

  .offer-card,
  .offer-photo {
    min-height: 300px;
  }

  .region-map img {
    height: 340px;
  }

  .route-card {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .region-form {
    grid-template-columns: 1fr;
  }

  .quote-drawer {
    padding: 18px;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    border-radius: 20px;
  }

  .cookie-consent-actions {
    justify-content: space-between;
  }
}

/* Multipage prototype refinements */
.desktop-nav a.is-active {
  color: var(--orange);
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.mobile-panel a.is-active {
  color: var(--orange);
}

.header-link {
  min-width: 178px;
  font-weight: 750;
}

.hero-home {
  min-height: 94vh;
}

.home-hero-content {
  margin-bottom: 68px;
}

.home-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-proof div {
  min-height: 126px;
}

.official-band {
  padding: 34px 0;
  background: var(--blue);
  color: #fff;
}

.official-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.official-grid p {
  margin: 0;
  color: var(--butter);
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.12;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.brand-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.page-section,
.about-preview,
.product-line-cta,
.blog-preview,
.club-how,
.offers-showcase {
  padding: 96px 0;
}

.media-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 58px;
  align-items: center;
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
  min-height: 454px;
}

.media-showcase video,
.media-showcase img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-showcase video,
.media-showcase.tall img:first-child {
  grid-row: 1 / 3;
}

.media-showcase.tall img:first-child {
  object-position: center;
}

.content-stack h1,
.content-stack h2,
.page-hero h1,
.club-benefit-grid h2,
.delivery-grid h2,
.product-line-panel h2,
.blog-grid h3,
.deal-card h3,
.step-grid h3,
.service-map strong,
.contact-page h1,
.cta-band h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.content-stack h2,
.delivery-grid h2,
.product-line-panel h2,
.club-benefit-grid h2,
.cta-band h2 {
  color: var(--blue);
  font-size: 3.05rem;
}

.section-dark .content-stack h2,
.section-dark .club-benefit-grid h2,
.section-dark .cta-band h2 {
  color: #fff;
}

.content-stack p,
.delivery-grid p,
.product-line-panel p,
.club-benefit-grid p,
.step-grid p,
.deal-card p,
.service-map span {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.section-dark .content-stack p,
.section-dark .club-benefit-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.inline-button {
  width: fit-content;
  margin-top: 28px;
}

.compact-stats {
  grid-template-columns: 1fr;
  gap: 10px;
}

.compact-stats div {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  min-height: 78px;
}

.compact-stats span {
  margin-top: 0;
}

.home-categories {
  background: #fff;
}

.home-categories .category-card {
  cursor: default;
}

.home-categories .category-card:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.club-teaser {
  padding: 112px 0;
  overflow: hidden;
}

.club-teaser-grid,
.club-benefit-grid,
.delivery-grid,
.product-line-panel,
.cta-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.benefit-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.benefit-list svg {
  width: 19px;
  color: var(--butter);
}

.club-animation {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(243, 227, 152, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 79, 27, 0.92), rgba(245, 79, 27, 0.58) 42%, rgba(36, 44, 81, 0.98) 42%, #111631 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.club-animation::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  content: "";
}

.floating-product {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 96px;
  height: 58px;
  border: 1px solid rgba(36, 44, 81, 0.08);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  box-shadow: 0 18px 36px rgba(15, 18, 27, 0.18);
  font-weight: 850;
}

.floating-product.p1 {
  top: 68px;
  left: 58px;
  transform: translate3d(var(--p1x, 0), var(--p1y, 0), 0) rotate(-5deg);
}

.floating-product.p2 {
  top: 72px;
  right: 78px;
  transform: translate3d(var(--p2x, 0), var(--p2y, 0), 0) rotate(4deg);
}

.floating-product.p3 {
  right: 64px;
  bottom: 108px;
  transform: translate3d(var(--p3x, 0), var(--p3y, 0), 0) rotate(-4deg);
}

.floating-product.p4 {
  left: 78px;
  bottom: 88px;
  transform: translate3d(var(--p4x, 0), var(--p4y, 0), 0) rotate(5deg);
}

.tom-box {
  position: absolute;
  left: 46%;
  bottom: 84px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 250px;
  height: 154px;
  padding: 22px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--orange);
  box-shadow: 0 24px 48px rgba(15, 18, 27, 0.28);
  transform: translate3d(calc(-50% + var(--box-x, 0px)), var(--box-y, 0px), 0);
}

.tom-box img {
  width: 168px;
}

.tom-box span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 850;
}

.club-truck {
  position: absolute;
  right: 18px;
  bottom: 32px;
  z-index: 2;
  width: 220px;
  filter: drop-shadow(0 22px 28px rgba(15, 18, 27, 0.28));
  transform: translate3d(var(--truck-x, 0), 0, 0);
}

.hero-club-animation {
  min-height: 430px;
  width: 100%;
}

.delivery-story {
  padding: 104px 0;
  background: var(--paper);
}

.road-stage {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, #fff 52%, #d8d0bd 52%, #d8d0bd 100%);
  box-shadow: var(--shadow);
}

.road-line {
  position: absolute;
  right: 0;
  bottom: 118px;
  left: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--butter) 0 44px, transparent 44px 82px);
}

.road-stage img {
  position: absolute;
  bottom: 90px;
  left: 8%;
  width: 206px;
  filter: drop-shadow(0 18px 24px rgba(36, 44, 81, 0.18));
  transform: translateX(var(--road-x, 0));
}

.product-line-cta {
  background: #fff;
}

.product-line-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

.product-line-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.product-line-panel div {
  padding: 42px;
}

.product-line-panel h2 {
  color: #fff;
}

.product-line-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.blog-preview {
  background: #f7f3eb;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
}

.blog-grid h3 {
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.12;
}

.page-hero {
  padding: calc(var(--header) + 78px) 0 78px;
  background: #f7f3eb;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.page-hero h1 {
  color: var(--blue);
  font-size: 4rem;
}

.page-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.56;
}

.page-hero img {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.club-page-hero {
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, rgba(36, 44, 81, 0.98), rgba(22, 27, 52, 1));
}

.club-page-hero h1 {
  color: var(--butter);
}

.club-page-hero p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-page-section {
  padding-top: 80px;
}

.about-hero img {
  object-position: center;
}

.offers-page-hero {
  background: linear-gradient(135deg, var(--paper), #fff 56%, rgba(245, 79, 27, 0.08));
}

.regions-page-hero img {
  object-position: center;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-grid article,
.benefit-card-grid article,
.deal-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-grid article {
  min-height: 240px;
  padding: 24px;
}

.step-grid strong {
  color: var(--orange);
  font-size: 2.1rem;
}

.step-grid h3 {
  margin-top: 34px;
  color: var(--blue);
  font-size: 1.5rem;
}

.club-benefit-section {
  padding: 104px 0;
}

.benefit-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card-grid article {
  min-height: 218px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.benefit-card-grid svg {
  width: 30px;
  height: 30px;
  color: var(--butter);
}

.benefit-card-grid h3 {
  margin: 28px 0 0;
  color: #fff;
  font-size: 1.45rem;
}

.benefit-card-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.deal-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.85fr));
  gap: 14px;
}

.deal-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.deal-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
}

.deal-card h3 {
  margin-top: auto;
  color: var(--blue);
  font-size: 2rem;
}

.deal-card a {
  width: fit-content;
  margin-top: 22px;
  color: var(--orange);
  font-weight: 850;
}

.hero-deal {
  background:
    linear-gradient(140deg, rgba(245, 79, 27, 0.95), rgba(245, 79, 27, 0.72)),
    var(--orange);
  color: #fff;
}

.hero-deal span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-deal h3,
.hero-deal p,
.hero-deal a {
  color: #fff;
}

.service-map {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 44, 81, 0.98), rgba(36, 44, 81, 0.84)),
    url("assets/unloading-wide.webp") center / cover;
}

.map-card {
  min-height: 128px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
}

.map-card svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.map-card strong {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 1.3rem;
}

.map-card span {
  display: block;
  margin-top: 8px;
}

.contact-page {
  min-height: calc(100vh - 180px);
  padding-top: calc(var(--header) + 92px);
  background:
    linear-gradient(90deg, rgba(36, 44, 81, 0.96), rgba(36, 44, 81, 0.82)),
    url("assets/facade-front.webp") center / cover;
}

.contact-page h1 {
  color: var(--butter);
  font-size: 4rem;
}

.contact-methods button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--butter);
  cursor: pointer;
  font-weight: 800;
}

.cta-band {
  padding: 70px 0;
}

.cta-band-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 1180px) {
  .home-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero h1,
  .contact-page h1 {
    font-size: 3.3rem;
  }

  .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .official-grid,
  .media-copy-grid,
  .club-teaser-grid,
  .club-benefit-grid,
  .delivery-grid,
  .product-line-panel,
  .page-hero-grid,
  .cta-band-grid {
    grid-template-columns: 1fr;
  }

  .brand-pills {
    justify-content: flex-start;
  }

  .hero-club-animation,
  .club-animation {
    min-height: 440px;
  }

  .step-grid,
  .benefit-card-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero img {
    height: 360px;
  }

  .contact-page {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .hero-home {
    min-height: 86vh;
  }

  .home-hero-content {
    margin-bottom: 34px;
  }

  .hero-ctas .button,
  .inline-button {
    width: 100%;
  }

  .official-grid p {
    font-size: 1.28rem;
  }

  .page-section,
  .about-preview,
  .product-line-cta,
  .blog-preview,
  .club-how,
  .offers-showcase,
  .club-teaser,
  .club-benefit-section,
  .delivery-story {
    padding: 66px 0;
  }

  .media-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .media-showcase video,
  .media-showcase img,
  .media-showcase.tall img:first-child {
    grid-row: auto;
    height: 240px;
  }

  .content-stack h2,
  .delivery-grid h2,
  .product-line-panel h2,
  .club-benefit-grid h2,
  .cta-band h2 {
    font-size: 2.1rem;
  }

  .benefit-list,
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .club-animation,
  .hero-club-animation {
    min-height: 360px;
  }

  .floating-product {
    width: 76px;
    height: 48px;
    font-size: 0.84rem;
  }

  .tom-box {
    width: 184px;
    height: 122px;
  }

  .tom-box img {
    width: 124px;
  }

  .club-truck {
    width: 158px;
  }

  .road-stage {
    min-height: 230px;
  }

  .road-stage img {
    width: 150px;
  }

  .product-line-panel img {
    height: 260px;
  }

  .product-line-panel div {
    padding: 24px;
  }

  .page-hero {
    padding: calc(var(--header) + 44px) 0 54px;
  }

  .page-hero h1,
  .contact-page h1 {
    font-size: 2.45rem;
  }

  .page-hero img {
    height: 260px;
  }

  .deal-card {
    min-height: 260px;
  }

  .contact-page {
    padding-top: calc(var(--header) + 54px);
  }
}

/* Warm premium palette experiment */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(234, 216, 194, 0.36), transparent 34%),
    var(--surface);
  color: var(--black);
}

.site-header {
  border-bottom-color: rgba(219, 209, 194, 0.86);
  background: rgba(244, 240, 232, 0.93);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.12);
}

.header-search,
.catalog-search,
.quote-modal,
.quote-drawer,
.mobile-panel {
  background: rgba(250, 247, 240, 0.96);
}

.header-search,
.catalog-search,
.contact-form input,
.contact-form textarea,
.region-form input,
.quote-modal input {
  border-color: rgba(90, 47, 22, 0.16);
}

.quote-trigger,
.button.compact,
.product-action button,
.region-form button {
  background: var(--black);
}

.quote-trigger strong,
.product-action button.is-added {
  background: var(--orange);
}

.mobile-menu-button,
.panel-close,
.drawer-header button,
.modal-close {
  background: var(--beige);
  color: var(--black);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.61) 48%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.08));
}

.hero h1 {
  color: var(--paper);
}

.hero-copy {
  color: rgba(244, 240, 232, 0.9);
}

.button.primary,
.contact-form button,
.quote-modal form button {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 34px rgba(236, 114, 0, 0.24);
}

.button.primary:hover,
.contact-form button:hover,
.quote-modal form button:hover {
  background: var(--orange-dark);
}

.button.secondary {
  background: var(--paper);
  color: var(--black);
}

.hero-proof {
  background: rgba(244, 240, 232, 0.12);
}

.hero-proof div {
  background: rgba(5, 5, 5, 0.78);
}

.hero-proof strong {
  color: var(--orange);
}

.hero-proof span {
  color: rgba(244, 240, 232, 0.78);
}

.official-band,
.catalog-panel,
.section-dark,
.site-footer,
.product-line-panel {
  background: var(--black);
}

.official-grid p,
.catalog-panel h2,
.section-kicker.light,
.club-page-hero h1,
.contact-page h1 {
  color: var(--paper);
}

.brand-pills span,
.filter-pill {
  border-color: rgba(244, 240, 232, 0.18);
  background: rgba(244, 240, 232, 0.08);
}

.filter-pill.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.intro-band,
.category-strip,
.about-preview,
.club-how,
.product-line-cta {
  background: var(--surface);
}

.catalog-section,
.operations-section,
.regions-section,
.blog-preview,
.delivery-story,
.page-hero {
  background: var(--gray-warm);
}

.home-categories,
.offers-showcase {
  background: var(--paper);
}

.category-card,
.product-card,
.blog-grid article,
.step-grid article,
.deal-card,
.map-card,
.route-card,
.operations-grid article {
  border-color: rgba(90, 47, 22, 0.14);
  background: rgba(250, 247, 240, 0.9);
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.06);
}

.category-card:hover,
.category-card.active {
  border-color: var(--orange);
  box-shadow: 0 16px 36px rgba(236, 114, 0, 0.13);
}

.category-icon,
.club-benefits span,
.about-stats div,
.quote-success,
.blog-grid span,
.deal-card span {
  background: var(--beige);
}

.category-icon,
.club-benefits svg,
.blog-grid span,
.deal-card span,
.eyebrow,
.section-kicker,
.text-link,
.product-meta,
.about-stats strong,
.route-card svg,
.map-card svg,
.contact-methods a,
.contact-methods button {
  color: var(--orange);
}

.about-stats span,
.category-card strong,
.product-body h3,
.section-heading h2,
.content-stack h2,
.delivery-grid h2,
.product-line-panel h2,
.blog-grid h3,
.page-hero h1,
.step-grid h3,
.deal-card h3,
.service-map strong,
.quote-modal h2,
.drawer-header h2,
.drawer-item h3,
.drawer-empty strong,
.desktop-nav,
.mobile-panel a {
  color: var(--black);
}

.section-dark .content-stack h2,
.section-dark .club-benefit-grid h2,
.section-dark .cta-band h2,
.section-dark .section-heading h2,
.product-line-panel h2 {
  color: var(--paper);
}

.section-dark .content-stack p,
.section-dark .club-benefit-grid p,
.product-line-panel p,
.catalog-panel p,
.contact-grid p,
.club-page-hero p:not(.section-kicker) {
  color: rgba(244, 240, 232, 0.76);
}

.content-stack p,
.delivery-grid p,
.product-line-panel p,
.club-benefit-grid p,
.step-grid p,
.deal-card p,
.service-map span,
.about-copy p,
.club-grid p,
.regions-grid p,
.product-details,
.product-action small,
.drawer-item span,
.page-hero p:not(.section-kicker) {
  color: var(--muted);
}

.product-visual {
  background: var(--beige);
}

.product-visual::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(234, 216, 194, 0.88), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(236, 114, 0, 0.18), transparent 28%);
}

.product-card[data-tone="blue"] .product-visual,
.product-card[data-tone="black"] .product-visual {
  background: var(--black);
}

.product-card[data-tone="orange"] .product-visual,
.offer-card.orange,
.hero-deal {
  background: var(--orange);
}

.product-card[data-tone="blue"] .product-visual::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(236, 114, 0, 0.32), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(234, 216, 194, 0.16), transparent 28%);
}

.product-badge,
.filter-pill.active,
.offer-card button {
  background: var(--orange);
  color: #fff;
}

.offer-card.blue {
  background: var(--black);
  color: var(--paper);
}

.offers-section::before {
  border-color: rgba(234, 216, 194, 0.38);
}

.club-visual {
  background:
    linear-gradient(135deg, var(--orange) 0%, var(--orange) 46%, var(--beige) 46%, var(--beige) 72%, var(--brown) 72%, var(--brown) 100%);
}

.club-animation {
  border-color: rgba(244, 240, 232, 0.14);
  background:
    linear-gradient(135deg, rgba(236, 114, 0, 0.94), rgba(236, 114, 0, 0.58) 40%, rgba(5, 5, 5, 0.98) 40%, rgba(90, 47, 22, 0.98) 100%);
}

.floating-product {
  border-color: rgba(90, 47, 22, 0.12);
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 18px 36px rgba(5, 5, 5, 0.18);
}

.tom-box {
  background: var(--orange);
  box-shadow: 0 24px 48px rgba(5, 5, 5, 0.28);
}

.road-stage {
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 1) 0%, rgba(250, 247, 240, 1) 52%, #d7c3a7 52%, #d7c3a7 100%);
}

.road-line {
  background: repeating-linear-gradient(90deg, var(--gold) 0 44px, transparent 44px 82px);
}

.club-page-hero,
.contact-page {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(90, 47, 22, 0.86)),
    url("assets/facade-front.webp") center / cover;
}

.offers-page-hero {
  background: linear-gradient(135deg, var(--surface), var(--paper) 58%, rgba(236, 114, 0, 0.08));
}

.service-map {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.92), rgba(90, 47, 22, 0.82)),
    url("assets/unloading-wide.webp") center / cover;
}

.benefit-list span,
.benefit-card-grid article,
.contact-form {
  border-color: rgba(244, 240, 232, 0.14);
  background: rgba(244, 240, 232, 0.08);
}

.benefit-list svg,
.benefit-card-grid svg,
.benefit-card-grid h3,
.contact-methods a,
.contact-methods button {
  color: var(--orange);
}

.benefit-list span,
.benefit-card-grid h3 {
  color: var(--paper);
}

.deal-card a {
  color: var(--orange);
}

.hero-deal h3,
.hero-deal p,
.hero-deal a {
  color: #fff;
}

.footer-grid a,
.footer-grid button {
  color: rgba(244, 240, 232, 0.68);
}

.footer-grid strong {
  color: var(--paper);
}

.footer-grid p {
  color: rgba(244, 240, 232, 0.68);
}

/* Two-level header closer to Perte reference */
:root {
  --header: 142px;
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 72;
  width: 100%;
  height: 46px;
  background:
    linear-gradient(90deg, #050505 0%, #5a2f16 54%, #ec7200 100%);
  color: #fff;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.18);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 18px;
}

.top-strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.top-strip svg {
  width: 19px;
  height: 19px;
}

.social-badge {
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  line-height: 1;
}

.social-badge img {
  display: block;
  width: 16px;
  height: 16px;
}

.club-shortcut {
  margin-left: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.seller-shortcut {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black) !important;
  box-shadow: 0 12px 24px rgba(5, 5, 5, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

/* Softer premium material direction */
body {
  background:
    linear-gradient(180deg, #fbf7ef 0%, var(--surface) 42%, #efe4d5 100%);
}

.site-shell {
  background:
    linear-gradient(90deg, rgba(90, 47, 22, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(90, 47, 22, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;
}

.site-header {
  top: 14px;
  left: 50%;
  width: min(1248px, calc(100% - 28px));
  height: 70px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(90, 47, 22, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.88), rgba(244, 240, 232, 0.78));
  box-shadow: 0 18px 48px rgba(5, 5, 5, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  height: 64px;
  box-shadow: 0 18px 54px rgba(5, 5, 5, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.brand img {
  width: 152px;
}

.desktop-nav {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 760;
}

.desktop-nav a::after {
  height: 3px;
  bottom: 0;
  border-radius: 999px;
}

.header-search,
.catalog-search {
  height: 46px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(244, 240, 232, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(5, 5, 5, 0.04);
}

.quote-trigger,
.mobile-menu-button,
.panel-close,
.drawer-header button,
.modal-close,
.button,
.offer-card button,
.region-form button,
.contact-form button,
.quote-modal form button,
.product-action button {
  border-radius: 999px;
}

.quote-trigger {
  height: 46px;
  background:
    linear-gradient(180deg, #161616, #050505);
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button,
.offer-card button,
.region-form button,
.contact-form button,
.quote-modal form button {
  min-height: 52px;
  padding: 0 22px;
  font-family: var(--font-body);
}

.button.primary,
.contact-form button,
.quote-modal form button {
  background:
    linear-gradient(180deg, #f08316, var(--orange));
  box-shadow: 0 18px 42px rgba(236, 114, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.secondary {
  background:
    linear-gradient(180deg, #fffaf1, var(--paper));
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.53) 48%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.04));
}

.hero h1,
.page-hero h1,
.contact-page h1,
.content-stack h2,
.section-heading h2,
.delivery-grid h2,
.product-line-panel h2,
.club-benefit-grid h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 0.94;
}

.hero h1 {
  text-wrap: balance;
}

.hero-copy,
.content-stack p,
.delivery-grid p,
.product-line-panel p,
.club-benefit-grid p,
.step-grid p,
.deal-card p,
.service-map span,
.page-hero p:not(.section-kicker),
.category-card small,
.product-details,
.footer-grid p {
  font-family: var(--font-body);
}

.eyebrow,
.section-kicker,
.hero-proof strong,
.brand-pills span,
.category-card strong,
.about-stats strong,
.blog-grid h3,
.deal-card h3,
.step-grid h3,
.service-map strong,
.product-body h3,
.drawer-header h2,
.quote-modal h2 {
  font-family: var(--font-display);
  font-weight: 760;
}

.hero-proof {
  border-radius: var(--radius-lg);
  background: rgba(244, 240, 232, 0.1);
  box-shadow: 0 24px 60px rgba(5, 5, 5, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-proof div {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.86), rgba(5, 5, 5, 0.86));
}

.official-band {
  margin-top: -28px;
  padding: 58px 0 46px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background:
    linear-gradient(135deg, #050505 0%, #14100d 60%, #2c170c 100%);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.16);
}

.official-grid p {
  font-family: var(--font-display);
  font-weight: 720;
}

.brand-pills span,
.filter-pill,
.blog-grid span,
.deal-card span,
.product-badge {
  border-radius: 999px;
}

.brand-pills span {
  min-height: 42px;
  background: rgba(244, 240, 232, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.about-preview,
.category-strip,
.product-line-cta,
.blog-preview,
.delivery-story,
.operations-section,
.club-how,
.offers-showcase,
.regions-section,
.catalog-section,
.page-hero {
  position: relative;
}

.media-showcase video,
.media-showcase img,
.page-hero img,
.operations-grid article,
.product-line-panel,
.road-stage,
.service-map,
.club-animation {
  border-radius: var(--radius-lg);
}

.media-showcase video,
.media-showcase img,
.page-hero img {
  box-shadow: var(--shadow-lift);
}

.category-card,
.product-card,
.blog-grid article,
.step-grid article,
.deal-card,
.map-card,
.route-card,
.about-stats div,
.drawer-item,
.quote-modal,
.quote-drawer,
.catalog-panel {
  border-radius: var(--radius-lg);
}

.category-card,
.product-card,
.blog-grid article,
.step-grid article,
.deal-card,
.map-card,
.route-card,
.about-stats div {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(244, 240, 232, 0.82));
  box-shadow: var(--shadow-soft);
}

.category-card,
.product-card,
.deal-card,
.blog-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.product-card:hover,
.deal-card:hover,
.blog-grid article:hover {
  border-color: rgba(236, 114, 0, 0.28);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.category-icon {
  width: 50px;
  height: 50px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.95), rgba(234, 216, 194, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(90, 47, 22, 0.08);
}

.catalog-panel {
  background:
    linear-gradient(145deg, #050505 0%, #15100d 58%, #3b1f10 100%);
  box-shadow: var(--shadow-lift);
}

.catalog-search {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 240, 232, 0.92));
}

.product-visual {
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
}

.product-action button {
  min-height: 42px;
}

.club-teaser,
.club-benefit-section,
.cta-band {
  background:
    linear-gradient(135deg, #050505 0%, #15100d 58%, #3b1f10 100%);
}

.benefit-list span,
.benefit-card-grid article,
.contact-form {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.11), rgba(244, 240, 232, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.club-animation {
  background:
    linear-gradient(142deg, rgba(236, 114, 0, 0.92) 0%, rgba(236, 114, 0, 0.52) 36%, rgba(5, 5, 5, 0.95) 36%, rgba(90, 47, 22, 0.9) 100%);
  box-shadow: 0 34px 90px rgba(5, 5, 5, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.club-animation::before {
  border-radius: calc(var(--radius-lg) - 10px);
}

.floating-product,
.tom-box {
  border-radius: var(--radius);
}

.road-stage {
  box-shadow: var(--shadow-lift);
}

.product-line-panel {
  background:
    linear-gradient(135deg, #050505 0%, #17110e 62%, #5a2f16 100%);
  box-shadow: var(--shadow-lift);
}

.blog-preview,
.catalog-section,
.delivery-story,
.regions-section,
.operations-section,
.page-hero {
  background:
    linear-gradient(180deg, var(--gray-warm), #f1eadf);
}

.page-hero {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.club-page-hero,
.contact-page {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.93), rgba(90, 47, 22, 0.78)),
    url("assets/facade-front.webp") center / cover;
}

.site-footer {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background:
    linear-gradient(135deg, #050505 0%, #15100d 62%, #2b160b 100%);
}

.quote-drawer,
.mobile-panel,
.quote-modal {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 240, 232, 0.96));
  box-shadow: 0 28px 90px rgba(5, 5, 5, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 720px);
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --radius: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
  }

  .site-header {
    height: 58px;
    padding: 0 10px 0 14px;
    border-radius: 18px;
  }

  .site-header.is-scrolled {
    height: 58px;
  }

  .brand img {
    width: 136px;
  }

  .quote-trigger,
  .mobile-menu-button {
    height: 42px;
  }

  .hero {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .hero h1,
  .page-hero h1,
  .contact-page h1 {
    line-height: 0.98;
  }

  .official-band {
    margin-top: -18px;
    padding-top: 48px;
  }
}

/* Header refinement requested after premium pass */
.site-header {
  top: 46px;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 max(28px, calc((100vw - var(--container)) / 2));
  border: 0;
  border-bottom: 1px solid rgba(90, 47, 22, 0.12);
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 240, 232, 0.96));
  box-shadow: 0 18px 46px rgba(5, 5, 5, 0.12);
  transform: none;
  grid-template-columns: 206px 1fr auto;
}

.site-header.is-scrolled {
  height: 84px;
  box-shadow: 0 16px 42px rgba(5, 5, 5, 0.13);
}

.brand img {
  width: 174px;
}

.desktop-nav {
  gap: 24px;
  font-size: 0.92rem;
}

.header-search,
.quote-trigger {
  height: 48px;
}

.hero {
  min-height: 100vh;
  padding-top: calc(var(--header) + 34px);
}

.hero-home {
  min-height: 104vh;
}

.home-hero-content {
  margin-bottom: 74px;
}

.hero-content {
  margin-left: max(20px, calc((100% - var(--container)) / 2));
}

.page-hero {
  padding-top: calc(var(--header) + 72px);
}

.contact-page {
  padding-top: calc(var(--header) + 72px);
}

.about-preview .media-copy-grid {
  align-items: stretch;
}

.about-preview .content-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-preview .media-showcase {
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 700px;
  height: 100%;
}

.about-preview .media-showcase video,
.about-preview .media-showcase img {
  min-height: 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
    padding-inline: 22px;
  }

  .desktop-nav {
    gap: 15px;
    font-size: 0.84rem;
  }
}

@media (max-width: 920px) {
  :root {
    --header: 124px;
  }

  .top-strip {
    height: 40px;
  }

  .club-shortcut {
    display: none !important;
  }

  .top-strip a {
    font-size: 0.82rem;
  }

  .seller-shortcut {
    min-height: 30px;
    padding: 0 12px;
  }

  .site-header {
    top: 40px;
    left: 0;
    width: 100%;
    height: 84px;
    grid-template-columns: 158px 1fr;
    padding: 0 20px;
    border-radius: 0 0 22px 22px;
    transform: none;
  }

  .site-header.is-scrolled {
    height: 76px;
  }

  .brand img {
    width: 148px;
  }

  .hero {
    padding-top: calc(var(--header) + 24px);
  }

  .about-preview .media-showcase {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 116px;
  }

  .top-strip {
    height: 38px;
  }

  .top-strip-inner {
    width: min(100% - 24px, var(--container));
  }

  .top-strip-left {
    gap: 9px;
  }

  .top-strip-left > a:not(.club-shortcut) svg {
    width: 17px;
    height: 17px;
  }

  .seller-shortcut {
    flex: 0 0 34px;
    width: 34px;
    min-width: 34px;
    max-width: 34px;
    height: 30px;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    color: transparent !important;
    font-size: 0 !important;
  }

  .seller-shortcut svg {
    margin: 0;
    color: var(--black) !important;
  }

  .site-header {
    top: 38px;
    height: 78px;
    padding: 0 14px;
    border-radius: 0 0 20px 20px;
  }

  .site-header.is-scrolled {
    height: 72px;
  }

  .brand img {
    width: 136px;
  }

  .hero {
    min-height: 92vh;
    padding-top: calc(var(--header) + 22px);
  }

  .hero-home {
    min-height: 96vh;
  }

  .home-hero-content {
    margin-bottom: 36px;
  }

  .about-preview .media-showcase {
    min-height: 0;
  }
}

/* Offers page refinement */
.offers-compact-hero {
  overflow: hidden;
  padding: calc(var(--header) + 34px) 0 38px;
  background:
    radial-gradient(circle at 84% 26%, rgba(236, 114, 0, 0.15), transparent 34%),
    linear-gradient(135deg, var(--surface), var(--paper) 62%, rgba(234, 216, 194, 0.9));
}

.offers-compact-hero .offers-hero-copy {
  max-width: 1040px;
}

.offers-compact-hero h1 {
  max-width: 940px;
  color: var(--black);
  font-size: clamp(2.9rem, 4.4vw, 4.4rem);
  line-height: 0.94;
}

.offers-compact-hero p:not(.section-kicker) {
  max-width: 720px;
}

.offer-condition-note {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px !important;
  padding: 10px 14px;
  border: 1px solid rgba(90, 47, 22, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.06);
  color: var(--black) !important;
  font-size: 0.98rem !important;
  font-weight: 850;
}

.offer-condition-note svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.offers-showcase .section-heading {
  align-items: end;
}

.offers-showcase .deal-card {
  min-height: 312px;
}

.offers-showcase .deal-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.48;
}

.offers-showcase .hero-deal p {
  color: rgba(255, 255, 255, 0.84);
}

.offer-price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-price-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(90, 47, 22, 0.16);
  background:
    radial-gradient(circle at 82% 16%, rgba(236, 114, 0, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(244, 240, 232, 0.92));
}

.offer-price-card::after {
  content: "CLUBE";
  position: absolute;
  right: -20px;
  bottom: 20px;
  color: rgba(236, 114, 0, 0.09);
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-8deg);
}

.offer-price-card h3,
.offer-price-card p,
.offer-price-card .deal-price {
  position: relative;
  z-index: 1;
}

.offer-price-card h3 {
  margin-top: 36px;
  color: var(--black);
  font-size: 1.65rem;
}

.deal-price {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 47, 22, 0.14);
}

.deal-price small {
  display: block;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-price strong {
  display: block;
  margin-top: 2px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 2.85rem;
  line-height: 0.9;
}

.offer-price-card.hero-deal {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.28), transparent 25%),
    linear-gradient(135deg, var(--orange), #a5270f 78%);
}

.offer-price-card.hero-deal .deal-price {
  border-color: rgba(255, 255, 255, 0.22);
}

.offer-price-card.hero-deal .deal-price small,
.offer-price-card.hero-deal .deal-price strong {
  color: #fff;
}

.offer-price-card.hero-deal::after {
  color: rgba(255, 255, 255, 0.13);
}

.offers-club-cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(236, 114, 0, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(90, 47, 22, 0.86));
}

.offers-club-cta h2 {
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 0.94;
}

.offers-club-cta p:not(.section-kicker) {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 1.08rem;
  line-height: 1.56;
}

@media (max-width: 920px) {
  .offers-club-cta .cta-band-grid {
    grid-template-columns: 1fr;
  }

  .offer-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .social-badge img {
    width: 15px;
    height: 15px;
  }

  .offers-compact-hero {
    padding: calc(var(--header) + 34px) 0 34px;
  }

  .offers-compact-hero h1 {
    font-size: 2.65rem;
  }

  .offer-condition-note {
    align-items: flex-start;
    border-radius: 20px;
    font-size: 0.92rem !important;
    line-height: 1.25;
  }

  .offers-showcase .deal-card {
    min-height: 260px;
  }

  .offer-price-grid {
    grid-template-columns: 1fr;
  }

  .offers-club-cta {
    padding: 58px 0;
  }
}

/* Home brand logo wall */
.official-band {
  padding: 72px 0 60px;
  background:
    radial-gradient(circle at 82% 20%, rgba(236, 114, 0, 0.2), transparent 30%),
    linear-gradient(135deg, #050505 0%, #17110d 58%, #3a1d0c 100%);
}

.official-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
}

.official-copy h2 {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--paper);
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  line-height: 0.94;
}

.official-copy .section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.95rem;
}

.official-copy p:not(.section-kicker) {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(244, 240, 232, 0.68);
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 620;
  line-height: 1.56;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brand-logo-card {
  position: relative;
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(234, 216, 194, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 240, 232, 0.92));
  box-shadow: 0 18px 46px rgba(5, 5, 5, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  isolation: isolate;
}

.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(135deg, rgba(236, 114, 0, 0.06), transparent 42%);
}

.brand-logo-card img {
  width: auto;
  max-width: 86%;
  max-height: 82px;
  object-fit: contain;
}

.brand-logo-card.tall img {
  max-height: 112px;
}

.brand-logo-card.square img {
  max-height: 92px;
}

.brand-logo-card.wide img {
  max-width: 92%;
}

.brand-logo-card.dark {
  background:
    radial-gradient(circle at 72% 24%, rgba(236, 114, 0, 0.18), transparent 34%),
    linear-gradient(135deg, #050505, #1b120d 72%, #5a2f16);
}

.brand-logo-card.dark img {
  max-height: 66px;
}

.brand-logo-card.red {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #c8242b, #9f1722);
}

.brand-card--kikkoman img {
  max-height: 58px;
}

.brand-card--kikkoman {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #050505, #26130c 68%, #5a2f16);
}

.brand-card--bifum,
.brand-card--rei {
  background: #f7f3ec;
}

.brand-card--bifum::before,
.brand-card--rei::before {
  background: none;
}

.brand-card--longway {
  background: #c7222c;
}

.brand-card--longway::before {
  background: none;
}

.brand-card--longway img {
  max-width: 88%;
  max-height: 98px;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.18);
}

.brand-availability-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(760px, 100%);
  margin: 10px auto 0;
  padding: 14px 24px;
  border: 1px solid rgba(234, 216, 194, 0.2);
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.1);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.brand-availability-strip svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  color: var(--orange);
}

.brand-availability-strip strong {
  font-size: 1rem;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .official-grid {
    grid-template-columns: 1fr;
  }

  .official-copy h2,
  .official-copy p:not(.section-kicker) {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .official-band {
    padding: 54px 0 44px;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-card {
    min-height: 118px;
    border-radius: 20px;
    padding: 16px;
  }

  .brand-logo-card img {
    max-height: 68px;
  }

.brand-logo-card.tall img {
    max-height: 88px;
  }

  .brand-card--kikkoman img {
    max-height: 48px;
  }

  .brand-card--longway img {
    max-height: 78px;
  }

  .brand-logo-card.dark img {
    max-height: 48px;
  }

  .brand-availability-strip {
    align-items: flex-start;
    border-radius: 22px;
    padding: 14px 16px;
  }
}

/* Real catalog assets */
.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-visual {
  height: 248px;
}

.product-visual img {
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 20px 24px rgba(5, 5, 5, 0.16));
}

.product-card[data-tone="gold"] .product-visual {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(135deg, #f4f0e8 0%, #d9c07a 100%);
}

.product-card[data-tone="green"] .product-visual {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.78), transparent 26%),
    linear-gradient(135deg, #eef5df 0%, #7ab64e 100%);
}

.product-card[data-tone="paper"] .product-visual,
.product-card[data-tone="blue"] .product-visual,
.product-card[data-tone="orange"] .product-visual,
.product-card[data-tone="black"] .product-visual {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.86), transparent 25%),
    linear-gradient(135deg, rgba(244, 240, 232, 0.18), transparent);
}

.product-action {
  margin-top: auto;
}

.product-action button {
  width: 100%;
  justify-content: center;
}

/* Clube scenes with real assets */
.club-page-hero {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 48%, rgba(90, 47, 22, 0.78) 100%),
    url("assets/facade-front.webp") center / cover;
}

.club-page-hero .page-hero-grid > div:first-child {
  padding: 28px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.club-asset-scene {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #050505 0%, #1a110c 48%, #5a2f16 100%);
}

.club-asset-scene::before {
  border-color: rgba(244, 240, 232, 0.16);
}

.club-scene-mark {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  width: 190px;
  filter: drop-shadow(0 10px 22px rgba(5, 5, 5, 0.24));
}

.club-scene-box {
  position: absolute;
  right: -18%;
  bottom: 42px;
  z-index: 2;
  width: min(760px, 115%);
  filter: drop-shadow(0 30px 48px rgba(5, 5, 5, 0.34));
  transform: translate3d(calc(var(--progress, 0) * -18px), calc(var(--progress, 0) * -12px), 0);
}

.club-scene-truck {
  position: absolute;
  right: -28%;
  bottom: -12px;
  z-index: 1;
  width: min(640px, 96%);
  opacity: 0.34;
  filter: saturate(0.9) drop-shadow(0 24px 36px rgba(5, 5, 5, 0.32));
  transform: translate3d(calc(var(--progress, 0) * 42px), 0, 0);
}

.club-scene-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 4;
  max-width: 310px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.62);
  color: var(--paper);
  box-shadow: 0 18px 38px rgba(5, 5, 5, 0.22);
  backdrop-filter: blur(10px);
}

.club-scene-caption strong,
.club-scene-caption span {
  display: block;
}

.club-scene-caption span {
  margin-top: 6px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* Regions map */
.region-map-panel {
  padding: 22px;
  border: 1px solid rgba(90, 47, 22, 0.14);
  background:
    radial-gradient(circle at 72% 20%, rgba(236, 114, 0, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(244, 240, 232, 0.92));
}

.region-map-panel img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.region-map-stats {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.region-map-stats span {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(90, 47, 22, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 720;
}

.region-map-stats strong {
  color: var(--orange);
}

.about-club-cta {
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
  background:
    radial-gradient(circle at 82% 20%, rgba(236, 114, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #050505 0%, #17110d 58%, #5a2f16 100%);
}

.about-club-cta p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 1.05rem;
  line-height: 1.5;
}

.about-club-cta h2 {
  color: var(--paper);
  text-shadow: 0 18px 42px rgba(5, 5, 5, 0.45);
}

/* Loja fisica */
.store-page-hero {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(90, 47, 22, 0.82)),
    url("assets/store/loja-fisica.webp") center / cover;
}

.store-page-hero img {
  object-position: center;
}

.store-section {
  background: linear-gradient(180deg, var(--gray-warm), #f4f0e8);
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.store-card-grid {
  display: grid;
  gap: 14px;
}

.store-card-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 16px;
  align-items: center;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(90, 47, 22, 0.14);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.06);
}

.store-card-grid svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.store-card-grid strong {
  color: var(--black);
  font-size: 1.2rem;
}

.store-card-grid span {
  color: var(--muted);
}

.store-location-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-top: 34px;
  align-items: stretch;
}

.store-address-card {
  padding: 28px;
  border: 1px solid rgba(90, 47, 22, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(236, 114, 0, 0.12), transparent 30%),
    rgba(255, 252, 246, 0.92);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.08);
}

.store-address-card h2 {
  margin: 8px 0 16px;
  color: var(--black);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 0.98;
}

.store-address-card address {
  color: var(--muted);
  font-style: normal;
  font-weight: 760;
  line-height: 1.5;
}

.store-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.store-route-actions .button {
  width: auto;
}

.store-map-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(236, 114, 0, 0.13) 45% 47%, transparent 47% 100%),
    linear-gradient(25deg, transparent 0 30%, rgba(90, 47, 22, 0.08) 30% 32%, transparent 32% 100%),
    radial-gradient(circle at 64% 46%, rgba(236, 114, 0, 0.18), transparent 22%),
    linear-gradient(135deg, #f7f1e7, #e6e2dc);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.1);
}

.store-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.store-map-fallback {
  position: absolute;
  inset: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(90, 47, 22, 0.12);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.82);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.store-map-fallback span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(236, 114, 0, 0.3);
}

.store-map-fallback svg {
  width: 25px;
  height: 25px;
}

.store-map-fallback strong {
  font-size: 1.22rem;
}

.store-map-fallback small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.store-map-fallback em {
  margin-top: 4px;
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

/* Final contrast pass for dark page heroes */
.club-page-hero .page-hero-grid > div:first-child,
.store-page-hero .page-hero-grid > div:first-child {
  position: relative;
  z-index: 2;
}

.club-page-hero h1,
.store-page-hero h1 {
  color: var(--paper);
  text-shadow: 0 18px 42px rgba(5, 5, 5, 0.58);
}

.club-page-hero p:not(.section-kicker),
.store-page-hero p:not(.section-kicker) {
  color: rgba(244, 240, 232, 0.84);
}

.club-page-hero .section-kicker.light,
.store-page-hero .section-kicker.light {
  color: #f3a654;
}

/* Refinements requested after asset update */
.club-kicker-logo {
  display: block;
  width: min(245px, 68vw);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 12px 24px rgba(5, 5, 5, 0.32));
}

.club-product-showcase {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}

.club-product-showcase::before {
  position: absolute;
  inset: 12% 2% 6% 4%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 46%, rgba(236, 114, 0, 0.18), transparent 38%),
    radial-gradient(circle at 56% 52%, rgba(244, 240, 232, 0.12), transparent 44%);
  filter: blur(18px);
  content: "";
}

.club-product-showcase .club-scene-box {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: min(820px, 122%);
  max-width: none;
  filter: drop-shadow(0 36px 54px rgba(5, 5, 5, 0.38));
  transform: translate3d(calc(var(--progress, 0) * -18px), calc(var(--progress, 0) * -10px), 0) scale(1.02);
}

.hero-club-product-showcase {
  min-height: 460px;
}

.hero-club-product-showcase .club-scene-box {
  width: min(800px, 124%);
}

.club-product-showcase .club-scene-caption {
  right: 18px;
  bottom: 46px;
}

.truck-showcase {
  position: relative;
  min-height: 360px;
  overflow: visible;
}

.truck-showcase::before {
  position: absolute;
  bottom: 38px;
  left: 50%;
  width: min(600px, 90%);
  height: 62px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.08) 48%, transparent 72%);
  content: "";
  filter: blur(4px);
  transform: translateX(-43%) rotate(-6deg);
  transform-origin: center;
}

.truck-showcase img {
  position: absolute;
  bottom: 8px;
  left: 50%;
  max-width: none;
  width: min(700px, 112%);
  filter: drop-shadow(0 24px 32px rgba(5, 5, 5, 0.2));
  opacity: calc(0.28 + (var(--progress, 0) * 0.72));
  transform: translate3d(calc(-44% + 76px - (var(--progress, 0) * 76px)), 0, 0);
  animation: truckFadeIn 820ms ease both;
}

@keyframes truckFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .truck-showcase img {
    max-width: 100%;
  }
}

.about-club-cta {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #ec7200 0%, #b44f16 52%, #5a2f16 100%);
}

.about-club-cta .section-kicker,
.about-club-cta h2,
.about-club-cta p:not(.section-kicker) {
  color: var(--paper);
}

.about-club-cta .section-kicker {
  opacity: 0.88;
}

.about-club-cta .button.secondary {
  background: rgba(255, 252, 246, 0.96);
  color: var(--black);
}

.offer-inline-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 860px !important;
  margin: 20px 0 0 !important;
  color: var(--muted) !important;
  font-size: 1.08rem !important;
  font-weight: 760;
  line-height: 1.48 !important;
}

.offer-inline-note svg {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--orange);
}

main:has(.about-club-cta) + .site-footer,
main:has(.offers-club-cta) + .site-footer,
main:has(.contact-page) + .site-footer {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding-top: 82px;
}

/* Motion system */
.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 560ms ease,
    transform 620ms cubic-bezier(0.18, 0.84, 0.28, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-reveal.is-visible.product-card {
  will-change: auto;
}

.quote-trigger strong.is-bumping {
  animation: quoteCountBump 300ms ease both;
}

@keyframes quoteCountBump {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.24);
    box-shadow: 0 0 0 6px rgba(236, 114, 0, 0.18);
  }

  100% {
    transform: scale(1);
  }
}

.product-action button {
  position: relative;
  overflow: hidden;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-action button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(5, 5, 5, 0.16);
}

.product-action button.is-added {
  box-shadow: 0 14px 30px rgba(236, 114, 0, 0.22);
}

.product-action button.is-added svg {
  animation: productCheckPop 240ms ease both;
}

@keyframes productCheckPop {
  0% {
    transform: scale(0.72);
  }

  70% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

.drawer-item {
  opacity: 1;
}

.quote-drawer.is-open .drawer-item {
  animation: drawerItemIn 320ms ease both;
  animation-delay: var(--motion-delay, 0ms);
}

@keyframes drawerItemIn {
  from {
    opacity: 0;
    transform: translate3d(12px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.modal-backdrop .quote-modal {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.98);
  transition:
    opacity 190ms ease,
    transform 220ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.modal-backdrop.is-open .quote-modal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-reveal,
  .motion-reveal.is-visible,
  .modal-backdrop .quote-modal,
  .modal-backdrop.is-open .quote-modal,
  .drawer-item,
  .quote-drawer.is-open .drawer-item,
  .quote-trigger strong,
  .product-action button,
  .product-action button svg,
  .truck-showcase img,
  .club-scene-box {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 920px) {
  .store-grid,
  .store-location-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .club-page-hero .page-hero-grid > div:first-child {
    padding: 22px;
  }

  .club-product-showcase,
  .hero-club-product-showcase {
    min-height: 340px;
  }

  .club-product-showcase .club-scene-box,
  .hero-club-product-showcase .club-scene-box {
    width: 128%;
  }

  .truck-showcase {
    min-height: 245px;
  }

  .truck-showcase::before {
    bottom: 30px;
    width: 82%;
    height: 46px;
    transform: translateX(-50%) rotate(-6deg);
  }

  .truck-showcase img {
    bottom: 18px;
    width: 118%;
    transform: translate3d(calc(-50% + 44px - (var(--progress, 0) * 44px)), 0, 0);
  }

  .store-route-actions .button {
    width: 100%;
  }

  .club-scene-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: none;
  }
}

/* Clube signup flow */
.club-hero-copy {
  max-width: 920px;
  padding: 22px 0 10px;
}

.club-hero-copy h1 {
  max-width: 880px;
}

.club-hero-copy p:not(.section-kicker) {
  max-width: 720px;
}

.club-signup-section {
  padding: 108px 0;
  scroll-margin-top: calc(var(--header) + 24px);
  background:
    radial-gradient(circle at 84% 20%, rgba(236, 114, 0, 0.3), transparent 30%),
    linear-gradient(135deg, #050505 0%, #15100d 58%, #5a2f16 100%);
}

.club-signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.club-signup-grid h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
}

.club-signup-grid p:not(.section-kicker) {
  color: rgba(244, 240, 232, 0.78);
}

.club-signup-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.13), rgba(244, 240, 232, 0.07));
  box-shadow: 0 30px 70px rgba(5, 5, 5, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.club-signup-card label,
.club-signup-modal label {
  display: grid;
  gap: 8px;
  color: rgba(244, 240, 232, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
}

.club-signup-card input,
.club-signup-modal input,
.club-signup-modal select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(90, 47, 22, 0.12);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255, 252, 246, 0.96);
  color: var(--black);
  outline: none;
}

.club-signup-card button,
.club-signup-modal form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec7200, #f3922f);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(236, 114, 0, 0.24);
}

.club-signup-card button svg {
  width: 18px;
  height: 18px;
}

.club-signup-modal {
  max-width: 720px;
}

.club-signup-modal form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.club-signup-modal select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5a2f16 50%),
    linear-gradient(135deg, #5a2f16 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.terms-check {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 0.94rem !important;
  font-weight: 720 !important;
}

.terms-check input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.terms-check a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.club-signup-modal form button,
.club-signup-modal .quote-success {
  grid-column: 1 / -1;
}

@media (max-width: 920px) {
  .club-signup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .club-hero-copy {
    padding-top: 0;
  }

  .club-signup-section {
    padding: 72px 0;
  }

  .club-signup-card {
    padding: 18px;
    border-radius: 24px;
  }

  .club-signup-modal form {
    grid-template-columns: 1fr;
  }
}
