/* ================================================================
   Madhavan Jewellers Pvt Ltd — Core Design System
   Brand Palette: Royal Gold #D4AF37 · Deep Red #B22222 · White #FFFFFF
   Inspired by South Indian temple architecture
   ================================================================ */

/* --- CSS Tokens ------------------------------------------------- */
:root {
  /* Brand Colors */
  --gold-400: #E8C84A;
  --gold-500: #D4AF37;   /* Royal Gold – primary */
  --gold-600: #C89B3C;   /* Warm Gold – accent */
  --gold-700: #A8810F;
  --gold-800: #7A5D0A;
  --gold-light: #FBF3D8;
  --gold-pale: #FDF8EC;

  --red-400: #D44040;
  --red-500: #B22222;    /* Deep Red – secondary */
  --red-600: #8B1A1A;
  --red-light: #FBEAEA;

  --white: #FFFFFF;
  --off-white: #FDFBF5;
  --cream: #FAF6EE;
  --charcoal: #1F1F1F;
  --charcoal-2: #2E2E2E;
  --charcoal-3: #4A4A4A;
  --charcoal-4: #6B6B6B;
  --charcoal-5: #9B9B9B;
  --border: #EDE8D8;
  --border-gold: rgba(212, 175, 55, 0.3);

  /* Gradient helpers */
  --grad-gold: linear-gradient(135deg, #E8C84A 0%, #D4AF37 40%, #C89B3C 100%);
  --grad-gold-soft: linear-gradient(135deg, #FBF3D8 0%, #FDF8EC 100%);
  --grad-red: linear-gradient(135deg, #D44040 0%, #B22222 100%);
  --grad-dark: linear-gradient(135deg, #1F1F1F 0%, #2E2E2E 100%);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Jost', system-ui, sans-serif;

  /* Spacing (8px base) */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 2.5rem;
  --s6: 3rem;
  --s7: 4rem;
  --s8: 5rem;
  --s9: 6.5rem;

  --container: 1320px;
  --container-md: 900px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.35);
  --shadow-red: 0 8px 24px rgba(178,34,34,0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.38s;
  --dur-slow: 0.65s;

  --header-h: 84px;
}

/* --- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* --- Page watermark (faint logo imprint, every page) --------------- */
.page-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(34vw, 480px);
  height: auto;
  opacity: 0.03;
  z-index: 50;
  pointer-events: none;
  user-select: none;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* --- Typography --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-500);
}

/* --- Layout ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s3);
}
.container-md {
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 0 var(--s3);
}
.section        { padding: var(--s9) 0; }
.section-sm     { padding: var(--s7) 0; }
.section-cream  { background: var(--cream); }
.section-dark   { background: var(--charcoal); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.text-center    { text-align: center; }

/* --- Decorative temple-inspired divider -------------------------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  margin: var(--s2) auto;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--grad-gold);
}
.ornament svg {
  width: 22px; height: 22px;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* Section header */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s6);
}
.section-head .eyebrow { margin-bottom: var(--s1); }
.section-head h2 { margin-bottom: var(--s1); }
.section-head p { color: var(--charcoal-4); max-width: 520px; margin: 0 auto; }

