/* ============================================
   Neil's Crystal Grove — Master Stylesheet
   Premium Gemstone Store
   ============================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core palette */
  --black:        #050505;
  --charcoal:     #0a0a0a;
  --dark-surface:  #111111;
  --card-surface:  #161616;
  --border-subtle: #1f1f1f;
  --border-light:  #2a2a2a;

  /* Text */
  --text-primary:   #f0ece4;
  --text-secondary: #a8a29e;
  --text-muted:     #6b6560;

  /* Accents */
  --emerald:       #34d399;
  --emerald-deep:  #059669;
  --emerald-glow:  rgba(52, 211, 153, 0.15);
  --sapphire:      #60a5fa;
  --sapphire-deep: #2563eb;
  --sapphire-glow: rgba(96, 165, 250, 0.12);
  --gold:          #d4a853;
  --gold-light:    #e8c775;
  --gold-glow:     rgba(212, 168, 83, 0.15);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 200ms var(--ease-out-expo);
  --transition-base: 400ms var(--ease-out-expo);
  --transition-slow: 600ms var(--ease-out-expo);

  /* Effects */
  --glass-bg: rgba(22, 22, 22, 0.6);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(20px);
}

/* ---------- Custom Diamond Cursor ---------- */
/* White diamond cursor (default) */
html {
  cursor: url('../images/cursor-white.png') 16 16, auto;
}

/* Blue diamond cursor (clickable elements) */
a, button, [role="button"], input[type="submit"],
select, .btn, .filter-btn, .product-card,
.category-card, .nav__hamburger, .product-detail__thumb,
label, input, textarea {
  cursor: url('../images/cursor-blue.png') 16 16, pointer;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--emerald-deep);
  color: var(--text-primary);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald));
  color: var(--black);
  font-weight: 600;
}

.btn-primary::before {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--emerald-glow), 0 0 60px var(--emerald-glow);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-secondary::before {
  background: var(--gold-glow);
}

.btn-secondary:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Background Grain Texture ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ---------- Ambient Orbs (background decoration) ---------- */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.08;
}

.ambient-orb--emerald {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  animation: float-orb 20s ease-in-out infinite;
}

.ambient-orb--sapphire {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sapphire) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float-orb 25s ease-in-out infinite reverse;
}

.ambient-orb--gold {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-orb 30s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 10px) scale(1.02); }
}

/* ---------- Floating Crystal Shapes ---------- */
.crystals-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.crystal {
  position: absolute;
  opacity: 0;
  filter: blur(1px);
  animation: crystal-float linear infinite;
}

/* Crystal shape variants using clip-path */
.crystal--diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.crystal--hex {
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.crystal--tri {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.crystal--gem {
  clip-path: polygon(20% 0%, 80% 0%, 100% 35%, 50% 100%, 0% 35%);
}

.crystal--shard {
  clip-path: polygon(30% 0%, 70% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 40%);
}

/* Individual crystals — sizes, positions, colors, speeds */
.crystal-1 {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(52, 211, 153, 0.03));
  top: 10%; left: 5%;
  animation-duration: 25s;
  animation-delay: 0s;
}

.crystal-2 {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(96, 165, 250, 0.02));
  top: 20%; right: 10%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.crystal-3 {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.02));
  top: 45%; left: 15%;
  animation-duration: 35s;
  animation-delay: -10s;
}

.crystal-4 {
  width: 35px; height: 35px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), transparent);
  top: 60%; right: 20%;
  animation-duration: 22s;
  animation-delay: -3s;
}

.crystal-5 {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.08), transparent);
  top: 75%; left: 8%;
  animation-duration: 28s;
  animation-delay: -15s;
}

.crystal-6 {
  width: 45px; height: 45px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.02));
  top: 30%; right: 5%;
  animation-duration: 32s;
  animation-delay: -8s;
}

.crystal-7 {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.06), transparent);
  top: 85%; right: 15%;
  animation-duration: 27s;
  animation-delay: -12s;
}

.crystal-8 {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), transparent);
  top: 5%; left: 40%;
  animation-duration: 20s;
  animation-delay: -7s;
}

