/* ═══════════════════════════════════════════════════════
   SRI VISHNUPRIYA TEXTORIUM — style.css (Premium Edition)
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --navy:    #0b1a2d;
  --navy2:   #132238;
  --navy3:   #1c2f48;
  --navy4:   #24395a;

  --gold:    #b8892b;
  --gold2:   #d4a845;
  --gold3:   #ecce7e;
  --gold4:   #f7e6b8;

  --ivory:   #fbf6ec;
  --ivory2:  #f3ead9;
  --ivory3:  #ebe0cb;

  --text:    #14110a;
  --text2:   #2c2418;
  --muted:   #6b5844;
  --muted2:  #8a7560;

  --rose:    #9b3a5c;
  --teal:    #1d6b72;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 2px 8px rgba(11, 26, 45, 0.06);
  --shadow-md: 0 8px 28px rgba(11, 26, 45, 0.10);
  --shadow-lg: 0 22px 60px rgba(11, 26, 45, 0.16);
  --shadow-xl: 0 34px 90px rgba(11, 26, 45, 0.22);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold2)); border-radius: 3px; }

/* ── Utilities ───────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.section-title.light { color: var(--gold4); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 30px;
  max-width: 180px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-diamond {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(200, 146, 42, 0.5);
}

/* Shared icon sizing */
.icon-svg { width: 24px; height: 24px; stroke-width: 1.6; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Scroll-linked image reveal — simple fade+scale, no dark curtain */
.scroll-img {
  position: relative;
  overflow: hidden;
}

/* ── Bilingual ───────────────────────────────────────── */
[data-lang="te"] .en { display: none; }
[data-lang="en"] .te { display: none; }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.45s var(--ease-out-quart),
              box-shadow 0.45s var(--ease-out-quart),
              backdrop-filter 0.45s var(--ease-out-quart),
              padding 0.45s var(--ease-out-quart);
}
nav.at-top {
  background: linear-gradient(to bottom, rgba(11,26,45,0.35) 0%, rgba(11,26,45,0) 100%);
}
nav.scrolled {
  background: rgba(11, 26, 45, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(200, 146, 42, 0.22);
  box-shadow: 0 10px 48px rgba(0,0,0,0.38);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 76px;
  max-width: 1240px;
  margin: 0 auto;
  transition: height 0.4s var(--ease-out-quart);
}
nav.scrolled .nav-inner { height: 66px; }

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo {
  height: 42px;
  width: 42px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(236,206,126,0.25));
}
nav.scrolled .nav-logo { height: 34px; width: 34px; }
.nav-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(236, 206, 126, 0.6);
  font-weight: 500;
}

.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 9px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold2);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out-quart);
}
.nav-links a:hover { color: var(--gold3); }
.nav-links a:hover::after { width: calc(100% - 32px); }

.lang-toggle {
  display: flex;
  align-items: stretch; /* stretch to fill container perfectly */
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,146,42,0.28);
  border-radius: 10px;
  margin-left: 12px;
  /* Sub-pixel bug fix for iOS by removing overflow hidden and rounding children */
}
.lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 13px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(236, 206, 126, 0.55);
  transition: background 0.25s, color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.lang-btn:first-child { border-radius: 9px 0 0 9px; }
.lang-btn:last-child { border-radius: 0 9px 9px 0; }
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  text-decoration: none;
  margin-left: 10px;
  transition: transform 0.25s var(--ease-out-quart), box-shadow 0.25s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.32);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,0.5); }
.nav-cta svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════
   HERO — 5-Panel Portrait Mosaic
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

/* ── Moving Image Reel Grid (Collage) ─────────────────── */
.hero-reel-wrap {
  position: absolute;
  /* Overshoot the edges to hide clipping when scrolling */
  inset: -100px -20px;
  display: flex;
  gap: 12px;
  background: var(--navy);
  transform: rotate(-3deg) scale(1.05); /* Slight dynamic tilt for premium look */
  pointer-events: none;
}

.hero-reel-col {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}