/* --- Loading Screen ----------------------------------------------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo-wrap {
  width: 90px; height: 90px;
  margin: 0 auto var(--s2);
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  animation: loaderPulse 1.6s ease-in-out infinite;
  box-shadow: var(--shadow-gold);
}
.loader-logo-wrap img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; }
.loader-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  margin-bottom: var(--s1);
}
.loader-sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-4);
  margin-bottom: var(--s2);
}
.loader-bar { width: 160px; height: 2px; background: rgba(212,175,55,0.2); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar span { display: block; height: 100%; width: 40%; background: var(--grad-gold); animation: loaderSlide 1.3s var(--ease) infinite; }

@keyframes loaderPulse { 0%,100%{opacity:0.7;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }
@keyframes loaderSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* --- Sticky Header ------------------------------------------------ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), height var(--dur) var(--ease), box-shadow var(--dur);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  height: 68px;
}
.site-header:not(.scrolled) { background: transparent; }

.nav-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 var(--s3);
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo area */
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-img {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(212,175,55,0.25);
  transition: transform var(--dur) var(--ease);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red-500);
  letter-spacing: 0.05em;
}
.site-header:not(.scrolled) .nav-logo-name { color: var(--white); }
.site-header:not(.scrolled) .nav-logo-name-alt { color: var(--gold-400); }
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.site-header:not(.scrolled) .nav-logo-sub { color: var(--gold-400); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: var(--s3);
}
.nav-link {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal);
  position: relative; padding: 0.3rem 0;
  transition: color var(--dur) var(--ease);
}
.site-header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: width var(--dur) var(--ease);
}
.nav-link:hover { color: var(--gold-600); }
.site-header:not(.scrolled) .nav-link:hover { color: var(--gold-400); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: var(--grad-red);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow-red);
  transition: box-shadow var(--dur), transform var(--dur), opacity var(--dur);
}
.nav-cta:hover { box-shadow: 0 10px 30px rgba(178,34,34,0.4); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; z-index: 1001;
}

/* Collections dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-caret { transition: transform var(--dur) var(--ease); }
.nav-dropdown.open .nav-caret,
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 190px; padding: 0.6rem; display: flex; flex-direction: column; gap: 0.2rem;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.45rem 0.6rem; border-radius: calc(var(--radius) - 4px);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--charcoal); white-space: nowrap;
  transition: background var(--dur), color var(--dur);
}
.nav-dropdown-link:hover { background: var(--gold-pale); color: var(--gold-600); }
.nav-dropdown-thumb {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: transform var(--dur), opacity var(--dur);
  border-radius: 2px;
}
.site-header:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease); cursor: pointer;
}
.btn-gold {
  background: var(--grad-gold); color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  box-shadow: 0 12px 40px rgba(212,175,55,0.5);
  transform: translateY(-3px);
}
.btn-red {
  background: var(--grad-red); color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  box-shadow: 0 12px 36px rgba(178,34,34,0.42);
  transform: translateY(-3px);
}
.btn-outline-gold {
  background: transparent; color: var(--gold-600);
  border-color: var(--gold-500);
}
.btn-outline-gold:hover {
  background: var(--grad-gold); color: var(--charcoal);
  box-shadow: var(--shadow-gold); transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--charcoal);
  border-color: var(--white);
}

/* --- Hero --------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,8,5,0.62) 0%, rgba(10,8,5,0.40) 50%, rgba(10,8,5,0.72) 100%);
}
.hero-content {
  max-width: 860px; padding: 0 var(--s3);
  animation: heroUp 1.1s var(--ease) 0.2s both;
}
.hero .eyebrow { color: var(--gold-400); margin-bottom: var(--s2); }
.hero h1 { color: var(--white); font-weight: 700; margin-bottom: var(--s3); }
.hero h1 .red { color: var(--red-400); }
.hero h1 .gold { color: var(--gold-400); }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: var(--s4); max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: var(--s2); justify-content: center; flex-wrap: wrap; }

/* Decorative temple arch line */
.hero-arch {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  z-index: 0;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.scroll-cue {
  position: absolute; bottom: var(--s4); left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: var(--s1);
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-cue::after { content: ''; width: 1px; height: 44px; background: rgba(212,175,55,0.5); }

@keyframes heroUp { from{opacity:0;transform:translateY(35px)} to{opacity:1;transform:translateY(0)} }
@keyframes scrollBounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* --- Page Banner -------------------------------------------------- */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 5rem) 0 4rem;
  text-align: center; color: var(--white); overflow: hidden;
}
.page-banner h1 { color: var(--white); }
.page-banner h1 .gold { color: var(--gold-400); }
.page-banner .eyebrow { color: var(--gold-300); margin-bottom: var(--s1); }
.page-banner-arch {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: var(--white);
  clip-path: ellipse(52% 100% at 50% 100%);
}
.page-banner.cream-bottom .page-banner-arch { background: var(--cream); }

