/* ================================================
   MAFIOSO MAGS — styles.css
   Dark, tactical, street luxury aesthetic
   ================================================ */

/* ---------- SMOOTH SCROLL CONTAINER ---------- */
/* JS adds .smooth-scroll-active to <html> on all devices */
html.smooth-scroll-active #scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  overflow-x: hidden;
}

/* ---------- VARIABLES ---------- */
:root {
  --bg: #0a0a0a;
  --card: #111111;
  --card-alt: #161616;
  --border: #222222;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.35);
  --green: #2d8f3c;
  --green-dim: rgba(45, 143, 60, 0.15);
  --white: #f0f0f0;
  --muted: #999999;
  --muted-dark: #666666;
  --font-head: 'Bebas Neue', sans-serif;
  --font-accent: 'Permanent Marker', cursive;
  --font-body: 'Outfit', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- INTRO ANIMATION ---------- */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#intro-logo {
  width: 140px;
  opacity: 0;
  transform: scale(0.8);
  /* Animation handled via JS */
  filter: drop-shadow(0 0 10px rgba(45, 143, 60, 0.5));
}

#intro-particles {
  position: absolute;
  inset: -200px;
  pointer-events: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}

.btn-primary:hover {
  background: #e5c160;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-family: var(--font-accent);
  font-size: 1.1rem;
}

.btn-gold:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 24px var(--gold-glow);
}

.btn-full {
  width: 100%;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  transition: filter var(--transition);
}

.logo-img:hover {
  filter: drop-shadow(0 0 16px var(--gold-glow));
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

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

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--gold);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -52deg,
      transparent 0px,
      transparent 22px,
      rgba(255, 255, 255, 0.018) 22px,
      rgba(255, 255, 255, 0.018) 23px
    ),
    var(--bg);
  padding-top: 80px;
}

.hero-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  z-index: 2;
  position: relative;
}

.hero-left {
  flex: 1;
  position: relative;
  z-index: 10;
  max-width: 600px;
  animation: fadeUp 1s ease both;
  pointer-events: none;
  /* Let clicks pass through empty space to the background image */
}

.hero-left * {
  pointer-events: auto;
  /* Restore interactivity for text and buttons */
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  margin-bottom: 24px;
  background: rgba(201, 168, 76, 0.05);
  animation: fadeUp 1s 0.1s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  animation: fadeUp 1s 0.2s ease both;
}

.hero-sub {
  margin: 24px 0 40px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 480px;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}

/* -- Hero Image Wrapper (sits behind text, anchored right) -- */
.hero-img-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  --x: 50%;
  --y: 50%;
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 120%;
  height: auto;
}

.hero-bg-base {
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}

.hero-bg-art {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle 130px at var(--x) var(--y), rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(circle 130px at var(--x) var(--y), rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
  transition: opacity 0.3s ease;
}

.hero-img-wrapper:hover .hero-bg-art {
  opacity: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 32px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 28px 24px;
}

.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 48px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-plus {
  color: var(--gold);
}

.stat-star {
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---------- SECTION COMMON ---------- */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}

.section-sub {
  margin-top: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- GALLERY ---------- */
.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;

}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-glow);
  border-color: var(--gold);
}

.gallery-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--card-alt);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.04);
}

.gallery-card-body {
  padding: 20px;
}

.gallery-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.gallery-card-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.gallery-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.gallery-card-price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.card-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.card-size-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.card-size-btn {
  padding: 9px 6px;
  font-size: 0.78rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-direction: column;
  gap: 2px;
}

.card-size-btn small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  z-index: 5;
}

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

.gallery-card.sold-out .gallery-card-img {
  filter: grayscale(100%) opacity(0.6);
}

.gallery-card.sold-out {
  pointer-events: none;
}

.gallery-card.sold-out::after {
  content: 'SOLD OUT';
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 51, 51, 0.9);
  color: #fff;
  font-family: var(--font-head);
  padding: 4px 12px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
  background: var(--card);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  background: var(--card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.1);
}

.step-number {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.step-card:hover .step-number {
  color: var(--gold-dim);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--white);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  flex-shrink: 0;
}

/* ---------- PROOF VIDEO ---------- */
.proof-section {
  background: var(--bg);
  padding: 80px 0;
}

.proof-header {
  text-align: center;
  margin-bottom: 48px;
}

.proof-header .section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 8px 0;
}

.proof-video-wrap {
  position: relative;
  max-width: 215px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
}

.proof-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* ---------- CUSTOM ORDER ---------- */
.order-section {
  background: var(--bg);
}

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.order-price-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 18px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.order-price-badge strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.order-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Form */
.order-ig-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.order-ig-icon {
  line-height: 0;
}

.order-ig-handle {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fcb045, #fd1d1d, #833ab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.order-ig-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px;
}

.order-ig-btn {
  margin-top: 8px;
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-dark);
  margin-top: -4px;
}

/* ---------- INSTAGRAM ---------- */
.instagram-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #101010 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.instagram-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.ig-icon {
  flex-shrink: 0;
  animation: igPulse 3s ease-in-out infinite;
}

.ig-text {
  flex: 1;
  min-width: 200px;
}

.ig-title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.ig-sub {
  color: var(--muted);
}

.ig-btn {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.social-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.tiktok-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.tiktok-btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ---------- SHIPPING BANNER ---------- */
.shipping-banner {
  background: var(--green);
  padding: 14px 24px;
  text-align: center;
}

.shipping-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.shipping-flag {
  font-size: 1.3rem;
}

.shipping-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-wrap {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  height: 56px;
  width: auto;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted-dark);
}

.footer-sub {
  font-size: 0.76rem !important;
}

/* ---------- INSTAGRAM DM BUTTON ---------- */
.ig-dm-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(253, 29, 29, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  /* Fixes overflow-x:hidden clipping on mobile Safari */
  transform: translateZ(0);
}

.ig-dm-btn:hover {
  transform: translateZ(0) scale(1.06);
  box-shadow: 0 12px 32px rgba(253, 29, 29, 0.55);
}

/* Mobile: icon-only circle so it never overflows */
@media (max-width: 600px) {
  .ig-dm-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
  }
  .ig-dm-btn span {
    display: none;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

@keyframes igPulse {

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

  50% {
    transform: scale(1.08);
  }
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }

  .hero-left {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    height: auto;
    min-height: unset;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 33vh;
    min-height: 195px;
    opacity: 1;
    margin-top: 16px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 85% 65% at 52% 48%, rgba(201, 168, 76, 0.11) 0%, rgba(10, 10, 10, 0) 65%),
      radial-gradient(ellipse 60% 40% at 52% 85%, rgba(45, 143, 60, 0.06) 0%, transparent 70%),
      var(--bg);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 32%;
    transform: none;
  }

  .hero-bg-art {
    -webkit-mask-image: radial-gradient(circle 90px at var(--x) var(--y), rgba(0,0,0,1) 25%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle 90px at var(--x) var(--y), rgba(0,0,0,1) 25%, rgba(0,0,0,0) 100%);
  }

  .scroll-indicator {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 12px 24px;
  }

  .order-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instagram-inner {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-img-wrapper {
    height: 32vh;
    min-height: 180px;
  }

  .hero-bg {
    object-position: 55% 30%;
  }

  .hero-bg-art {
    -webkit-mask-image: radial-gradient(circle 70px at var(--x) var(--y), rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle 70px at var(--x) var(--y), rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 80px 0;
  }

  .order-ig-cta {
    padding: 32px 24px;
  }

}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}