.reel-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  will-change: transform;
}

.reel-set {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reel-set img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  /* Slight opacity for inactive vibe? No, scrim handles darkness */
}

/* Animations */
.animate-scroll-up .reel-inner {
  /* 50s duration for ultra-smooth slow drift */
  animation: scrollUp 50s linear infinite;
}
.animate-scroll-down .reel-inner {
  animation: scrollDown 55s linear infinite;
}

/* Pause animation on hover if we allowed pointer events (we disabled them above for the hero wrapper, but just in case) */
.hero-reel-wrap:hover .reel-inner {
  animation-play-state: paused;
}

/* 
  translate3d is used to enforce strictly GPU-accelerated repaints for 60fps smoothness.
  translateY is calculated to move exactly 50% of the inner height. 
  Because there are two identical sets, 50% is exactly 1 set + 1 gap.
  The 6px adjustment perfectly centers the gap logic so it's a seamless loop.
*/
@keyframes scrollUp {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, calc(-50% - 6px), 0); }
}

@keyframes scrollDown {
  0% { transform: translate3d(0, calc(-50% - 6px), 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* ── Dark scrim over the moving grid ── */
.hero-scrim {
  position: absolute;
  inset: 0;
  /* Dark vignette and linear gradient to ensure centered text is highly readable */
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(7,18,34,0.35) 0%, rgba(7,18,34,0.7) 100%),
    linear-gradient(180deg, rgba(7,18,34,0.6) 0%, rgba(7,18,34,0.2) 30%, rgba(7,18,34,0.2) 70%, rgba(7,18,34,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── Centered hero text ───────────────────────────────── */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  pointer-events: none;   /* clicks pass through to panels */
}
/* Re-enable pointer events on interactive children */
.hero-content a,
.hero-content button { pointer-events: auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(200,146,42,0.14);
  border: 1px solid rgba(200,146,42,0.48);
  backdrop-filter: blur(8px);
  color: var(--gold3);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 9px 26px;
  border-radius: 44px;
  margin-bottom: 32px;
  animation: fadeDown 1s ease both;
  font-weight: 500;
}
.hero-badge svg { width: 14px; height: 14px; stroke: var(--gold2); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 9.5vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.015em;
  animation: fadeUp 1s 0.2s ease both;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4), 0 0 80px rgba(0,0,0,0.3);
}
.hero-title .te {
  font-family: 'Noto Sans Telugu', sans-serif;
  font-size: clamp(2.6rem, 7.8vw, 5.8rem);
  font-weight: 700;
}
.hero-title-gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  padding-right: 0.12em; /* expand bounding box to prevent ligature cutoff */
}
.te .hero-title-gold {
  font-style: normal; /* Faux italics on complex scripts break webkit bounding boxes */
}

.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: rgba(247, 230, 184, 0.85);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 14px;
  animation: fadeUp 1s 0.35s ease both;
  font-weight: 500;
}

.hero-tagline {
  margin-top: 22px;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 520px;
  animation: fadeUp 1s 0.5s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.65s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 32px rgba(200,146,42,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.25s var(--ease-out-quart), box-shadow 0.25s;
}
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(200,146,42,0.55); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  padding: 13px 32px;
  border-radius: 11px;
  border: 1.5px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-outline svg { width: 16px; height: 16px; }
.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive — reel columns on narrow screens ──────── */
@media (max-width: 760px) {
  /* Show 3 columns on tablet */
  .hero-reel-col:nth-child(4) { display: none; }
}
@media (max-width: 480px) {
  /* Show 2 columns on mobile */
  .hero-reel-col:nth-child(3) { display: none; }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(11,26,45,0.15);
  border-bottom: 1px solid rgba(11,26,45,0.15);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  padding: 0 34px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.marquee-track span.dot { color: rgba(11,26,45,0.4); padding: 0; letter-spacing: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   COLLECTIONS — Premium grid with scroll-linked reveals
   ═══════════════════════════════════════════════════════ */
.collections-section {
  padding: 110px 0 120px;
  background: var(--ivory2);
  position: relative;
}
.collections-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(200,146,42,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(11,26,45,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.collections-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 24px;
  position: relative;
}
.collections-subtext {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.collections-scroll-wrapper {
  padding: 0 28px;
  position: relative;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}

.ccard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,26,45,0.06);
  border: 1px solid rgba(200,146,42,0.1);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  cursor: default;
}
.ccard:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.ccard-img {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.ccard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s var(--ease-out-expo);
  will-change: transform;
}
.ccard:hover .ccard-img img { transform: scale(1.08); }

.ccard-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,26,45,0.88) 0%, rgba(11,26,45,0.25) 45%, transparent 65%);
}

/* Scroll-revealed gold line accent on image */
.ccard-img::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width 0.9s var(--ease-out-expo) 0.2s;
  z-index: 3;
}
.ccard.visible .ccard-img::before { width: 100%; }