.breadcrumb {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-top: var(--s2);
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { margin: 0 0.6rem; color: var(--gold-500); }

/* --- Collection Cards --------------------------------------------- */
.collections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2);
}
.collection-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4; display: block; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.collection-card:hover img { transform: scale(1.09); }
.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(30,15,0,0.82) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s3); text-align: center; color: var(--white);
}
.collection-card-overlay .tag {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-400); opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.collection-card-overlay h3 { font-size: 1.5rem; }
.collection-card:hover .collection-card-overlay .tag { opacity: 1; transform: translateY(0); }

/* Top gold band on card */
.collection-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold); z-index: 2;
  transform: scaleX(0); transition: transform var(--dur) var(--ease);
}
.collection-card:hover::before { transform: scaleX(1); }

/* --- Feature/Value Cards ------------------------------------------ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--s4) var(--s3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--dur) var(--ease);
}
.feature-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}
.feature-icon {
  width: 72px; height: 72px; margin: 0 auto var(--s2);
  border-radius: 50%; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  transition: background var(--dur);
}
.feature-card:hover .feature-icon { background: var(--grad-gold); color: var(--charcoal); }
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--charcoal-4); font-size: 0.95rem; margin: 0; }

/* --- About 2-col -------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: center; }
.about-img {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 3px rgba(212,175,55,0.3);
}
.about-stats {
  display: flex; gap: var(--s4); margin: var(--s4) 0;
  flex-wrap: wrap;
}
.about-stat .num {
  font-family: var(--font-display); font-size: 2.6rem;
  color: var(--gold-600); line-height: 1;
}
.about-stat .lbl {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal-4);
}

/* --- Testimonials ------------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--s4);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; transition: all var(--dur) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-gold); border-color: var(--gold-400); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display); font-size: 5rem; color: var(--gold-light);
  position: absolute; top: 0.5rem; left: 1rem; line-height: 1;
}
.testimonial-stars { color: var(--gold-500); letter-spacing: 0.1em; margin-bottom: var(--s2); font-size: 0.9rem; }
.testimonial-text {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: var(--charcoal-3); line-height: 1.6; margin-bottom: var(--s2);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.78rem; color: var(--charcoal-4); }

/* --- Blog Cards --------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.blog-card {
  display: block; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--gold-400); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: var(--s2) var(--s3) var(--s3); }
.blog-tag { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-500); }
.blog-card h3 { font-size: 1.2rem; margin: 0.4rem 0; color: var(--charcoal); }
.blog-card .meta { font-size: 0.78rem; color: var(--charcoal-4); }

/* --- CTA Section -------------------------------------------------- */
.cta-section {
  position: relative; text-align: center;
  padding: var(--s9) 0; overflow: hidden; color: var(--white);
}
.cta-section .hero-overlay { background: linear-gradient(180deg,rgba(10,8,5,0.7) 0%,rgba(10,8,5,0.55) 100%); }
.cta-section h2 { color: var(--white); margin-bottom: var(--s2); }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: var(--s4); max-width: 540px; margin-left: auto; margin-right: auto; }

/* --- Why Choose Us (strip) --------------------------------------- */
.trust-strip {
  background: var(--grad-gold);
  padding: var(--s4) 0;
}
.trust-items { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: var(--s3); }
.trust-item {
  display: flex; align-items: center; gap: var(--s2);
  color: var(--charcoal);
}
.trust-item svg { width: 28px; height: 28px; color: var(--red-600); flex-shrink: 0; }
.trust-item .ti-title { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; }
.trust-item .ti-sub { font-size: 0.75rem; color: var(--charcoal-3); }

/* --- Services Grid ------------------------------------------------ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
.service-card {
  display: flex; gap: var(--s3); padding: var(--s4);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.service-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.service-icon {
  flex-shrink: 0; width: 64px; height: 64px;
  border-radius: var(--radius); background: var(--gold-pale);
  color: var(--gold-600); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur);
}
.service-card:hover .service-icon { background: var(--grad-gold); color: var(--charcoal); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--charcoal-4); font-size: 0.93rem; margin: 0; }

/* --- Gallery ---------------------------------------------------- */
.gallery-filters { display: flex; justify-content: center; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s5); }
.filter-btn {
  padding: 0.55rem 1.4rem; border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal-4); transition: all var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--gold-500); color: var(--gold-600); }
