:root {
  --rodeo-black: #030303;
  --rodeo-obsidian: #070707;
  --rodeo-carbon: #0d0c0b;
  --rodeo-panel: rgba(10, 9, 8, 0.74);
  --rodeo-panel-solid: #11100e;
  --rodeo-panel-soft: rgba(255, 255, 255, 0.055);
  --rodeo-line: rgba(224, 190, 122, 0.22);
  --rodeo-line-strong: rgba(224, 190, 122, 0.52);
  --rodeo-gold: #d8b36a;
  --rodeo-gold-soft: #f0dfbd;
  --rodeo-champagne: #f6ead9;
  --rodeo-cream: #fff7e8;
  --rodeo-muted: #a9a19a;
  --rodeo-smoke: #67615b;
  --rodeo-danger: #e8b88a;
  --rodeo-radius-xl: 32px;
  --rodeo-radius-lg: 20px;
  --rodeo-radius-md: 14px;
  --rodeo-shadow: 0 40px 120px rgba(0,0,0,0.52);
  --rodeo-gold-shadow: 0 0 46px rgba(216, 179, 106, 0.18);
  --rodeo-serif: Georgia, 'Times New Roman', Times, serif;
  --rodeo-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--rodeo-black);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 17% 5%, rgba(216,179,106,.08), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(158,116,58,.10), transparent 30%),
    linear-gradient(180deg, #040404 0%, #070605 44%, #030303 100%);
  color: var(--rodeo-champagne);
  font-family: var(--rodeo-sans);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

::selection { background: rgba(216,179,106,.36); color: #fff; }

.rodeo-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.rodeo-container {
  width: min(1760px, calc(100% - 72px));
  margin: 0 auto;
}

.rodeo-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(2,2,2,.52);
  backdrop-filter: blur(24px) saturate(130%);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.rodeo-site-header.is-scrolled {
  background: rgba(2,2,2,.86);
  border-bottom-color: var(--rodeo-line);
}

.admin-bar .rodeo-site-header { top: 32px; }

.rodeo-header-inner {
  width: min(1820px, calc(100% - 56px));
  height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
}

.rodeo-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--rodeo-champagne);
  font-family: var(--rodeo-serif);
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1;
  letter-spacing: .42em;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(216,179,106,.18);
}

.rodeo-logo img { max-height: 46px; width: auto; }
.rodeo-logo span { display: inline-block; transform: translateY(-1px); }

.rodeo-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 1.65vw, 36px);
}

.rodeo-nav a,
.rodeo-nav .menu-item > a {
  color: rgba(255,247,232,.84);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color .25s ease, opacity .25s ease;
  white-space: nowrap;
}

.rodeo-nav a:hover,
.rodeo-nav .current-menu-item > a {
  color: var(--rodeo-gold-soft);
}

.rodeo-nav ul { list-style: none; margin: 0; padding: 0; display: contents; }

.rodeo-header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.rodeo-icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255,247,232,.9);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.rodeo-icon-link:hover {
  border-color: var(--rodeo-line-strong);
  background: rgba(216,179,106,.08);
  transform: translateY(-1px);
}

.rodeo-signin {
  color: var(--rodeo-champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 18px;
}

.rodeo-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rodeo-line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--rodeo-champagne);
  cursor: pointer;
}

.rodeo-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
  transition: transform .25s ease, opacity .25s ease;
}

body.menu-open .rodeo-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .rodeo-menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .rodeo-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.rodeo-hero {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(216,179,106,.16);
}

.rodeo-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.81) 31%, rgba(0,0,0,.38) 58%, rgba(0,0,0,.63) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45) 68%, rgba(3,3,3,1) 100%),
    var(--rodeo-hero-image, radial-gradient(circle at 70% 22%, rgba(216,179,106,.24), transparent 30%), linear-gradient(135deg, #090807, #16120c));
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: rodeoSlowZoom 24s ease-in-out infinite alternate;
}

.rodeo-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 45%, rgba(216,179,106,.22), transparent 18%),
    radial-gradient(circle at 58% 35%, transparent 0 18%, rgba(0,0,0,.52) 43%, rgba(0,0,0,.78) 100%);
}

.rodeo-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: .86;
  filter: grayscale(.12) saturate(.92) contrast(1.12) brightness(.58);
  transform: scale(1.03);
  animation: rodeoSlowZoom 24s ease-in-out infinite alternate;
}

.rodeo-hero-video-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.83) 30%, rgba(0,0,0,.32) 58%, rgba(0,0,0,.60) 100%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.38) 56%, rgba(3,3,3,.98) 100%),
    radial-gradient(circle at 76% 42%, rgba(216,179,106,.21), transparent 22%),
    radial-gradient(circle at 86% 80%, rgba(216,179,106,.22), transparent 18%);
  mix-blend-mode: normal;
}

