/* ============================================
   SiMiS Nexus LLC – Main Stylesheet
   simisnexus.com
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E6B8;
  --maroon: #6B1A2A;
  --maroon-deep: #3D0A14;
  --cream: #FAF3E8;
  --cream-dark: #EDE0C4;
  --text-dark: #1A0A0E;
  --text-mid: #5A3040;
  --white: #FFFFFF;
  --teal-accent: #1A4A4A;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--maroon-deep);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
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%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── KEYFRAMES ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-18px) scale(1.04); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAVIGATION ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%;
  background: linear-gradient(to bottom, rgba(61,10,20,0.97) 0%, rgba(61,10,20,0) 100%);
  transition: background 0.4s;
}
#main-nav.scrolled {
  background: rgba(61,10,20,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold-pale) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo span {
  font-style: italic;
  font-size: 0.65rem;
  display: block;
  letter-spacing: 0.35em;
  -webkit-text-fill-color: rgba(201,168,76,0.7);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: -4px;
  animation: none;
}
.nav-links {
  display: flex; gap: 2.8rem; list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--gold); display: block; transition: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,3,8,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  backdrop-filter: blur(10px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer; line-height: 1;
}
.mobile-menu-logo {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(107,26,42,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,74,74,0.3) 0%, transparent 70%),
    linear-gradient(155deg, #3D0A14 0%, #1A0608 55%, #0D1A1A 100%);
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatOrb 7s ease-in-out infinite;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(107,26,42,0.4) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation: floatOrb 9s ease-in-out infinite reverse;
}
.mandala-ring {
  position: absolute;
  width: 520px; height: 520px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 40s linear infinite;
}
.mandala-ring::before {
  content: '';
  position: absolute; inset: 20px;
  border: 1px dashed rgba(201,168,76,0.08);
  border-radius: 50%;
}
.mandala-ring::after {
  content: '';
  position: absolute; inset: 50px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700; line-height: 0.9; letter-spacing: 0.06em;
  background: linear-gradient(160deg, var(--gold-pale) 0%, var(--gold) 40%, var(--gold-light) 70%, var(--gold-pale) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 5s linear infinite, fadeUp 1s ease forwards 0.5s;
  opacity: 0;
}
.hero-palindrome {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.3em;
  color: rgba(201,168,76,0.6); margin-top: 0.4rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 2rem auto;
  opacity: 0; animation: fadeUp 0.8s ease forwards 1s;
}
.hero-divider-line { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.hero-divider-line:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-divider-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 300; line-height: 1.65;
  color: var(--cream-dark); max-width: 600px; margin: 0 auto 2.8rem;
  opacity: 0; animation: fadeUp 0.9s ease forwards 1.2s;
}
.hero-actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s ease forwards 1.5s;
}
.btn-primary {
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--maroon-deep);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 15px 38px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: borderPulse 2.5s ease infinite 2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
.btn-secondary {
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  padding: 14px 36px; border: 1px solid rgba(201,168,76,0.45);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s ease forwards 2.5s;
}
.hero-scroll span {
  font-family: 'Lato', sans-serif; font-size: 0.58rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: fadeUp 1s ease infinite alternate;
}

/* ── MARQUEE ── */
.marquee-section {
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.05);
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  padding: 0 2.5rem;
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee-dot {
  width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; display: inline-block;
}

/* ── SECTION COMMON ── */
section { position: relative; }
.section-eyebrow {
  font-family: 'Lato', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  color: var(--cream); margin-bottom: 1rem;
}
.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold);
}
.section-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; line-height: 1.75;
  color: rgba(250,243,232,0.75); max-width: 560px;
}
.gold-rule { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.8rem; }
.gold-rule-line { height: 1px; width: 40px; background: var(--gold); opacity: 0.5; }
.gold-rule-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ── ABOUT ── */
#about {
  padding: 120px 6%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7%; align-items: center;
  background: linear-gradient(160deg, rgba(61,10,20,0.95) 0%, rgba(26,6,8,0.98) 100%);
}
.about-visual { position: relative; }
.about-image-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 12px; position: relative;
}
.about-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  filter: brightness(0.85) saturate(1.1);
  transition: filter 0.4s, transform 0.4s;
}
.about-img:hover { filter: brightness(1) saturate(1.3); transform: scale(1.02); }
.about-img-feature { grid-column: 1 / span 2; aspect-ratio: 16/9; }
.about-frame {
  position: absolute; border: 1px solid rgba(201,168,76,0.3);
  inset: -10px; pointer-events: none;
}
.about-frame::before {
  content: '';
  position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(201,168,76,0.12);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 90px; height: 90px; background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 3; animation: rotateSlow 12s linear infinite;
}
.about-badge-text {
  font-family: 'Cinzel', serif; font-size: 0.45rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--maroon-deep); text-align: center; line-height: 1.4;
}