.filter-btn.active { background: var(--grad-gold); color: var(--charcoal); border-color: transparent; box-shadow: var(--shadow-gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s2); }
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); aspect-ratio: 1; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(30,15,0,0.62);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  opacity: 0; transition: opacity var(--dur) var(--ease); padding: var(--s2);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { color: var(--gold-400); font-size: 1.2rem; margin-bottom: 0.25rem; }
.gallery-item-overlay span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }

/* --- Product Cards ----------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-6px); border-color: var(--gold-400); }
.product-img { aspect-ratio: 1; overflow: hidden; background: var(--gold-pale); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-body { padding: var(--s2) var(--s2) var(--s3); text-align: center; }
.product-body h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.product-body .mat { font-size: 0.78rem; color: var(--charcoal-4); margin-bottom: 0.3rem; }
.product-body .price { color: var(--red-500); font-weight: 700; font-size: 1.05rem; }
.product-body .btn { margin-top: var(--s1); font-size: 0.72rem; padding: 0.55rem 1.3rem; }

/* --- Collection Description -------------------------------------- */
.coll-desc { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); align-items: center; }
.coll-desc-img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.coll-desc-img img { width: 100%; height: 100%; object-fit: cover; }
.coll-desc h2 { margin-bottom: var(--s2); }
.coll-desc p { color: var(--charcoal-4); margin-bottom: var(--s2); }
.feature-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: var(--s2); }
.feature-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--charcoal-3); }
.feature-list svg { color: var(--gold-500); flex-shrink: 0; }

/* --- Inquiry Banner ---------------------------------------------- */
.inquiry-banner {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  padding: var(--s7) var(--s5); text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.inquiry-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-gold);
}
.inquiry-banner h2 { color: var(--white); margin-bottom: var(--s2); }
.inquiry-banner p { color: rgba(255,255,255,0.75); margin-bottom: var(--s4); }

/* --- Contact ------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.contact-item {
  display: flex; gap: var(--s2); align-items: flex-start; margin-bottom: var(--s3);
}
.contact-info-item {
  display: flex; gap: var(--s2); align-items: flex-start; margin-bottom: var(--s3);
}
.contact-info-item .icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--gold-pale); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon svg { width: 19px; height: 19px; }
.contact-info-item h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { color: var(--charcoal-4); font-size: 0.93rem; }
.contact-info-item a:hover { color: var(--gold-600); }
.social-links { display: flex; gap: var(--s1); margin-top: var(--s1); }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal-4); transition: all var(--dur) var(--ease);
}
.social-links a:hover { background: var(--grad-gold); color: var(--charcoal); border-color: transparent; box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.social-links a svg { width: 17px; height: 17px; }

/* --- Forms ------------------------------------------------------- */
.form-group { margin-bottom: var(--s3); }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--charcoal-3); }
.form-control {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--white); font-size: 0.95rem;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.form-control:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.form-feedback { padding: var(--s2) var(--s3); border-radius: var(--radius); font-size: 0.9rem; margin-top: var(--s2); display: none; }
.form-feedback.show { display: block; }
.form-feedback.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-feedback.error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* --- Timeline ---------------------------------------------------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: var(--s4); }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--grad-gold); }
.timeline-item { position: relative; margin-bottom: var(--s5); }
.timeline-item::before {
  content: ''; position: absolute; left: -36px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-500); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-400);
}
.timeline-year { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-600); margin-bottom: 0.2rem; }
.timeline-item h4 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.timeline-item p { color: var(--charcoal-4); margin: 0; }