.rodeo-hero.has-video .rodeo-hero-bg {
  opacity: .72;
}

.rodeo-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(216,179,106,.14) 50%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(216,179,106,.08) 70%, transparent 100%);
  opacity: .32;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 65%, transparent 100%);
}

.rodeo-hero-inner {
  position: relative;
  z-index: 4;
  width: min(1760px, calc(100% - 72px));
  margin: 0 auto;
  padding: 170px 0 42px;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 940px;
}

.rodeo-hero-copy {
  width: min(820px, 58vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 48px;
}

.rodeo-eyebrow {
  color: var(--rodeo-gold);
  font-size: clamp(11px, .85vw, 15px);
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.rodeo-hero-title {
  margin: 0;
  color: var(--rodeo-champagne);
  font-family: var(--rodeo-serif);
  font-size: clamp(58px, 6.25vw, 132px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: balance;
}

.rodeo-hero-title .gold {
  color: var(--rodeo-gold-soft);
  text-shadow: 0 0 38px rgba(216,179,106,.14);
}

.rodeo-hero-text {
  width: min(650px, 100%);
  margin: 28px 0 0;
  color: rgba(255,247,232,.86);
  font-size: clamp(17px, 1.08vw, 22px);
  line-height: 1.65;
  font-weight: 500;
}

.rodeo-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.rodeo-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 2px;
  border: 1px solid var(--rodeo-line-strong);
  color: var(--rodeo-champagne);
  background: rgba(255,255,255,.025);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.rodeo-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 56%);
  transform: translateX(-130%);
  transition: transform .8s ease;
}

.rodeo-btn:hover::before { transform: translateX(130%); }
.rodeo-btn:hover { transform: translateY(-2px); border-color: var(--rodeo-gold); box-shadow: var(--rodeo-gold-shadow); }

.rodeo-btn-primary {
  background: linear-gradient(135deg, #e2c07b, #ac8543);
  color: #080604;
  border-color: #e2c07b;
}

.rodeo-hero-bottom {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.rodeo-concierge-search {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: rgba(4,4,4,.72);
  border: 1px solid rgba(216,179,106,.34);
  box-shadow: 0 24px 80px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.rodeo-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
}

.rodeo-search-input-wrap svg { color: var(--rodeo-gold); flex: 0 0 auto; }

.rodeo-search-input {
  width: 100%;
  height: 62px;
  border: 0;
  outline: 0;
  color: var(--rodeo-champagne);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}

.rodeo-search-input::placeholder { color: rgba(246,234,217,.56); }

.rodeo-image-search {
  height: 48px;
  margin-right: 7px;
  padding: 0 18px;
  border: 1px solid rgba(216,179,106,.28);
  border-radius: 999px;
  background: rgba(216,179,106,.10);
  color: var(--rodeo-gold-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rodeo-worlds {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.rodeo-world-card {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(216,179,106,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  box-shadow: 0 16px 55px rgba(0,0,0,.35);
  transform: translateZ(0);
}

.rodeo-world-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.26)), var(--world-image);
  background-size: cover;
  background-position: center;
  transition: transform .75s ease, opacity .75s ease;
  opacity: .78;
}

.rodeo-world-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(216,179,106,.16), transparent);
  transform: translateX(-120%);
  transition: transform .8s ease;
}

.rodeo-world-card:hover::before { transform: scale(1.08); opacity: 1; }
.rodeo-world-card:hover::after { transform: translateX(120%); }

.rodeo-world-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--rodeo-gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rodeo-world-label span {
  display: block;
  margin-top: 7px;
  color: var(--rodeo-gold);
  font-size: 16px;
  letter-spacing: 0;
}

.rodeo-main {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #030303, #080706 34%, #030303 100%);
  padding: 46px 0 0;
}

.rodeo-section {
  margin: 0 0 14px;
}

.rodeo-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.rodeo-section-title {
  margin: 0;
  color: var(--rodeo-champagne);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.rodeo-section-title span {
  color: var(--rodeo-gold);
}

.rodeo-view-all {
  color: var(--rodeo-gold-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rodeo-panel {
  border: 1px solid rgba(216,179,106,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}

.rodeo-arrivals-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .95fr);
  gap: 14px;
}

.rodeo-carousel {
  position: relative;
  padding: 22px 46px;
  min-height: 220px;
}

.rodeo-product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(158px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.rodeo-product-track::-webkit-scrollbar { display: none; }

.rodeo-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(216,179,106,.14);
  background: rgba(255,255,255,.025);
  scroll-snap-align: start;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.rodeo-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216,179,106,.48);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(216,179,106,.12);
}

.rodeo-product-media {
  position: relative;
  height: 140px;
  background: #111;
  overflow: hidden;
}

.rodeo-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08) brightness(.8);
  transition: transform .55s ease, filter .55s ease;
}

.rodeo-product-card:hover img { transform: scale(1.07); filter: saturate(1.04) contrast(1.1) brightness(.96); }

.rodeo-product-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  padding: 4px 7px;
  background: linear-gradient(135deg, #e3c884, #aa7e3c);
  color: #080604;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rodeo-product-body { padding: 13px 12px 15px; }

.rodeo-product-name {
  display: block;
  color: var(--rodeo-champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.25;
}

.rodeo-product-meta {
  display: block;
  color: var(--rodeo-muted);
  font-size: 11px;
  margin-top: 6px;
}

.rodeo-price {
  display: block;
  color: var(--rodeo-gold-soft);
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.rodeo-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(216,179,106,.35);
  background: rgba(5,5,5,.82);
  color: var(--rodeo-gold-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .25s ease, background .25s ease;
}

.rodeo-carousel-btn:hover { transform: translateY(-50%) scale(1.07); background: rgba(216,179,106,.16); }
.rodeo-carousel-btn.prev { left: 12px; }
.rodeo-carousel-btn.next { right: 12px; }

.rodeo-editorial {
  position: relative;
  min-height: 220px;
  padding: 38px 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3,3,3,.96), rgba(3,3,3,.62), rgba(3,3,3,.15)),
    var(--editorial-image);
  background-size: cover;
  background-position: center;
}

.rodeo-editorial::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(216,179,106,.16), transparent 22%);
  pointer-events: none;
}