/* ── PRODUCTS ── */
#products {
  padding: 120px 6%;
  background: linear-gradient(160deg, #1A0608 0%, #0D0D0D 60%, #0D1A1A 100%);
}
.products-header { text-align: center; margin-bottom: 60px; }
.products-header .section-body { margin: 0 auto; text-align: center; }
.products-filter {
  display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: 'Cinzel', serif; font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,168,76,0.7); background: transparent;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 18px; cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(201,168,76,0.1); color: var(--gold-light); border-color: var(--gold);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  position: relative; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.4s, transform 0.4s;
}
.product-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-5px); }
.product-card:hover .product-overlay { opacity: 1; }
.product-card:hover .product-img { transform: scale(1.06); }
.product-img-wrap { overflow: hidden; aspect-ratio: 1; position: relative; }
.product-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.88) saturate(1.1);
}
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,10,20,0.75) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px; opacity: 0; transition: opacity 0.4s;
}
.product-overlay-btn {
  font-family: 'Cinzel', serif; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--maroon-deep); background: var(--gold);
  padding: 9px 20px; border: none; cursor: pointer;
}
.product-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Lato', sans-serif; font-size: 0.58rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--maroon-deep); background: var(--gold); padding: 4px 10px;
}
.product-info { padding: 18px 20px 22px; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--cream); margin-bottom: 4px;
}
.product-desc { font-family: 'Lato', sans-serif; font-size: 0.72rem; color: rgba(250,243,232,0.5); letter-spacing: 0.05em; }
.product-price { font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--gold); margin-top: 10px; letter-spacing: 0.08em; }

/* ── STORY ── */
#story {
  padding: 120px 6%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8%; align-items: center;
  background: linear-gradient(155deg, #0D1A1A 0%, #1A0608 100%);
}
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; }
.stat-box {
  background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.12);
  padding: 28px 24px; transition: background 0.3s;
}
.stat-box:hover { background: rgba(201,168,76,0.09); }
.stat-number { font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: 'Lato', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,243,232,0.5); }
.story-visual { position: relative; }
.story-main-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: brightness(0.85) saturate(1.15); display: block; }
.story-corner-img {
  position: absolute; bottom: -30px; left: -30px;
  width: 48%; aspect-ratio: 1; object-fit: cover;
  border: 4px solid var(--maroon-deep); filter: brightness(0.9) saturate(1.1);
}
.story-accent-line {
  position: absolute; top: -1px; right: -1px;
  width: 30%; height: 30%;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); opacity: 0.4;
}
.story-accent-line-bottom {
  position: absolute; bottom: -1px; left: -1px;
  width: 30%; height: 30%;
  border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); opacity: 0.4;
}

/* ── CATEGORIES ── */
#categories { padding: 100px 6%; background: rgba(61,10,20,0.6); }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 50px; }
.cat-card { position: relative; aspect-ratio: 2/3; overflow: hidden; cursor: pointer; }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(1.2);
  transition: filter 0.5s, transform 0.5s;
}
.cat-card:hover img { filter: brightness(0.75) saturate(1.4); transform: scale(1.05); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,10,20,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 28px 16px;
}
.cat-name { font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); text-align: center; margin-bottom: 4px; }
.cat-count { font-family: 'Lato', sans-serif; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
.cat-border { position: absolute; inset: 8px; border: 1px solid rgba(201,168,76,0); transition: border-color 0.4s; pointer-events: none; }
.cat-card:hover .cat-border { border-color: rgba(201,168,76,0.35); }

/* ── TESTIMONIALS ── */
#testimonials { padding: 100px 6%; background: linear-gradient(155deg, #1A0608 0%, #0D0D0D 100%); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(201,168,76,0.1);
  padding: 36px 28px; text-align: left; transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.3); }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 16px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; line-height: 1.7; color: rgba(250,243,232,0.8); margin-bottom: 20px; }