/* --- Values ------------------------------------------------------ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.value-card {
  text-align: center; padding: var(--s4) var(--s3);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.value-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-gold); transform: translateY(-5px); }
.value-icon {
  width: 70px; height: 70px; margin: 0 auto var(--s2);
  border-radius: 50%; background: var(--gold-pale);
  color: var(--gold-600); display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.value-card p { color: var(--charcoal-4); font-size: 0.93rem; margin: 0; }

/* --- Login ------------------------------------------------------- */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { position: relative; overflow: hidden; }
.auth-visual img { width: 100%; height: 100%; object-fit: cover; }
.auth-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,5,0.6), rgba(30,15,0,0.4));
  display: flex; flex-direction: column; justify-content: flex-end; padding: var(--s6);
  color: var(--white);
}
.auth-visual-overlay h2 { color: var(--white); margin-bottom: 0.4rem; }
.auth-visual-overlay p { color: rgba(255,255,255,0.8); }
.auth-form-side {
  display: flex; align-items: center; justify-content: center;
  padding: var(--s5); background: var(--cream);
}
.auth-form { width: 100%; max-width: 420px; }
.auth-form .logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--s4); }
.auth-form .logo-wrap img { width: 52px; height: 52px; border-radius: 50%; }
.auth-form .logo-wrap .brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--red-500); }
.auth-form .logo-wrap .brand-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-600); }
.auth-form h2 { margin-bottom: 0.3rem; }
.auth-form .sub { color: var(--charcoal-4); margin-bottom: var(--s3); }
.auth-alt { text-align: center; margin-top: var(--s2); font-size: 0.88rem; color: var(--charcoal-4); }
.auth-alt a { color: var(--gold-600); font-weight: 500; }

/* --- Footer ------------------------------------------------------ */
.site-footer { background: var(--charcoal); color: var(--charcoal-5); padding: var(--s8) 0 var(--s3); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s5); margin-bottom: var(--s6); }
.footer-brand .fb-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--s2); }
.footer-brand .fb-logo img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand .fb-logo .fb-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold-500); }
.footer-brand .fb-logo .fb-sub { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal-5); }
.footer-brand p { color: var(--charcoal-5); font-size: 0.9rem; max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-500); margin-bottom: var(--s2); }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--charcoal-5); font-size: 0.88rem; transition: color var(--dur); }
.footer-col a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: var(--s1); margin-top: var(--s2); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; color: var(--charcoal-5);
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--grad-gold); color: var(--charcoal); border-color: transparent; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--s3);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold-400); }

/* Newsletter */
.newsletter { display: flex; gap: var(--s1); margin-top: var(--s2); }
.newsletter input {
  flex: 1; padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm, 6px);
  background: rgba(255,255,255,0.05); color: var(--white);
  font-size: 0.85rem;
}
.newsletter input::placeholder { color: var(--charcoal-5); }
.newsletter input:focus { outline: none; border-color: var(--gold-500); }
.newsletter button {
  padding: 0 1.4rem; background: var(--grad-gold); color: var(--charcoal);
  border-radius: var(--radius-sm, 6px); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: opacity var(--dur);
}
.newsletter button:hover { opacity: 0.88; }

/* --- Scroll Reveal ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--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; }

/* --- Back to Top -------------------------------------------------- */
.back-to-top {
  position: fixed; bottom: var(--s3); right: var(--s3);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--dur) var(--ease); z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(212,175,55,0.5); }

/* --- Lightbox ---------------------------------------------------- */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(10,8,5,0.94);
  z-index: 5000; display: flex; align-items: center; justify-content: center;
  padding: var(--s4); opacity: 0; visibility: hidden; transition: opacity var(--dur), visibility var(--dur);
}
.lightbox-overlay.show { opacity: 1; visibility: visible; }
.lightbox-media img,
.lightbox-media video { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); }

/* Play button badge on video gallery cards */
.gallery-item .play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: transform var(--dur) var(--ease);
}
.gallery-item:hover .play-badge { transform: translate(-50%, -50%) scale(1.1); }
.lightbox-close {
  position: absolute; top: var(--s3); right: var(--s3);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur);
}
.lightbox-close:hover { background: var(--grad-gold); color: var(--charcoal); }

/* --- Utilities --------------------------------------------------- */
.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; }
.skip-link { position:absolute;left:-999px;top:0;background:var(--gold-500);color:var(--charcoal);padding:0.75rem 1.5rem;z-index:2000; }
.skip-link:focus { left:0; }

/* ---- Hero Background Carousel (added) ---- */
.hero-bg { overflow: hidden; }
.hero-bg img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease-in-out; }
.hero-bg img.active { opacity: 1; }