.ccard-label {
  position: absolute;
  bottom: 18px; left: 20px; right: 20px;
  z-index: 2;
}
.ccard-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.005em;
}
.ccard-label-sub {
  font-size: 0.7rem;
  color: var(--gold3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}

.ccard-body {
  padding: 22px 22px 26px;
}
.ccard-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ccard-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}
.ccard-body ul li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════════════
   WHY US — dark band
   ═══════════════════════════════════════════════════════ */
.why-section {
  padding: 110px 24px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 50%, rgba(155, 58, 92, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(29, 107, 114, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(200,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-head { text-align: center; margin-bottom: 40px; position: relative; }

/* Heritage stats bar */
.heritage-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.22);
  border-radius: 18px;
  padding: 28px 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.heritage-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.45), transparent);
}
.hstat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.hstat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hstat-plus {
  font-size: 1.3rem;
  color: var(--gold3);
  vertical-align: super;
}
.hstat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,230,184,0.5);
  margin-top: 6px;
  font-weight: 500;
}
.hstat-sep {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(200,146,42,0.35), transparent);
  flex-shrink: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.wcard {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(200,146,42,0.18);
  border-radius: 18px;
  padding: 36px 26px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}
.wcard::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  transition: width 0.5s var(--ease-out-quart);
}
.wcard:hover {
  background: rgba(200,146,42,0.06);
  border-color: rgba(200,146,42,0.4);
  transform: translateY(-6px);
}
.wcard:hover::before { width: 80%; }

.wcard-icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200,146,42,0.14), rgba(200,146,42,0.04));
  border: 1px solid rgba(200,146,42,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  transition: transform 0.3s, background 0.3s;
}
.wcard:hover .wcard-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(200,146,42,0.22), rgba(200,146,42,0.08));
}
.wcard-icon svg { width: 28px; height: 28px; stroke-width: 1.6; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }

.wcard h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold4);
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
.wcard p { color: rgba(247, 230, 184, 0.6); font-size: 0.88rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about-section {
  padding: 110px 24px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.about-text p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}
.about-text p strong { color: var(--text); font-weight: 600; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}
.hcard {
  background: #fff;
  border: 1px solid rgba(200,146,42,0.15);
  border-radius: 14px;
  padding: 18px 16px;
  transition: transform 0.25s var(--ease-out-quart), box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,146,42,0.35);
}
.hcard .hc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,146,42,0.16), rgba(200,146,42,0.04));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hcard .hc-icon svg { width: 18px; height: 18px; stroke-width: 1.7; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.hcard strong { display: block; color: var(--navy); font-size: 0.88rem; }
.hcard span { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

.about-visual { position: relative; }

/* Photo collage replacing the text card */
.about-collage {
  position: relative;
  display: flex;
  gap: 12px;
  height: 480px;
}
.collage-main {
  flex: 1.4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.collage-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out-expo);
}
.collage-main:hover img { transform: scale(1.04); }

.collage-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.collage-thumb {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.collage-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out-expo);
}
.collage-thumb:hover img { transform: scale(1.06); }

