/* ============================================================
   RODRIGO MONTES MAGIC — Urban Street Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Bebas+Neue&family=Permanent+Marker&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #0f0f0f;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --concrete: #1c1c1c;
  --concrete-light: #252525;
  --gold: #d4a847;
  --gold-light: #f0c96a;
  --gold-dark: #8b6914;
  --gold-glow: rgba(212,168,71,0.35);
  --red: #c0392b;
  --red-glow: rgba(192,57,43,0.3);
  --white: #f5f0e8;
  --gray: #888;
  --gray-light: #bbb;
  --text: #e8e0d0;
  --text-secondary: #999;
  --text-muted: #444;
  --border: rgba(212,168,71,0.15);
  --border-bright: rgba(212,168,71,0.5);
  --shadow-gold: 0 0 40px rgba(212,168,71,0.22);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.7s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1300px;
  --radius: 2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
::selection { background: var(--gold-dark); color: #000; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Concrete texture overlay (CSS noise) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--text);
  text-transform: uppercase;
}

.display-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--white);
  text-shadow:
    3px 3px 0 rgba(0,0,0,0.8),
    0 0 60px rgba(212,168,71,0.15);
}

.display-title .gold-word {
  color: var(--gold);
  text-shadow:
    3px 3px 0 rgba(0,0,0,0.8),
    0 0 40px var(--gold-glow);
}

.graffiti-text {
  font-family: 'Permanent Marker', cursive;
  color: var(--gold);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.6);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  font-family: 'Cormorant Garamond', serif;
}

.tag-line {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Gold Divider ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 0.6rem 0 2rem;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.gold-rule span { color: var(--gold); font-size: 0.8rem; letter-spacing: 4px; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 2.5rem;
  transition: var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 0.9rem 2.5rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 0 20px var(--gold-glow);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 0.5rem 1.4rem !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.2em !important;
  font-weight: 600 !important;
  border: none !important;
  transition: var(--transition) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: #000 !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px) !important;
}

.nav-cart {
  position: relative;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.nav-cart:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.35) contrast(1.1) saturate(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  z-index: 1;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 5vw;
  max-width: 900px;
  padding-top: 6rem;
}

.hero-eyebrow {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInLeft 1s 0.4s forwards;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
}

.hero-title {
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeInLeft 1.2s 0.7s forwards;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0;
  animation: fadeInLeft 1s 1.2s forwards;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInLeft 1s 1.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInLeft 1s 1.7s forwards;
}

/* ── Graffiti tag on wall ── */
.hero-wall-tag {
  position: absolute;
  right: 4vw;
  bottom: 25%;
  z-index: 3;
  text-align: right;
  opacity: 0;
  animation: fadeIn 2s 2.5s forwards;
}

.hero-wall-tag .big-tag {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(3rem, 7vw, 6rem);
  color: rgba(212,168,71,0.12);
  line-height: 1;
  display: block;
  text-shadow: none;
  letter-spacing: -0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 5vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}
.hero-scroll span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Section ── */
.section { padding: 6rem 2rem; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Diagonal section separator */
.section-slant {
  position: relative;
}
.section-slant::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg-secondary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── ABOUT SPLIT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 620px;
}

.about-image-col {
  position: relative;
  overflow: hidden;
}

.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.5) contrast(1.15) brightness(0.85);
  transition: var(--transition-slow);
}

.about-image-col:hover img {
  filter: saturate(0.7) contrast(1.1) brightness(0.9);
  transform: scale(1.02);
}

/* Graffiti overlay on about image */
.about-graffiti {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

.about-graffiti-tag {
  font-family: 'Permanent Marker', cursive;
  font-size: 4rem;
  color: rgba(212,168,71,0.15);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.about-image-credit {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.about-text-col {
  background: var(--concrete);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Concrete texture on about panel */
.about-text-col::before {
  content: 'R M';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem;
  position: absolute;
  right: -2rem; bottom: -3rem;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}

.about-text-col .tag-line { margin-bottom: 1rem; }

.about-text-col h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.about-text-col p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.8;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat { text-align: left; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── PHOTO GALLERY STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  height: 500px;
  gap: 0;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.4) contrast(1.1) brightness(0.75);
  transition: var(--transition-slow);
}

.photo-strip-item:first-child img {
  object-position: center center;
}

.photo-strip-item:nth-child(2) img {
  object-position: center 35%;
}

.photo-strip-item:hover img {
  filter: saturate(0.7) contrast(1.05) brightness(0.9);
  transform: scale(1.04);
}

.photo-strip-item .strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.photo-strip-item:hover .strip-overlay { opacity: 1; }

/* ── FULL BLEED PHOTO SECTION ── */
.fullbleed-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fullbleed-bg {
  position: absolute;
  inset: 0;
}

.fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.3) contrast(1.2) brightness(0.35);
}

.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 45%, rgba(0,0,0,0.3) 100%);
}

.fullbleed-content {
  position: relative;
  z-index: 2;
  padding: 5rem 5vw;
  max-width: 650px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition);
}

.service-card:hover { background: var(--bg-card-hover); }
.service-card:hover::before { transform: scaleY(1); }

.service-icon { font-size: 1.8rem; margin-bottom: 1.2rem; color: var(--gold); }

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.7;
}