.crystal-9 {
  width: 55px; height: 55px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06), transparent);
  top: 50%; left: 70%;
  animation-duration: 33s;
  animation-delay: -18s;
}

.crystal-10 {
  width: 25px; height: 25px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.14), rgba(96, 165, 250, 0.05));
  top: 90%; left: 50%;
  animation-duration: 24s;
  animation-delay: -2s;
}

@keyframes crystal-float {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) scale(0.8);
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-120px) rotate(180deg) scale(1.1) translateX(30px);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-240px) rotate(360deg) scale(0.8) translateX(-20px);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}


.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
}

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

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--space-lg);
}

/* Hamburger — large tap target for mobile */
.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  z-index: 1002;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0.4rem 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.nav__mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for mobile links */
.nav__mobile.open a:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.1s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.2s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.25s; }

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--gold);
}

.nav__mobile-cta {
  margin-top: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.nav__mobile.open .nav__mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile-contact {
  margin-top: var(--space-2xl);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.nav__mobile.open .nav__mobile-contact {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile-contact p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.nav__mobile-contact a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  padding: 0.2rem 0;
  transform: none;
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(5, 150, 105, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.2) 40%, var(--black) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-4xl) 0;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: italic;
  color: var(--emerald);
  font-weight: 400;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Decorative diamond shapes */
.hero__diamonds {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.06;
}

.hero__diamonds svg {
  width: 500px;
  height: 500px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   FEATURED CATEGORIES
   ============================================ */
.categories {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
}

.categories__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.categories__header h2 {
  margin-bottom: var(--space-md);
}

.categories__header p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  group: category;
}

.category-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 5, 5, 0.9) 100%);
  transition: background var(--transition-base);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(5, 5, 5, 0.95) 100%);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 1;
}

.category-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
  transition: transform var(--transition-base);
}

.category-card:hover .category-card__name {
  transform: translateY(-4px);
}

.category-card__count {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.category-card:hover .category-card__count {
  color: var(--gold);
}

/* Glow on hover per category */
.category-card--emerald:hover .category-card__overlay {
  box-shadow: inset 0 -60px 80px -40px var(--emerald-glow);
}
.category-card--diamond:hover .category-card__overlay {
  box-shadow: inset 0 -60px 80px -40px rgba(255, 255, 255, 0.08);
}
.category-card--quartz:hover .category-card__overlay {
  box-shadow: inset 0 -60px 80px -40px rgba(200, 160, 220, 0.1);
}
.category-card--sapphire:hover .category-card__overlay {
  box-shadow: inset 0 -60px 80px -40px var(--sapphire-glow);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.intro {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.intro__image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}

.intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  pointer-events: none;
}

.intro__image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  opacity: 0.4;
}

.intro__content h2 {
  margin-bottom: var(--space-xl);
}

.intro__content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.8;
}

.intro__content p:last-of-type {
  margin-bottom: var(--space-2xl);
}

.intro__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: var(--space-xl);
}

/* ============================================
   TRUST / FEATURES SECTION
   ============================================ */
.trust {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
}

.trust-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.trust-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.trust-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.trust-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
}

.featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-3xl);
}

.featured__header h2 {
  margin-bottom: 0;
}

/* ============================================
   PRODUCT GRID (Shared: Home & Shop)
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px var(--emerald-glow);
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-surface);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--gold);
}

.product-card__body {
  padding: var(--space-lg);
}

.product-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: var(--space-xs);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: gap var(--transition-fast);
}

.product-card:hover .product-card__cta {
  gap: var(--space-md);
}

.product-card__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.product-card:hover .product-card__cta svg {
  transform: translateX(2px);
}

/* ============================================
   SHOP PAGE — Filters
   ============================================ */
.shop-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.shop-hero p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: var(--space-md) auto 0;
  font-size: 1.05rem;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: transparent;
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.02);
}

.filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}

/* Shop section */
.shop-content {
  padding: 0 0 var(--space-5xl);
  position: relative;
  z-index: 1;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-5xl);
  position: relative;
  z-index: 1;
}