/* Est. badge on collage */
.collage-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.cb-year {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: -0.01em;
}
.cb-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236,206,126,0.6);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT — Premium Icon buttons with SVG
   ═══════════════════════════════════════════════════════ */
.contact-section {
  padding: 110px 24px;
  background: linear-gradient(180deg, var(--ivory2) 0%, var(--ivory3) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.3), transparent);
}
.contact-head { text-align: center; margin-bottom: 60px; }
.contact-subtext {
  color: var(--muted);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

/* Store hours */
.store-hours-card {
  background: #fff;
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.store-hours-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.sh-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,146,42,0.14), rgba(200,146,42,0.04));
  border: 1px solid rgba(200,146,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.sh-icon svg { width: 22px; height: 22px; stroke-width: 1.6; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }

.sh-content { flex: 1; }
.sh-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.sh-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.sh-days {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 3px;
}

/* Address */
.store-address {
  background: #fff;
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.store-address:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.addr-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,146,42,0.14), rgba(200,146,42,0.04));
  border: 1px solid rgba(200,146,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.addr-icon svg { width: 22px; height: 22px; stroke-width: 1.6; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }

.addr-content { flex: 1; }
.addr-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.addr-text {
  font-size: 1.02rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.55;
}
.addr-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 3px;
}

/* Contact Icon Buttons — using SVG image files */
.contact-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-icon-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(200,146,42,0.2);
  background: #fff;
  transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact-icon-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.06), transparent);
  transition: left 0.5s var(--ease-out-quart);
}
.contact-icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,146,42,0.55);
}
.contact-icon-btn:hover::before { left: 100%; }

/* Icon wrap — clean neutral tile, lets the branded SVG show its own colors */
.cib-icon-wrap {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory2);
  border: 1px solid rgba(200,146,42,0.14);
  transition: transform 0.3s var(--ease-out-quart), background 0.3s;
  overflow: hidden;
  padding: 8px;
}
.contact-icon-btn:hover .cib-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
  background: #fff;
}