.service-card .btn-quote {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.55rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card .btn-quote:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(212,168,71,0.1);
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-avatar {
  width: 44px; height: 44px;
  background: var(--concrete);
  border: 1px solid rgba(212,168,71,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }

/* ── Shop ── */
.shop-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.45rem 1.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.product-card {
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 1px var(--border-bright);
}

.product-image {
  aspect-ratio: 1;
  background: var(--concrete);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-emoji { font-size: 4rem; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay { opacity: 1; }

.product-body { padding: 1.2rem 1.4rem 1.4rem; }

.product-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-level {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.add-to-cart {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  padding: 0.35rem 0.8rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.add-to-cart:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ── Videos ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.video-card {
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover { background: var(--bg-card-hover); }

.video-thumbnail {
  aspect-ratio: 16/9;
  background: var(--concrete);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.4);
  transition: var(--transition-slow);
}

.video-card:hover .video-thumbnail img { filter: brightness(0.7) saturate(0.6); transform: scale(1.03); }

.play-btn {
  position: absolute;
  width: 58px; height: 58px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  background: rgba(0,0,0,0.4);
}

.video-card:hover .play-btn {
  background: var(--gold);
  color: #000;
}

.video-thumb-placeholder { font-size: 3.5rem; color: rgba(255,255,255,0.08); }

.video-duration {
  position: absolute;
  bottom: 0.6rem; right: 0.8rem;
  background: rgba(0,0,0,0.85);
  color: var(--text-secondary);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  padding: 2px 8px;
  letter-spacing: 0.1em;
}

.video-level {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  padding: 3px 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.level-beginner { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.level-intermediate { background: rgba(212,168,71,0.15); color: var(--gold-light); border: 1px solid var(--border); }
.level-advanced { background: rgba(192,57,43,0.15); color: #f87171; border: 1px solid rgba(192,57,43,0.3); }
.level-all { background: rgba(0,0,0,0.5); color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.1); }

.video-body { padding: 1.4rem; }

.video-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
}

.video-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-meta span { display: flex; align-items: center; gap: 0.3rem; }

.video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.video-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ── Page Hero ── */
.page-hero {
  padding: 10rem 5vw 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.2) saturate(0.3) contrast(1.2);
}

.page-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.97) 50%, rgba(0,0,0,0.7));
}

.page-hero-content { position: relative; z-index: 2; max-width: 700px; }

.page-hero-eyebrow {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  max-width: 550px;
}

/* ── Booking / Contact Forms ── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.booking-info p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
}

.event-types { display: flex; flex-direction: column; gap: 1px; margin: 2rem 0; background: rgba(255,255,255,0.04); }

.event-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
}

.event-type:hover { background: var(--bg-card-hover); padding-left: 1.6rem; }
.event-type-icon { font-size: 1.3rem; }

.event-type-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.event-type-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.booking-form, .contact-form {
  background: var(--concrete);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-color: rgba(255,255,255,0.15);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,168,71,0.04);
}

.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.contact-info p { color: var(--text-secondary); margin-bottom: 2rem; font-family: 'Cormorant Garamond', serif; }

.contact-items { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.04); }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
}

.contact-item-icon { font-size: 1.2rem; min-width: 28px; text-align: center; }

.contact-item-text a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.contact-item-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.social-links { display: flex; gap: 0.6rem; margin-top: 2rem; }

.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,71,0.08);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold-light); }

.faq-toggle {
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: 'Cormorant Garamond', serif;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.18) saturate(0.2) contrast(1.3);
}

.cta-banner-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.cta-banner-content { position: relative; z-index: 2; }

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── Featured Banner ── */
.featured-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.featured-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
  position: relative;
}

.featured-item:last-child { border-right: none; }
.featured-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.featured-item:hover::before { transform: scaleX(1); }

.featured-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}

.featured-item .label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── Footer ── */
#footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 5rem 2rem 2rem;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .nav-logo { font-size: 1.4rem; display: block; margin-bottom: 1rem; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
  font-family: 'Cormorant Garamond', serif;
}

.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.footer-suits {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 4px;
}

/* ── Product badges ── */
.product-badge {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  padding: 2px 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-new { background: rgba(212,168,71,0.2); color: var(--gold-light); border: 1px solid var(--border); }
.badge-hot { background: rgba(192,57,43,0.2); color: #f87171; border: 1px solid rgba(192,57,43,0.3); }
.badge-sale { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }

.product-original-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.3rem;
}

/* ── Animations ── */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Cart Sidebar ── */
.cart-sidebar {
  position: fixed;
  top: 0; right: -420px;
  width: 400px;
  height: 100vh;
  background: #0f0f0f;
  border-left: 1px solid rgba(255,255,255,0.06);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.cart-overlay.visible { opacity: 1; pointer-events: auto; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}
.cart-close:hover { color: var(--gold); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  font-family: 'Cormorant Garamond', serif;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cart-total-price { color: var(--gold-light); font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-img {
  width: 50px; height: 50px;
  background: var(--concrete);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-item-price { color: var(--gold); font-family: 'Bebas Neue', sans-serif; font-size: 1rem; }

.cart-item-remove {
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  align-self: center;
}
.cart-item-remove:hover { color: #ef4444; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--concrete);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-gold);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Upload notice ── */
.upload-notice {
  background: var(--bg-card);
  border: 1px dashed rgba(212,168,71,0.3);
  padding: 3rem;
  text-align: center;
}
.upload-notice h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.upload-notice p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { height: 400px; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 600px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .featured-banner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.99);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.open a { font-size: 1.2rem; letter-spacing: 0.3em; }

  .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-strip-item { height: 360px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { gap: 1.5rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .cart-sidebar { width: 100%; right: -100%; }
  .booking-form, .contact-form { padding: 1.5rem; }
  .section { padding: 4rem 1.2rem; }
  .hero-wall-tag { display: none; }
  .featured-banner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-strip-item { height: 240px; }
}