.product-detail__breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-detail__breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.product-detail__breadcrumb a:hover {
  color: var(--gold);
}

.product-detail__breadcrumb span {
  color: var(--text-muted);
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.product-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-detail__main-image {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark-surface);
  border: 1px solid var(--glass-border);
}

.product-detail__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-detail__thumb {
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast);
  background: var(--dark-surface);
}

.product-detail__thumb:hover,
.product-detail__thumb.active {
  border-color: var(--gold);
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__info {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.product-detail__category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: var(--space-sm);
}

.product-detail__name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

.product-detail__desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.product-detail__divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-2xl) 0;
}

.product-detail__properties h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.product-detail__prop-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-detail__prop {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.product-detail__prop-label {
  color: var(--text-muted);
}

.product-detail__prop-value {
  color: var(--text-primary);
  font-weight: 500;
}

.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.product-detail__contact-info {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}

.product-detail__contact-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.product-detail__contact-info a {
  color: var(--gold);
  font-weight: 500;
}

.product-detail__contact-info a:hover {
  color: var(--gold-light);
}

/* Related products */
.related {
  padding: var(--space-5xl) 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.related h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  margin-bottom: var(--space-lg);
}

.about-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-story {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-story__grid.reverse {
  direction: rtl;
}

.about-story__grid.reverse > * {
  direction: ltr;
}

.about-story__image {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--dark-surface);
  border: 1px solid var(--glass-border);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__content h3 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

.about-story__content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* Values grid */
.values {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.value-card {
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.value-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Founder */
.founder {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
}

.founder__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.founder__image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dark-surface);
  border: 1px solid var(--glass-border);
}

.founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder__content h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
}

.founder__content .founder__role {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.founder__content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  margin-bottom: var(--space-md);
}

.contact-hero p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.contact-section {
  padding: 0 0 var(--space-5xl);
  position: relative;
  z-index: 1;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

/* Contact form */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--dark-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  transition: border-color var(--transition-fast);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  margin-top: var(--space-xl);
}

.form-submit .btn {
  width: 100%;
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  display: flex;
  gap: var(--space-lg);
  transition: border-color var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--border-light);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.15);
}

.contact-info-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-card__content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.contact-info-card__content p,
.contact-info-card__content a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-card__content a:hover {
  color: var(--gold);
}

/* Map */
.contact-map {
  margin-top: var(--space-3xl);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 16 / 7;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.7) contrast(1.1) saturate(0);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
  text-align: center;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-surface) 50%, var(--black) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
  font-size: 1rem;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */
.announcement {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}

.announcement__inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-2xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06), rgba(52, 211, 153, 0.04));
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.announcement__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--emerald));
}

.announcement__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  color: var(--gold);
}

.announcement__icon svg {
  width: 22px;
  height: 22px;
}

.announcement__content {
  flex: 1;
}

.announcement__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.announcement__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.announcement__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.announcement__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .announcement {
    padding: var(--space-xl) 0;
  }

  .announcement__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    padding-left: calc(var(--space-lg) + 3px);
  }

  .announcement__icon {
    width: 44px;
    height: 44px;
  }

  .announcement__title {
    font-size: 1.2rem;
  }

  .announcement__text {
    font-size: 0.85rem;
  }

  .announcement__cta {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-lg);
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  width: fit-content;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================
   ANIMATIONS — Fade in on scroll
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Shimmer effect on hover */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.shimmer-hover {
  position: relative;
  overflow: hidden;
}

.shimmer-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  transition: none;
}