.rodeo-editorial-copy { position: relative; z-index: 2; max-width: 420px; }

.rodeo-mini-eyebrow {
  margin: 0 0 12px;
  color: var(--rodeo-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.rodeo-editorial h3,
.rodeo-private h3 {
  margin: 0;
  color: var(--rodeo-champagne);
  font-family: var(--rodeo-serif);
  font-size: clamp(34px, 3vw, 54px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rodeo-editorial p,
.rodeo-private p,
.rodeo-standard p {
  color: rgba(255,247,232,.72);
  font-size: 14px;
  line-height: 1.6;
}

.rodeo-editorial .rodeo-btn { min-height: 42px; padding: 0 20px; margin-top: 14px; }

.rodeo-lower-grid {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 14px;
  margin-top: 14px;
}

.rodeo-private {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  padding: 52px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3,3,3,.96), rgba(3,3,3,.64), rgba(3,3,3,.24)),
    var(--private-image);
  background-size: cover;
  background-position: center;
}

.rodeo-private-copy { max-width: 520px; position: relative; z-index: 2; }

.rodeo-standard {
  min-height: 260px;
  padding: 52px;
}

.rodeo-standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.rodeo-standard-item svg {
  color: var(--rodeo-gold);
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}

.rodeo-standard-item h4 {
  margin: 0 0 7px;
  color: var(--rodeo-gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.rodeo-standard-item p { margin: 0; font-size: 12px; }

.rodeo-signature-banner {
  margin-top: 14px;
  padding: 46px 0;
  border-top: 1px solid rgba(216,179,106,.14);
  border-bottom: 1px solid rgba(216,179,106,.14);
  background:
    linear-gradient(90deg, rgba(0,0,0,.75), rgba(216,179,106,.07), rgba(0,0,0,.75));
  overflow: hidden;
}

.rodeo-marquee {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: rodeoMarquee 28s linear infinite;
}

.rodeo-marquee span {
  color: rgba(255,247,232,.88);
  font-family: var(--rodeo-serif);
  font-size: clamp(36px, 5vw, 92px);
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rodeo-footer {
  position: relative;
  z-index: 2;
  padding: 54px 0 46px;
  background: #030303;
}

.rodeo-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr) 1.15fr;
  gap: 42px;
  padding: 44px;
  border: 1px solid rgba(216,179,106,.14);
  background: rgba(255,255,255,.025);
}

.rodeo-footer-logo {
  font-family: var(--rodeo-serif);
  font-size: 44px;
  letter-spacing: .38em;
  color: var(--rodeo-champagne);
}

.rodeo-footer-tagline {
  margin-top: 8px;
  color: var(--rodeo-gold);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.rodeo-footer-col h5 {
  margin: 0 0 15px;
  color: var(--rodeo-gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.rodeo-footer-col a,
.rodeo-footer-col p {
  display: block;
  color: rgba(255,247,232,.62);
  font-size: 13px;
  line-height: 1.8;
}

.rodeo-newsletter {
  display: grid;
  grid-template-columns: 1fr 48px;
  border: 1px solid rgba(216,179,106,.28);
  margin-top: 14px;
}

.rodeo-newsletter input {
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--rodeo-champagne);
  padding: 0 14px;
}

.rodeo-newsletter button {
  border: 0;
  background: linear-gradient(135deg, #e2c07b, #ad8545);
  color: #070504;
  cursor: pointer;
  font-weight: 900;
}

.rodeo-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: rgba(255,247,232,.64);
}

.rodeo-page-content,
.rodeo-archive-content {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 90px;
  color: var(--rodeo-champagne);
}

.rodeo-page-content h1,
.rodeo-archive-content h1 {
  font-family: var(--rodeo-serif);
  font-size: clamp(52px, 6vw, 112px);
  line-height: .92;
  font-weight: 500;
  text-transform: uppercase;
}

.rodeo-entry-card {
  padding: 28px 0;
  border-bottom: 1px solid rgba(216,179,106,.16);
}

.rodeo-entry-card h2 {
  margin: 0 0 8px;
  font-family: var(--rodeo-serif);
  font-size: 32px;
}

.rodeo-entry-card p { color: rgba(255,247,232,.72); line-height: 1.7; }

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
  background: linear-gradient(135deg, #e2c07b, #ac8543) !important;
  color: #080604 !important;
  border-radius: 0 !important;
  font-weight: 900 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(216,179,106,.16);
  padding: 14px !important;
  color: var(--rodeo-champagne);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--rodeo-champagne); }
.woocommerce ul.products li.product .price { color: var(--rodeo-gold-soft); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.rodeo-cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,179,106,.14), transparent 62%);
  opacity: 0;
  transition: opacity .35s ease;
  mix-blend-mode: screen;
}

body:hover .rodeo-cursor-glow { opacity: 1; }

@keyframes rodeoSlowZoom {
  0% { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.12) translate3d(-1.2%, 0, 0); }
}

@keyframes rodeoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1400px) {
  .rodeo-header-inner { grid-template-columns: 190px 1fr auto; }
  .rodeo-nav { gap: 16px; }
  .rodeo-nav a { font-size: 11px; letter-spacing: .16em; }
  .rodeo-hero { min-height: 820px; }
  .rodeo-hero-inner { min-height: 820px; padding-top: 140px; }
  .rodeo-worlds { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .rodeo-arrivals-layout { grid-template-columns: 1fr; }
  .rodeo-lower-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .rodeo-header-inner { grid-template-columns: 1fr auto auto; width: min(100% - 32px, 100%); }
  .rodeo-menu-toggle { display: inline-block; }
  .rodeo-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 12px 24px 26px;
    background: rgba(4,4,4,.96);
    border-bottom: 1px solid var(--rodeo-line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .32s ease, opacity .32s ease;
  }
  .rodeo-nav a,
  .rodeo-nav .menu-item > a { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  body.menu-open .rodeo-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .rodeo-signin { display: none; }
  .rodeo-container, .rodeo-hero-inner { width: min(100% - 34px, 100%); }
  .rodeo-hero-copy { width: 100%; }
  .rodeo-standard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rodeo-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .admin-bar .rodeo-site-header { top: 0; }
  .rodeo-header-inner { height: 64px; }
  .rodeo-logo { font-size: 28px; letter-spacing: .28em; }
  .rodeo-icon-link:nth-child(1) { display: none; }
  .rodeo-hero { min-height: auto; }
  .rodeo-hero-inner { min-height: auto; padding: 118px 0 28px; }
  .rodeo-hero-title { font-size: clamp(54px, 16vw, 86px); }
  .rodeo-hero-text { font-size: 16px; }
  .rodeo-hero-actions { align-items: stretch; }
  .rodeo-btn { width: 100%; }
  .rodeo-concierge-search { grid-template-columns: 1fr; border-radius: 18px; }
  .rodeo-image-search { margin: 0 10px 10px; justify-content: center; }
  .rodeo-worlds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rodeo-world-card { min-height: 118px; }
  .rodeo-section-header { align-items: start; }
  .rodeo-carousel { padding: 18px 14px; }
  .rodeo-carousel-btn { display: none; }
  .rodeo-product-track { grid-auto-columns: 74%; }
  .rodeo-editorial, .rodeo-private, .rodeo-standard { padding: 32px 24px; }
  .rodeo-standard-grid { grid-template-columns: 1fr; }
  .rodeo-footer-grid { grid-template-columns: 1fr; padding: 28px; }
  .rodeo-marquee span { font-size: 38px; }
}