/* Phone icon: SVG is black paths — give it a subtle green-tinted bg */
.cib-phone-wrap { background: #eaf7ec; border-color: rgba(42, 170, 72, 0.2); }
.cib-phone:hover .cib-phone-wrap { background: #d6f4dc; }

/* WhatsApp and Instagram and Maps: SVGs are already full-color — neutral bg */
.cib-whats-wrap { background: #eafaf0; border-color: rgba(37, 211, 102, 0.2); }
.cib-whats:hover .cib-whats-wrap { background: #d4f5e4; }

.cib-insta-wrap { background: #fdf0f7; border-color: rgba(216, 45, 126, 0.18); }
.cib-insta:hover .cib-insta-wrap { background: #fce4f2; }

.cib-maps-wrap { background: #eef3fd; border-color: rgba(26, 115, 232, 0.18); }
.cib-maps:hover .cib-maps-wrap { background: #dde9fc; }

/* SVG img inside icon wrap */
.cib-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.cib-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.cib-label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.cib-sublabel {
  font-size: 0.71rem;
  color: var(--muted);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cib-arrow {
  color: var(--muted2);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}
.cib-arrow svg { width: 15px; height: 15px; }
.contact-icon-btn:hover .cib-arrow { transform: translateX(4px); color: var(--gold); }

/* ── Google Maps Square — fully clickable ─────────────── */
.map-square-link {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,146,42,0.28);
  transition: box-shadow 0.35s var(--ease-out-quart), transform 0.35s var(--ease-out-quart), border-color 0.35s;
}
.map-square-link:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: rgba(200,146,42,0.55);
}

.map-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;   /* wide rectangle */
  background: var(--ivory2);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  display: block;
  border: none;
  pointer-events: none;   /* clicks fall through to the overlay */
}

/* Transparent overlay — captures all clicks on the map square */
.map-click-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(11,26,45,0.55) 0%, transparent 45%);
  transition: background 0.35s;
}
.map-square-link:hover .map-click-overlay {
  background: linear-gradient(to top, rgba(11,26,45,0.72) 0%, rgba(11,26,45,0.12) 55%);
}

.map-click-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(200,146,42,0.3);
  box-shadow: 0 8px 28px rgba(11,26,45,0.22);
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s;
  width: 100%;
}
.map-square-link:hover .map-click-badge {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,26,45,0.3);
}

.map-badge-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.map-badge-text {
  flex: 1;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.map-badge-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.map-square-link:hover .map-badge-arrow { transform: translateX(4px); }

/* Address bar below the map square */
.map-label-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  padding: 13px 20px;
  color: var(--gold3);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: background 0.25s;
}
.map-square-link:hover .map-label-bar { background: var(--navy3); }

.map-label-pin {
  width: 18px; height: 18px;
  flex-shrink: 0;
  object-fit: contain;
  /* The pin SVG is dark — invert to white for navy bar */
  filter: invert(1) brightness(2) sepia(1) hue-rotate(10deg) saturate(3);
  opacity: 0.9;
}
.map-ext-icon {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: rgba(236,206,126,0.55);
  margin-left: auto;
  transition: color 0.25s, transform 0.25s;
}
.map-square-link:hover .map-ext-icon { color: var(--gold2); transform: translate(2px, -2px); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: #060c15;
  color: rgba(236,206,126,0.72);
  text-align: center;
  padding: 54px 24px 42px;
  font-size: 0.84rem;
  border-top: 1px solid rgba(200,146,42,0.12);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-logo {
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 10px rgba(236,206,126,0.35));
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--gold2);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.footer-sep {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}
footer a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
footer a:hover { color: var(--gold3); }
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 20px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(200,146,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.footer-socials a:hover {
  background: rgba(200,146,42,0.1);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.footer-social-img {
  width: 20px; height: 20px;
  object-fit: contain;
  display: block;
}
/* Call icon is black — tint it gold to match footer palette */
.footer-social-dark {
  filter: invert(70%) sepia(40%) saturate(600%) hue-rotate(10deg) brightness(1.1);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* Why grid — 2 col on mid tablet */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 960px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-visual { order: -1; }
  .about-collage { height: 360px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .collections-section, .why-section, .about-section, .contact-section { padding-top: 80px; padding-bottom: 80px; }
  .heritage-bar { padding: 22px 24px; }
  .hstat { padding: 0 12px; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 0.78rem !important; margin-left: 6px; }
  .nav-inner { padding: 0 20px; }

  .hero { height: 92vh; min-height: 560px; }
  .hero-content { padding: 90px 20px 60px; }
  .hero-dots { bottom: 28px; }

  .heritage-bar { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .hstat-sep { display: none; }
  .hstat { flex: 0 0 40%; padding: 0 8px; }
  .why-grid { grid-template-columns: 1fr; }

  /* Collections — horizontal scroll */
  .collections-scroll-wrapper {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .collections-scroll-wrapper::-webkit-scrollbar { display: none; }
  .collections-grid {
    display: flex;
    gap: 16px;
    padding: 0 20px 18px;
    width: max-content;
  }
  .ccard { width: 260px; flex-shrink: 0; }
  .ccard-img { height: 260px; }

  .about-collage { height: 280px; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .contact-icons { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  .lang-toggle { margin-left: 6px; }
  .lang-btn { padding: 5px 9px; font-size: 0.68rem; }
  .nav-brand-name { font-size: 1.05rem; }
  .nav-brand-sub { font-size: 0.52rem; }
  .nav-logo { height: 32px; width: 32px; }
  .hero-title { font-size: clamp(2.3rem, 9vw, 3.2rem); }
  .about-highlights { grid-template-columns: 1fr; }
  .store-hours-card, .store-address { padding: 20px 22px; gap: 14px; }
  .about-collage { flex-direction: column; height: auto; gap: 10px; }
  .collage-side { flex-direction: row; height: 150px; }
  .collage-main { height: 260px; flex: none; }
}