.shimmer-hover:hover::after {
  animation: shimmer 0.8s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro__inner,
  .about-story__grid {
    gap: var(--space-2xl);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .product-detail__layout {
    gap: var(--space-2xl);
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder__inner {
    grid-template-columns: 200px 1fr;
    gap: var(--space-2xl);
  }

  .founder__image {
    width: 200px;
    height: 200px;
  }

  .contact__layout {
    gap: var(--space-2xl);
  }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  /* -- Nav -- */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    padding: 0 var(--space-md);
  }

  .nav__logo-img {
    height: 30px;
  }


  /* -- Hero -- */
  .hero {
    min-height: 65vh;
    min-height: 65svh;
    display: flex;
    align-items: center;
  }

  .hero__video {
    opacity: 0.2;
  }

  .hero__bg-gradient {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.2) 40%, rgba(5, 5, 5, 0.7) 75%, var(--black) 100%);
  }

  .hero__content {
    padding: var(--space-md) 0;
  }

  .hero__label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
  }

  .hero__scroll,
  .hero__diamonds {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  /* -- Section labels -- */
  .section-label {
    font-size: 0.65rem;
  }

  /* -- Categories -- */
  .categories {
    padding: var(--space-4xl) 0;
  }

  .categories__header {
    margin-bottom: var(--space-2xl);
  }

  .categories__header p {
    font-size: 0.9rem;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .category-card {
    aspect-ratio: 3 / 4;
  }

  .category-card__content {
    padding: var(--space-md);
  }

  .category-card__name {
    font-size: 1.2rem;
  }

  .category-card__count {
    font-size: 0.65rem;
  }

  /* -- Intro / About -- */
  .intro {
    padding: var(--space-4xl) 0;
  }

  .intro__inner,
  .about-story__grid,
  .about-story__grid.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    direction: ltr;
  }

  .intro__image-wrapper {
    aspect-ratio: 16 / 10;
  }

  .intro__image-accent {
    display: none;
  }

  .intro__content h2 {
    font-size: 1.8rem;
  }

  .intro__content p {
    font-size: 0.9rem;
  }

  .intro__signature {
    font-size: 1.1rem;
  }

  /* -- Trust -- */
  .trust {
    padding: var(--space-3xl) 0;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-card {
    text-align: left;
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .trust-card:last-child {
    border-bottom: none;
  }

  .trust-card__icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .trust-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .trust-card__title {
    font-size: 1.05rem;
  }

  .trust-card__text {
    font-size: 0.85rem;
  }

  /* -- Featured -- */
  .featured {
    padding: var(--space-4xl) 0;
  }

  .featured__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
  }

  /* -- Product Grid -- */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .product-card__image-wrapper {
    aspect-ratio: 1;
  }

  .product-card__body {
    padding: var(--space-md);
  }

  .product-card__name {
    font-size: 1rem;
    line-height: 1.3;
  }

  .product-card__desc {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    margin-bottom: var(--space-md);
  }

  .product-card__category {
    font-size: 0.6rem;
  }

  .product-card__cta {
    font-size: 0.65rem;
  }

  .product-card__badge {
    font-size: 0.55rem;
    padding: 3px 6px;
  }

  .product-card:hover {
    transform: none;
  }

  /* -- Product Detail -- */
  .product-detail {
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-3xl);
  }

  .product-detail__breadcrumb {
    font-size: 0.7rem;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
  }

  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .product-detail__info {
    position: static;
  }

  .product-detail__name {
    font-size: 1.8rem;
  }

  .product-detail__desc {
    font-size: 0.9rem;
  }

  .product-detail__prop {
    font-size: 0.85rem;
  }

  .product-detail__thumbnails {
    gap: var(--space-xs);
  }

  .product-detail__actions .btn {
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
  }

  .product-detail__contact-info {
    padding: var(--space-md);
  }

  .product-detail__contact-info p {
    font-size: 0.8rem;
  }

  /* -- Shop Page -- */
  .shop-hero {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl);
  }

  .shop-hero h1 {
    font-size: 2rem;
  }

  .shop-hero p {
    font-size: 0.9rem;
  }

  .filters {
    justify-content: flex-start;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* -- About Page -- */
  .about-hero {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .about-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .about-hero p {
    font-size: 0.9rem;
  }

  .about-story {
    padding: var(--space-2xl) 0;
  }

  .about-story__image {
    aspect-ratio: 16 / 10;
  }

  .about-story__content h3 {
    font-size: 1.5rem;
  }

  .about-story__content p {
    font-size: 0.9rem;
  }

  /* -- Values -- */
  .values {
    padding: var(--space-3xl) 0;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .value-card {
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
  }

  .value-card__number {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 44px;
  }

  .value-card:hover {
    transform: none;
  }

  /* -- Founder -- */
  .founder {
    padding: var(--space-3xl) 0;
  }

  .founder__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .founder__image {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .founder__content h3 {
    font-size: 1.5rem;
  }

  .founder__content p {
    font-size: 0.9rem;
  }

  /* -- Contact Page -- */
  .contact-hero {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl);
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-hero p {
    font-size: 0.9rem;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem 0.875rem;
    font-size: 16px; /* prevents iOS zoom */
  }

  .contact-info-card {
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .contact-info-card__icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-info-card__content h4 {
    font-size: 1rem;
  }

  .contact-info-card__content p,
  .contact-info-card__content a {
    font-size: 0.85rem;
  }

  .contact-map {
    aspect-ratio: 4 / 3;
    margin-top: var(--space-xl);
  }

  /* -- CTA Banner -- */
  .cta-banner {
    padding: var(--space-3xl) 0;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* -- Related -- */
  .related {
    padding: var(--space-3xl) 0;
  }

  .related h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-xl);
  }

  /* -- Footer -- */
  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-lg);
    margin-bottom: var(--space-xl);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__brand p {
    font-size: 0.85rem;
    max-width: none;
  }

  .footer__heading {
    margin-bottom: var(--space-md);
  }

  .footer__links a {
    font-size: 0.85rem;
    padding: 2px 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }

  /* -- Crystals — fewer on mobile */
  .crystal-3, .crystal-6, .crystal-7, .crystal-9 {
    display: none;
  }

  .crystal {
    filter: blur(2px);
  }

  /* -- Ambient orbs -- smaller on mobile to reduce paint */
  .ambient-orb--emerald {
    width: 250px;
    height: 250px;
    opacity: 0.05;
  }

  .ambient-orb--sapphire {
    width: 200px;
    height: 200px;
    opacity: 0.04;
  }

  .ambient-orb--gold {
    width: 150px;
    height: 150px;
    opacity: 0.04;
  }

  /* -- Disable hover effects on touch -- */
  .product-card:hover {
    box-shadow: none;
  }

  .value-card:hover,
  .category-card:hover .category-card__name {
    transform: none;
  }
}

/* ---------- Small Mobile (max 480px) ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__title {
    font-size: 2rem;
  }

  .categories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .category-card {
    aspect-ratio: 3 / 4;
  }

  .category-card__content {
    padding: var(--space-sm);
  }

  .category-card__name {
    font-size: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .product-card__body {
    padding: 10px;
  }

  .product-card__name {
    font-size: 0.9rem;
  }

  .product-card__desc {
    display: none;
  }

  .product-card__cta {
    font-size: 0.6rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__brand {
    grid-column: auto;
  }
}

/* ---------- Very small phones (max 360px) ---------- */
@media (max-width: 360px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .nav__logo-img {
    height: 26px;
  }

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

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

  .category-card {
    aspect-ratio: 16 / 9;
  }
}

/* ---------- Touch device improvements ---------- */
@media (hover: none) and (pointer: coarse) {
  /* Disable custom cursor on touch */
  html, a, button, [role="button"], input[type="submit"],
  select, .btn, .filter-btn, .product-card,
  .category-card, .nav__hamburger, .product-detail__thumb,
  label, input, textarea {
    cursor: auto;
  }

  /* Disable hover transforms on touch devices */
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .value-card:hover {
    transform: none;
  }

  .category-card:hover .category-card__image {
    transform: none;
  }

  .category-card:hover .category-card__name {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }

  /* Larger touch targets for links */
  .footer__links a {
    padding: 6px 0;
  }

  .nav__mobile a {
    padding: 0.6rem 1.5rem;
  }
}

/* ---------- Reduced motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ambient-orb {
    animation: none;
  }

  .crystal {
    display: none;
  }

  .page-content {
    animation: none;
  }
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-content {
  animation: pageEnter 0.6s var(--ease-out-expo) both;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