.testi-author { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.testi-location { font-family: 'Lato', sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(250,243,232,0.35); margin-top: 2px; }

/* ── NEWSLETTER ── */
#newsletter {
  padding: 100px 6%;
  background: linear-gradient(135deg, rgba(61,10,20,0.9) 0%, rgba(26,74,74,0.3) 100%);
  text-align: center; position: relative; overflow: hidden;
}
#newsletter::before {
  content: 'SiMiS';
  position: absolute; font-family: 'Cinzel', serif; font-size: 22vw; font-weight: 700;
  color: rgba(201,168,76,0.025); letter-spacing: -0.02em;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; white-space: nowrap;
}
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 2.5rem auto 0; }
.newsletter-input {
  flex: 1; padding: 15px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25); border-right: none;
  color: var(--cream); font-family: 'Lato', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(250,243,232,0.35); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-submit {
  font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--maroon-deep); background: var(--gold); padding: 15px 26px;
  border: none; cursor: pointer; white-space: nowrap; transition: background 0.3s;
}
.newsletter-submit:hover { background: var(--gold-light); }

/* ── CONTACT ── */
#contact {
  padding: 100px 6%; background: #0D0608;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: start;
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
}
.contact-label { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: rgba(250,243,232,0.75); line-height: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
.form-input, .form-textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15);
  color: var(--cream); padding: 12px 16px;
  font-family: 'Lato', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit { align-self: flex-start; }
.social-links { display: flex; gap: 1rem; margin-top: 2.5rem; }
.social-link {
  width: 42px; height: 42px; border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,168,76,0.6); text-decoration: none; font-size: 0.8rem; transition: all 0.3s;
}
.social-link:hover { background: rgba(201,168,76,0.1); color: var(--gold); border-color: var(--gold); }

/* ── FOOTER ── */
footer { background: #080204; padding: 50px 6% 28px; border-top: 1px solid rgba(201,168,76,0.12); }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); letter-spacing: 0.1em; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.8rem; color: rgba(201,168,76,0.5); letter-spacing: 0.2em; }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,243,232,0.4); text-decoration: none; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-family: 'Lato', sans-serif; font-size: 0.65rem; color: rgba(250,243,232,0.25); letter-spacing: 0.05em; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); 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; }

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

/* Tablet: 641px – 900px */
@media (max-width: 900px) {
  #main-nav { padding: 16px 5%; }
  #about { grid-template-columns: 1fr; gap: 50px; padding: 80px 6%; }
  .about-visual { order: -1; }
  .about-badge { bottom: -16px; right: 10px; width: 76px; height: 76px; }
  #story { grid-template-columns: 1fr; gap: 50px; padding: 80px 6%; }
  .story-corner-img { width: 42%; bottom: -20px; left: -16px; }
  #contact { grid-template-columns: 1fr; gap: 50px; padding: 80px 6%; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-top { flex-direction: column; gap: 1.2rem; text-align: center; }
  .footer-nav { justify-content: center; }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  #main-nav { padding: 14px 5%; }
  .nav-logo { font-size: 1.4rem; }

  #hero { min-height: 100svh; padding: 0 5%; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-tagline { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.8rem; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  .mandala-ring { width: 320px; height: 320px; }

  #about, #story, #contact, #categories, #products, #testimonials, #newsletter { padding: 70px 5%; }

  .about-image-grid { grid-template-columns: 1fr; }
  .about-img-feature { grid-column: 1; aspect-ratio: 4/3; }
  .about-img:not(.about-img-feature) { aspect-ratio: 4/3; }
  .about-badge { display: none; }
  .about-frame { display: none; }

  .categories-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .cat-card { aspect-ratio: 3/4; }
  .cat-name { font-size: 0.7rem; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-name { font-size: 0.95rem; }
  .product-info { padding: 12px 12px 16px; }
  .products-filter { gap: 0.4rem; }
  .filter-btn { padding: 7px 12px; font-size: 0.55rem; }

  .story-corner-img { display: none; }
  .story-main-img { aspect-ratio: 4/3; }
  .story-stats { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }

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

  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(201,168,76,0.25); }
  .newsletter-submit { width: 100%; padding: 14px; }

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

  .footer-top { gap: 1.5rem; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* Very small screens */
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
}
