/* ============================================================
   SMARANIYA — Editorial black & white with gold finish
   Near-black / warm white · brass & heritage gold trim · ornate lines
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,900&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=IM+Fell+English:ital@0;1&display=swap');

@font-face {
  font-family: 'Badhorse';
  src: url('../assets/fonts/Badhorse-Font/Badhorse-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Core palette — names kept; gold* = real metallic / heritage tones */
  --cream:         #FFF;
  --cream-light:   #FFF;
  --parchment:     #FFF;
  --parchment-dk:  #FFF;
  --gold:          #9A7B2E;
  --gold-light:    #C9A44A;
  --gold-pale:     #E8DCC4;
  --gold-dark:     #4A3A1A;
  --amber:         #8B7355;
  --brown:         #4A3F32;
  --dark-brown:    #1A1815;
  --espresso:      #121110;
  --ink:           #0A0908;
  --sage:          #3A3A3A;
  --rust:          #3D3020;

  /* Semantic */
  --bg-body:       #FFF;
  --bg-section-lt: #FFF;
  /* Deeper alternation (optional); warm brown-grey — not pure black */
  --bg-section-dk: #2E2923;
  --bg-warm-rose:  #EDE4D3;
  --bg-ember:      #E8DFD0;
  --text-dark:     #1A1815;
  --text-med:      #3D3A35;
  --text-light:    #6B655C;
  --border-gold:   rgba(154, 123, 46, 0.22);
  --border-gold-strong: rgba(154, 123, 46, 0.42);
  /* Soft gold glow for hovers & ornaments (rgb form for shadows) */
  --gold-glow:     rgba(201, 164, 74, 0.35);
  --gold-veil:     rgba(201, 164, 74, 0.06);

  /* Transitions */
  --trans:      all 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  --trans-fast: all 0.22s ease;
}

/* ============================================================
   CSS VARIABLE ALIASES (backward compatibility)
   ============================================================ */
:root {
  --text-medium:   #3D3A35;   /* alias for --text-med */
  --light-cream:   #FAF7F0;   /* alias for --cream-light */
  --border-color:  rgba(154, 123, 46, 0.22);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background-color: var(--bg-body);
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-body);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -15%, var(--gold-veil) 0%, transparent 52%),
    linear-gradient(180deg, #FDFCF9 0%, #F5F0E6 100%);
  min-height: 100vh;
  line-height: 1.78;
  /* Use clip, not hidden — overflow-x: hidden on body breaks position: sticky for the navbar in many browsers */
  overflow-x: clip;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown);
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
a { color: var(--gold-dark); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

::selection {
  background: rgba(201, 164, 74, 0.28);
  color: #1A1815;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #EDE8DF; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4B45A, var(--gold) 40%, #6B5520);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #000000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }

.preloader-emblem {
  position: relative;
  width: 110px; height: 110px;
  border: 1px solid rgba(201, 164, 74,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
}
.preloader-emblem::before {
  content: '';
  position: absolute; inset: 7px;
  border: 1px solid rgba(201, 164, 74,0.12);
  border-radius: 50%;
}
.preloader-emblem-spin {
  position: absolute; inset: -3px;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinSlow 3s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.preloader-brand-mark {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.preloader-logo {
  font-family: 'IM Fell English', serif;
  font-size: 2.4rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-shadow: 0 0 40px rgba(201, 164, 74,0.5);
  animation: glowPulse 2s ease-in-out infinite;
}
.preloader-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(201, 164, 74,0.5);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.preloader-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 1.8rem;
  animation: expandLine 1.5s 0.4s ease forwards;
}
@keyframes expandLine { to { width: 220px; } }
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 25px rgba(201, 164, 74,0.3); }
  50%      { text-shadow: 0 0 60px rgba(201, 164, 74,0.85), 0 0 100px rgba(201, 164, 74,0.2); }
}

/* ============================================================
   PARTICLES — subtle light specks (hero only)
   ============================================================ */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.particle {
  position: absolute; bottom: -10px;
  width: 3px; height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
.particle:nth-child(1)  { left:  8%; animation-duration: 9s;  animation-delay: 0s;   width:2px;height:2px; }
.particle:nth-child(2)  { left: 18%; animation-duration: 12s; animation-delay: 2s;   width:4px;height:4px;background:rgba(201, 164, 74,0.5); }
.particle:nth-child(3)  { left: 28%; animation-duration: 8s;  animation-delay: 1s; }
.particle:nth-child(4)  { left: 40%; animation-duration: 14s; animation-delay: 3.5s; width:2px;height:2px; }
.particle:nth-child(5)  { left: 52%; animation-duration: 10s; animation-delay: 0.7s; width:5px;height:5px;background:rgba(215, 198, 160,0.4); }
.particle:nth-child(6)  { left: 63%; animation-duration: 11s; animation-delay: 4s; }
.particle:nth-child(7)  { left: 75%; animation-duration: 9s;  animation-delay: 1.5s; width:2px;height:2px; }
.particle:nth-child(8)  { left: 85%; animation-duration: 13s; animation-delay: 2.8s; }
.particle:nth-child(9)  { left: 94%; animation-duration: 8s;  animation-delay: 0.4s; width:2px;height:2px; }
@keyframes floatParticle {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 0.9; }
  85%  { opacity: 0.2; }
  100% { transform: translateY(-100vh) translateX(15px) scale(0); opacity: 0; }
}

/* ============================================================
   CORNER ORNAMENTS
   ============================================================ */
.corners-frame {
  position: absolute; inset: 24px;
  pointer-events: none; z-index: 3;
}
.corners-frame::before, .corners-frame::after,
.corners-frame > span::before, .corners-frame > span::after {
  content: ''; position: absolute;
  width: 60px; height: 60px;
  border-color: rgba(201, 164, 74,0.55);
  border-style: solid;
}
.corners-frame::before  { top:0;    left:0;  border-width: 2px 0 0 2px; }
.corners-frame::after   { top:0;    right:0; border-width: 2px 2px 0 0; }
.corners-frame > span::before { bottom:0; left:0;  border-width: 0 0 2px 2px; }
.corners-frame > span::after  { bottom:0; right:0; border-width: 0 2px 2px 0; }

/* ============================================================
   HERO SWIPER — Full screen slider
   ============================================================ */
.hero-swiper-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Decorative corners — above everything */
.hero-sw-corners {
  position: absolute; inset: 24px; z-index: 30; pointer-events: none;
}

/* Swiper fills the section completely */
.hero-swiper {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}

/* Each slide is a full-screen panel */
.hero-sw-slide {
  height: 100vh;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  text-align: center;
}

/* Slide background image via CSS variable */
.hero-sw-bg {
  position: absolute; inset: 0;
  background: #000 var(--slide-bg, none) center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  z-index: 0;
}
.swiper-slide-active .hero-sw-bg { transform: scale(1); }

/* Dark gradient overlay */
.hero-sw-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6)  0%,
    rgba(0,0,0,0.3) 35%,
    rgba(0,0,0,0.5) 65%,
    rgba(0,0,0,0.82) 100%
  );
}

/* Particles inside each slide */
.hero-sw-slide .hero-particles { z-index: 2; }

/* All content sits above bg + overlay */
.hero-sw-content {
  position: relative; z-index: 5;
  width: 100%;
  padding: 10.5rem 1rem 8rem; /* top room for larger navbar + logo overlap */
  display: flex; flex-direction: column; align-items: center;
}

/* Brand identity block */
.hero-sw-brand-inner {
  display: flex; flex-direction: column; align-items: center;
}
.hero-sw-lang {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(0.82rem, 2vw, 1.1rem);
  color: rgba(215, 198, 160,0.55);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Per-slide dynamic text — animates on transition */
.hero-sw-dynamic {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.75s ease 0.25s, transform 0.75s ease 0.25s;
  width: 100%;
}
.swiper-slide-active .hero-sw-dynamic {
  opacity: 1; transform: translateY(0);
}
.hero-sw-badge {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: rgba(215, 198, 160,0.62);
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Navigation arrows */
.hero-sw-nav {
  position: absolute; top: 50%; z-index: 25;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(201, 164, 74,0.35);
  color: var(--gold-light);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.28s ease;
}
.hero-sw-nav:hover {
  background: rgba(201, 164, 74,0.18);
  border-color: var(--gold);
  color: #fff;
}
.hero-sw-prev { left: 1.5rem; }
.hero-sw-next { right: 1.5rem; }

/* Pagination dots */
.hero-sw-pagination {
  position: absolute; bottom: 5.5rem; left: 50% !important;
  transform: translateX(-50%); z-index: 25;
  display: flex !important; gap: 0.5rem;
  width: auto !important;
}
.hero-sw-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(201, 164, 74,0.4);
  border-radius: 50%; opacity: 1;
  transition: all 0.3s ease; cursor: pointer;
  margin: 0 !important;
}
.hero-sw-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.5);
}

/* Stats bar — pinned to very bottom of section */
.hero-swiper-section .hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 25;
}
.hero-swiper-section .hero-scroll-indicator {
  position: absolute; right: 2rem; bottom: 5rem; z-index: 25;
}

/* ── Hero mobile responsive ─────────────────────────────── */
@media (max-width: 991px) {
  .hero-swiper-section,
  .hero-sw-slide {
    /* dvh works on modern browsers and avoids iOS toolbar overlap */
    min-height: 100svh;
  }
  .hero-sw-content {
    padding: 5.5rem 1.25rem 6.5rem;
  }
  .hero-stats-bar { gap: 0; }
  .hero-stat { padding: 0 1rem; }
}

@media (max-width: 767px) {
  .hero-sw-nav { display: none; }

  .hero-sw-content {
    padding: 5rem 1rem 5.5rem;
    justify-content: center;
  }

  /* Brand logo — tighter on tablets */
  .hero-brand-logo {
    width: clamp(200px, 68vw, 560px);
  }

  /* Tagline */
  .hero-tagline {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
  }

  /* Subheading — single line; scroll if overflow on narrow screens */
  .hero-sub {
    letter-spacing: 0.08em;
    font-size: clamp(0.55rem, calc(0.38rem + 0.9vw), 0.7rem);
    margin-bottom: 2rem;
    padding: 0.55rem 1rem;
    max-width: min(94vw, 100%);
    line-height: 1.25;
  }

  /* Buttons — stack vertically, full width on small tablet */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.82rem;
  }

  /* Stats bar — show only 2 items, hide rest */
  .hero-stats-bar {
    flex-wrap: nowrap;
    overflow: hidden;
    padding-top: 1rem;
  }
  .hero-stat:nth-child(n+3) { display: none; }
  .hero-stat { padding: 0 1.4rem; }

  /* Hide scroll indicator on mobile */
  .hero-scroll-indicator { display: none; }

  /* Pagination dots — move up slightly */
  .hero-sw-pagination { bottom: 4rem; }
}

@media (max-width: 575px) {
  .hero-swiper-section,
  .hero-sw-slide {
    height: 100svh;
    min-height: 560px;
  }

  .hero-sw-content {
    padding: 4.5rem 1rem 5rem;
  }

  /* Brand logo — prevent overflow on very small phones */
  .hero-brand-logo {
    width: clamp(180px, 88vw, 420px);
  }

  /* Sanskrit line */
  .hero-sw-lang {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
  }

  /* Tagline */
  .hero-tagline {
    font-size: clamp(1rem, 5.5vw, 1.4rem);
    line-height: 1.35;
  }

  /* Subheading */
  .hero-sub {
    letter-spacing: 0.06em;
    font-size: clamp(0.5rem, calc(0.08rem + 2.85vw), 0.7rem);
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
  }

  /* Badge */
  .hero-sw-badge {
    letter-spacing: 0.15em;
    font-size: 0.68rem;
    margin-bottom: 0.4rem;
  }

  /* Divider */
  .hero-divider { margin: 0.8rem 0; gap: 0.8rem; }
  .hero-divider-line { width: 60px; }

  /* Stamp */
  .hero-stamp { display: none; }

  /* Buttons */
  .hero-ctas {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .hero-ctas .btn {
    max-width: 260px;
    padding: 0.65rem 1.2rem !important;
    font-size: 0.78rem;
  }

  /* Stats bar — hide completely on very small phones to reclaim space */
  .hero-stats-bar { display: none; }

  /* Corners decorative frame — hide on mobile */
  .hero-sw-corners { display: none; }

  /* Pagination lower */
  .hero-sw-pagination { bottom: 1.5rem; }
}

/* ============================================================
   HERO — Full screen dramatic vintage (legacy static, kept for reference)
   ============================================================ */
.hero-master {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: clip; /* clip scrollbar without hiding hero text */
}
.hero-master-bg {
  position: absolute; inset: 0;
  background-color: #000000;
  background-image:
    radial-gradient(ellipse 130% 120% at 50% 50%, rgba(201, 164, 74,0.12) 0%, #000 70%);
}
.hero-master-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%,
      rgba(26,13,2,0.45) 0%,
      rgba(17,8,0,0.82) 55%,
      rgba(17,8,0,0.97) 100%);
  z-index: 1;
}
/* Subtle warm texture bands on hero */
.hero-master-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(201, 164, 74,0.015) 3px,
    rgba(201, 164, 74,0.015) 4px
  );
}
.hero-master-content {
  position: relative; z-index: 4;
  text-align: center;
  padding: 3rem 1rem;
  max-width: 98vw; width: 100%;
}

/* Hero rotating seal/stamp */
.hero-stamp {
  width: 92px; height: 92px;
  border: 1px solid rgba(201, 164, 74,0.4);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 2.2rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  animation: rotateSlow 26s linear infinite;
  position: relative;
}
.hero-stamp::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(201, 164, 74,0.2);
  border-radius: 50%;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* Brand logo — center banner wordmark image */
.hero-brand-name {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: visible;
  max-width: 100%;
  width: 100%;
}
.hero-brand-logo {
  display: block;
  margin: 0 auto;
  width: clamp(220px, 72vw, 680px);
  max-width: 92%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-divider { display:flex; align-items:center; justify-content:center; gap:1.4rem; margin:1.4rem 0; }
.hero-divider-line { width:120px; height:1px; background:linear-gradient(90deg,transparent,rgba(201, 164, 74,0.7),transparent); }
.hero-divider-icon { color:var(--gold-light); font-size:1.1rem; animation:glowPulse 3s ease-in-out infinite; }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.6rem; line-height: 1.45;
}
.hero-sub {
  position: relative;
  display: inline-block;
  max-width: min(96vw, 58rem);
  margin: 0 auto 2.8rem;
  padding: 0.7rem 1.35rem;
  font-size: clamp(0.62rem, calc(0.42rem + 1.05vw), 0.7rem);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 250, 242, 0.98);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95);
  background: rgba(10, 7, 4, 0.82);
  border: none;
  border-radius: 0;
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-overflow-scrolling: touch;
}

/* Decorative corner brackets instead of full border */
.hero-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  --hb: rgba(210, 175, 90, 0.95);
  --hl: 14px;
  --ht: 1px;
  background:
    linear-gradient(var(--hb), var(--hb)) left top / var(--hl) var(--ht) no-repeat,
    linear-gradient(var(--hb), var(--hb)) left top / var(--ht) var(--hl) no-repeat,
    linear-gradient(var(--hb), var(--hb)) right top / var(--hl) var(--ht) no-repeat,
    linear-gradient(var(--hb), var(--hb)) right top / var(--ht) var(--hl) no-repeat,
    linear-gradient(var(--hb), var(--hb)) left bottom / var(--hl) var(--ht) no-repeat,
    linear-gradient(var(--hb), var(--hb)) left bottom / var(--ht) var(--hl) no-repeat,
    linear-gradient(var(--hb), var(--hb)) right bottom / var(--hl) var(--ht) no-repeat,
    linear-gradient(var(--hb), var(--hb)) right bottom / var(--ht) var(--hl) no-repeat;
}
.hero-sub::-webkit-scrollbar {
  display: none;
  height: 0;
}
.hero-ctas { display:flex; justify-content:center; gap:1.1rem; flex-wrap:wrap; margin-bottom:3.5rem; }

/* Stats bar */
.hero-stats-bar {
  display:flex; justify-content:center;
  border-top: 1px solid rgba(201, 164, 74,0.15);
  padding-top: 1.8rem; flex-wrap: wrap;
}
.hero-stat { padding:0 2.8rem; border-right:1px solid rgba(201, 164, 74,0.15); text-align:center; }
.hero-stat:last-child { border-right:none; }
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem; color: var(--gold-light);
  line-height: 1; font-weight: 700;
}
.hero-stat-lbl {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.74rem, 1.15vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 242, 228, 0.94);
  margin-top: 0.45rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  z-index:5; display:flex; flex-direction:column; align-items:center; gap:0.5rem;
}
.scroll-line { width:1px; height:48px; background:linear-gradient(180deg,var(--gold),transparent); animation:scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown {
  0%   { transform:scaleY(0); transform-origin:top; opacity:0; }
  50%  { transform:scaleY(1); transform-origin:top; opacity:1; }
  100% { transform:scaleY(1); transform-origin:bottom; opacity:0; }
}
.scroll-text { font-size:0.58rem; letter-spacing:0.35em; text-transform:uppercase; color:rgba(201, 164, 74,0.45); }

/* ============================================================
   CSS PAPER TEAR DIVIDER (replaces img-based torn divider)
   ============================================================ */
.torn-divider {
  display: block; width: 100%;
  position: relative; z-index: 5;
  overflow: hidden; line-height: 0;
  height: 80px;
  background: var(--parchment-dk);
}
.torn-divider::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--bg-body);
  clip-path: polygon(
    0% 100%, 0% 55%,
    2% 48%, 4% 55%, 6% 42%, 8% 52%, 10% 38%,
    12% 50%, 14% 44%, 16% 58%, 18% 42%, 20% 54%,
    22% 40%, 24% 52%, 26% 38%, 28% 56%, 30% 44%,
    32% 60%, 34% 46%, 36% 58%, 38% 42%, 40% 56%,
    42% 44%, 44% 60%, 46% 48%, 48% 62%, 50% 46%,
    52% 58%, 54% 44%, 56% 56%, 58% 42%, 60% 54%,
    62% 40%, 64% 52%, 66% 38%, 68% 50%, 70% 44%,
    72% 58%, 74% 42%, 76% 56%, 78% 44%, 80% 58%,
    82% 46%, 84% 58%, 86% 44%, 88% 52%, 90% 42%,
    92% 54%, 94% 46%, 96% 56%, 98% 50%, 100% 60%,
    100% 100%
  );
}
/* Keep img-based torn divider working too */
.torn-divider img { width:100%; height:100px; object-fit:cover; object-position:center; display:block; filter:brightness(0.8) sepia(15%); }

/* ============================================================
   MARQUEE STRIP — warm parchment band (not black)
   ============================================================ */
.marquee-strip {
  background: linear-gradient(90deg, #F5F0E6 0%, #EDE4D0 20%, #E8DFD0 50%, #EDE4D0 80%, #F5F0E6 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}
.marquee-strip-content { padding:1rem 0; display:flex; align-items:center; overflow:hidden; }
.marquee-track { display:flex; animation:marqueeScroll 38s linear infinite; white-space:nowrap; }
.marquee-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.08rem;
  color: var(--gold-dark); letter-spacing: 0.14em;
  padding: 0 2.2rem; display: flex; align-items: center; gap: 1.6rem; flex-shrink: 0;
}
.marquee-dot { color: var(--gold); font-size: 0.5rem; vertical-align: middle; }
@keyframes marqueeScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ============================================================
   SECTION LAYOUTS
   ============================================================ */
.section-padding    { padding: 5.5rem 0; }
.section-padding-lg { padding: 7.5rem 0; }

/* Light aged-paper sections — warm white with faint gold paper grain */
.sec-parchment {
  background-color: var(--bg-section-lt);
  /* background-image:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(201, 164, 74, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #FDFCF9 0%, #FAF6EE 100%); */
  position: relative;
}
/* Gold hairline at top of parchment sections */
.sec-parchment::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.35), transparent);
  pointer-events: none;
}

/* “Dark” section name kept for HTML compatibility — now a warm alternate band (minimal black) */
.sec-dark {
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(201, 164, 74, 0.14) 0%, transparent 52%),
    linear-gradient(180deg, #F1ECDF 0%, #E4DBCA 100%);
  color: var(--text-dark);
  position: relative;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.sec-dark::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light) 20%, #E8C76B 50%, var(--gold-light) 80%, transparent);
  pointer-events: none;
  opacity: 0.9;
}
.sec-dark > * { position: relative; z-index: 1; }
.sec-dark .container { position: relative; z-index: 1; }
.sec-dark h1,.sec-dark h2,.sec-dark h3,.sec-dark h4,.sec-dark h5 {
  color: var(--dark-brown);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}
.sec-dark p { color: var(--text-med); }
.sec-dark .section-subtitle { color: var(--text-med); }

/* Mid-tone “warm” sections — same family, slightly deeper paper */
.sec-warm-dark {
  background: linear-gradient(180deg, #EAE2D2 0%, #DED2BF 100%);
  color: var(--text-dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.sec-warm-dark h1,.sec-warm-dark h2,.sec-warm-dark h3 { color: var(--dark-brown); }
.sec-warm-dark p { color: var(--text-med); }

/* True black band (use with .sec-dark on a section) — e.g. How We Curate */
.sec-dark.sec-ink {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(201, 164, 74, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, #0f0e0c 0%, #0a0a08 100%);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(201, 164, 74, 0.28);
  border-bottom: 1px solid rgba(201, 164, 74, 0.28);
}
.sec-ink h1, .sec-ink h2, .sec-ink h3, .sec-ink h4, .sec-ink h5,
.sec-ink .section-title {
  color: #fff !important;
  text-shadow: none;
}
.sec-ink .section-badge { color: var(--gold-light) !important; }
.sec-ink p { color: rgba(255, 255, 255, 0.75); }
.sec-ink .section-subtitle { color: rgba(255, 255, 255, 0.68) !important; }
/* Dark cards on black — inverted panels, gold accents */
.sec-ink .process-card {
  background: linear-gradient(165deg, #161412 0%, #0e0d0b 100%);
  border: 1px solid rgba(201, 164, 74, 0.22);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.sec-ink .process-card h4 {
  color: var(--gold-pale) !important;
  text-shadow: 0 0 20px rgba(201, 164, 74, 0.12);
}
.sec-ink .process-card p {
  color: rgba(240, 232, 216, 0.68) !important;
}
.sec-ink .process-number {
  color: rgba(255, 255, 255, 0.06);
}
.sec-ink .process-card:hover {
  background: linear-gradient(165deg, #1c1916 0%, #121110 100%);
  border-color: rgba(201, 164, 74, 0.45);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 164, 74, 0.1);
}
.sec-ink .process-card:hover .process-number {
  color: rgba(201, 164, 74, 0.12);
}
.sec-ink .process-icon {
  border-color: rgba(201, 164, 74, 0.4);
  color: var(--gold-light);
  background: rgba(201, 164, 74, 0.08);
}
.sec-ink .process-card:hover .process-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(201, 164, 74, 0.45);
}
.sec-ink .process-card::after {
  border-bottom-color: rgba(201, 164, 74, 0.2);
  border-right-color: rgba(201, 164, 74, 0.2);
}
.sec-ink .btn-vintage:not(.btn-vintage-fill):not(.btn-vintage-gold):not(.btn-whatsapp) {
  border-color: rgba(201, 164, 74, 0.55) !important;
  color: var(--gold-light) !important;
}
.sec-ink .btn-vintage::before { background: rgba(201, 164, 74, 0.12) !important; }
.sec-ink .btn-vintage:hover {
  border-color: var(--gold) !important;
  color: var(--gold-pale) !important;
}

/* ============================================================
   OUR APPROACH — light grey section
   ============================================================ */
.sec-approach {
  background: #F4F5F7;
  border-top: 1px solid rgba(201, 164, 74, 0.2);
  border-bottom: 1px solid rgba(201, 164, 74, 0.2);
  position: relative;
}
.sec-approach::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.5) 30%, var(--gold) 50%, rgba(201, 164, 74, 0.5) 70%, transparent);
  pointer-events: none;
}
.sec-approach > * { position: relative; z-index: 1; }
/* Headings */
.sec-approach .section-title  { color: #1A1815; }
.sec-approach .section-badge  { color: var(--gold-dark) !important; }
.sec-approach p,
.sec-approach .section-subtitle { color: #4A4640; }
.sec-approach .ornament-line  { background: rgba(201, 164, 74, 0.35); }
.sec-approach .ornament-symbol { color: var(--gold-dark); }
/* Cards */
.sec-approach .process-card {
  background: #ffffff;
  border: 1px solid rgba(201, 164, 74, 0.25);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.sec-approach .process-card h4 {
  color: #1A1815 !important;
}
.sec-approach .process-card p {
  color: #5A5650 !important;
}
.sec-approach .process-number {
  color: rgba(180, 140, 60, 0.1);
}
.sec-approach .process-card:hover {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.sec-approach .process-card:hover .process-number {
  color: rgba(201, 164, 74, 0.18);
}
.sec-approach .process-icon {
  border-color: rgba(201, 164, 74, 0.4);
  color: var(--gold-dark);
  background: rgba(201, 164, 74, 0.08);
}
.sec-approach .process-card:hover .process-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(201, 164, 74, 0.4);
}
.sec-approach .process-card::after {
  border-bottom-color: rgba(201, 164, 74, 0.2);
  border-right-color: rgba(201, 164, 74, 0.2);
}
/* Bottom button */
.sec-approach .btn-vintage {
  border-color: rgba(58, 28, 8, 0.45) !important;
  color: #1A1815 !important;
}
.sec-approach .btn-vintage:hover {
  color: var(--gold-dark) !important;
  border-color: var(--gold) !important;
}

/* ============================================================
   SEASONS — sticky scroll showcase
   ============================================================ */

/* Outer: 600vh — P1: 2 steps, P2: 3 steps, P3: 1 step = 6 positions */
.seasons-outer {
  position: relative;
  height: 600vh;
}

/* Sticky viewport window — JS sets top & height to sit flush below navbar */
.seasons-sticky {
  position: sticky;
  top: 0;           /* overridden by JS once navbar height is known */
  height: 100vh;    /* overridden by JS */
  overflow: hidden;
  z-index: 1;
}

/* Sliding track — JS translates this to reveal each panel */
.seasons-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each panel — height overridden by JS to match visible area */
.season-panel {
  width: 100%;
  height: 100vh;   /* overridden by JS */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Individual panel backgrounds */
.season-panel--1 { background: linear-gradient(160deg, #0e0c09 0%, #1c1710 60%, #261f12 100%); }
.season-panel--2 { background: linear-gradient(160deg, #100f0c 0%, #1a1812 60%, #231e11 100%); }
/* .season-panel--3 removed (Coming Soon panel deleted) */

/* Subtle gold radial glow */
.season-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(201,164,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Centred content */
.season-panel-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

/* Eyebrow — Season II (panel 3); large + bright for dark gradient */
.season-eyebrow {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8d9b8;
  margin-bottom: 1rem;
  text-shadow:
    0 0 24px rgba(201, 164, 74, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.75);
}

/* Gold rule */
.season-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.4rem;
}

/* Title */
.season-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(201,164,74,0.25);
}

/* Hint */
.season-hint {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,248,230,0.32);
  margin: 0;
  letter-spacing: 0.06em;
}

/* Dot nav — positioned inside sticky wrapper */
.seasons-dots {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 10;
}
.seasons-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,74,0.55);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.seasons-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.35);
}

/* Panel counter — bottom left */
.seasons-counter {
  position: absolute;
  bottom: 1.6rem;
  left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: rgba(201,164,74,0.45);
  z-index: 10;
}

/* ============================================================
   SEASON PANEL — split layout (image + content)
   ============================================================ */
.season-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: center;
}

/* ── Image column ── */
.season-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 2.5rem 3rem;
  height: 100%;
}

/* Ornamental frame wrapper */
.season-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer gold border */
.season-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,164,74,0.45);
  pointer-events: none;
  z-index: 2;
}

/* Inner border offset */
.sif-inner-border {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,164,74,0.22);
  pointer-events: none;
  z-index: 2;
}

/* Corner ornaments */
.sif-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
}
.sif-corner--tl { top: -1px;    left: -1px;   border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.sif-corner--tr { top: -1px;    right: -1px;  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.sif-corner--bl { bottom: -1px; left: -1px;   border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.sif-corner--br { bottom: -1px; right: -1px;  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* Placeholder (shown until image is added) */
.sif-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1610 0%, #120f09 100%);
  z-index: 1;
}
.sif-icon {
  font-size: 2.2rem;
  color: rgba(201,164,74,0.3);
}
.sif-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(201,164,74,0.5);
  letter-spacing: 0.08em;
}
.sif-sublabel {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(201,164,74,0.3);
  letter-spacing: 0.12em;
}

/* Actual image (when added) */
.sif-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  filter: sepia(15%) saturate(85%) brightness(0.9);
}

/* Era badge */
.sif-era-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(10,8,5,0.88);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.9rem;
  z-index: 4;
  border-top: 1px solid rgba(201,164,74,0.3);
  border-right: 1px solid rgba(201,164,74,0.3);
}

/* ── Content column ── */
.season-content-col {
  padding: 2.5rem 3rem 2.5rem 2.5rem;
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: none;
}
.season-content-col::-webkit-scrollbar { display: none; }

.season-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,248,230,0.75);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.season-desc {
  font-size: 0.88rem;
  color: rgba(255,248,230,0.6);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

/* Details list */
.season-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  border-top: 1px solid rgba(201,164,74,0.15);
}
.season-details-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(201,164,74,0.1);
  font-size: 0.82rem;
}
.sdl-icon { color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }
.sdl-key  { color: rgba(201,164,74,0.75); letter-spacing: 0.08em; min-width: 70px; flex-shrink: 0; font-family: 'Cormorant Garamond', serif; }
.sdl-val  { color: rgba(255,248,230,0.65); line-height: 1.4; }

/* Why special */
.season-why {
  background: rgba(201,164,74,0.06);
  border-left: 2px solid rgba(201,164,74,0.4);
  padding: 0.75rem 1rem;
  margin-bottom: 1.4rem;
}
.season-why-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.season-why-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255,248,230,0.6);
  line-height: 1.65;
  margin: 0;
}

/* CTA row */
.season-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.season-cta-btn {
  flex-shrink: 0;
  font-size: 0.78rem !important;
  padding: 0.6rem 1.6rem !important;
}

/* Sanskrit quote */
.season-sanskrit {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.season-sanskrit-deva {
  font-size: 1rem;
  color: rgba(201,164,74,0.65);
  font-family: serif;
  line-height: 1.3;
}
.season-sanskrit-rom {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(255,248,230,0.3);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ── Mobile: stack vertically ── */
@media (max-width: 768px) {
  .season-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
  }
  .season-img-col {
    padding: 1.5rem 1.5rem 1rem;
    height: auto;
  }
  .season-img-frame {
    max-width: 260px;
    aspect-ratio: 4 / 3;
  }
  .season-content-col {
    padding: 1rem 1.5rem 2rem;
    max-height: none;
  }
  .season-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============================================================
   THE HEMINGWAY — editorial light layout
   ============================================================ */

/* Override panel bg for this panel */
.season-panel--light {
  background: #FAF8F4 !important;
  /* override base flex centering so absolute h-track works correctly */
  display: block !important;
  position: relative;
  overflow: hidden;
}
.season-panel--light::before { display: none; }

/* Two-column grid */
.shw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: center;
  gap: 0;
}

/* ── Left: Text ── */
.shw-text {
  padding: 3rem 2.5rem 3rem 4rem;
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: none;
}
.shw-text::-webkit-scrollbar { display: none; }

.shw-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9A7B2E;
  margin-bottom: 0.8rem;
}

/* Hemingway first sub-slide only — details panel uses .shwd-header .shw-eyebrow */
.season-panel--light .shw-text > .shw-eyebrow {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.02rem, 1.55vw, 1.32rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f1a14;
  margin-bottom: 1rem;
}

.shw-heading {
  margin-bottom: 1.4rem;
  line-height: 1.1;
}
.shw-heading-sub {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: #1A1815;
  letter-spacing: -0.01em;
}
.shw-heading-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: #1A1815;
  letter-spacing: -0.02em;
}

.shw-desc {
  font-size: 0.9rem;
  color: #4A4640;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  max-width: 420px;
}

.shw-rule {
  width: 50px;
  height: 2px;
  background: #C9A44A;
  margin-bottom: 1.2rem;
}

.shw-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.shw-details li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #5A5650;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(201,164,74,0.18);
}
.shw-details li span { color: #9A7B2E; flex-shrink: 0; font-size: 0.65rem; }
.shw-details li strong { color: #1A1815; margin-right: 0.3rem; font-weight: 600; }

.shw-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
/* Details panel: tighter, aligned buttons */
.shwd-col .shw-cta-row {
  gap: 0.85rem;
  margin-top: 1rem;
}
.shwd-col .shw-cta-row .shw-btn {
  justify-content: center;
  min-width: 240px;
}
@media (max-width: 520px) {
  .shwd-col .shw-cta-row .shw-btn { min-width: 100%; }
}

.shw-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.6rem;
  background: #1A1815;
  color: #C9A44A !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #1A1815;
  transition: background 0.3s, color 0.3s;
}
.shw-btn:hover {
  background: transparent;
  color: #1A1815 !important;
}

.shw-btn.shw-btn--outline {
  background: transparent;
  color: #1A1815 !important;
  border: 1px solid rgba(26, 24, 21, 0.55);
}
.shw-btn.shw-btn--outline:hover {
  background: #1A1815;
  color: #C9A44A !important;
  border-color: #1A1815;
}

.shw-rom {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  color: #888;
  margin-top: 0.15rem;
}

/* ── Right: Images ── */
.shw-images {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem 2rem 1.5rem;
  background: #F0EDE6;
}

.shw-img {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

/* After image — large, top-right */
.shw-img--after {
  width: 76%;
  aspect-ratio: 4 / 3;
  top: 4%;
  right: 4%;
  background: #D6D0C8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.shw-img--after img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Placeholder inside after image slot */
.shw-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #9A8C78;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.shw-img-placeholder i { font-size: 1.8rem; opacity: 0.5; }

/* Before image — smaller, bottom-left, overlapping */
.shw-img--before {
  width: 62%;
  aspect-ratio: 4 / 3;
  bottom: 4%;
  left: 4%;
  z-index: 2;
}
.shw-img--before img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.05);
}

/* Image labels (Before / After) */
.shw-img-label {
  position: absolute;
  bottom: 0;
  background: rgba(26,24,21,0.82);
  color: #C9A44A;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding: 0.22rem 0.8rem;
}
.shw-img--before .shw-img-label { left: 0; }
.shw-img-label--after            { right: 0; }

/* ── Mobile: shw-layout ── */
@media (max-width: 768px) {
  .shw-layout {
    grid-template-columns: 1fr;
    overflow-y: auto;
    align-items: start;
  }
  .shw-text {
    padding: 2rem 1.5rem 1.5rem;
    max-height: none;
  }
  .shw-images {
    height: 300px;
    padding: 1.5rem;
  }
  .shw-img--after { width: 65%; top: 5%; right: 3%; }
  .shw-img--before { width: 50%; bottom: 5%; left: 3%; }
}

/* ============================================================
   HEMINGWAY — horizontal sub-slides
   ============================================================ */

/* Track: anchored top-left, 200% wide so panel clips to one slide at a time */
.shw-h-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each sub-slide = 50% of track = 100% of the visible panel */
.shw-slide {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Scroll-to-details hint */
.shw-scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(154,123,46,0.65);
  animation: hintPulse 2s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateX(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateX(4px); }
}

/* ── Sub-slide 2: Details ── */
.shw-slide--details {
  background: #FAF8F4;
}

.shwd-layout {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.8rem 4rem 2rem;
  overflow-y: auto;
  scrollbar-width: none;
  background: #FDFAF5;
}
.shwd-layout::-webkit-scrollbar { display: none; }

/* Header eyebrow + gold rule */
.shwd-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,164,74,0.3);
}
.shwd-header .shw-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: #9A7B2E;
  margin-bottom: 0.5rem;
}

/* Heirloom details header — same readable treatment as Hemingway intro eyebrow */
.season-panel--heirloom .shwd-header .shw-eyebrow {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.05rem, 1.65vw, 1.38rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #241e18;
  margin-bottom: 0.75rem;
}

/* 3-column grid */
.shwd-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  flex: 1;
  align-items: start;
}
.shwd-col {
  padding: 0 2rem 0 0;
  border-right: 1px solid rgba(201,164,74,0.18);
}
.shwd-col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 2rem;
}
.shwd-col:nth-child(2) {
  padding: 0 2rem;
}

/* Column section heading */
.shwd-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: #1A1815;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #C9A44A;
  display: inline-block;
}

/* Details list (Era, Wood, Top…) */
.shwd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shwd-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201,164,74,0.12);
}
.shwd-list li strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A7B2E;
  display: block;
  margin-bottom: 0.15rem;
}
.shwd-list li span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #3A3530;
  line-height: 1.5;
}
.shwd-icon { display: none; }

/* Bullet lists (Why special, Care) */
.shwd-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.shwd-bullets li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #3A3530;
  line-height: 1.75;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,164,74,0.1);
  position: relative;
  padding-left: 1rem;
}
.shwd-bullets li::before {
  content: '✒';
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-size: 0.55rem;
  color: #9A7B2E;
}
.shwd-bullets li strong {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: #1A1815;
}

/* Ownership ritual */
.shwd-ritual-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: #6B655C;
  margin-bottom: 0.6rem;
}
.shwd-ritual-list {
  padding-left: 1.4rem;
  margin: 0 0 1.4rem;
}
.shwd-ritual-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #3A3530;
  padding: 0.3rem 0;
  line-height: 1.6;
}

/* Quote block */
.shwd-quote {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.1rem;
  background: rgba(201,164,74,0.07);
  border-left: 3px solid #C9A44A;
  margin-bottom: 1.2rem;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
  .shw-h-track { width: 200%; }
  .shw-slide   { width: 50%; }
  .shwd-layout { padding: 1.5rem; }
  .shwd-cols   { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   HEIRLOOM COLLECTION — Panel 2 horizontal sub-slides
   ============================================================ */

/* Panel override (same as --light pattern) */
.season-panel--heirloom {
  display: block !important;
  position: relative;
  overflow: hidden;
}

/* Horizontal track: 3 slides = 300% wide */
.shh-h-track {
  position: absolute;
  top: 0; left: 0;
  width: 300%;
  height: 100%;
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide = 33.33% of track = 100% of visible panel */
.shh-slide {
  width: 33.3333%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #0e0c09;
}

/* ── Sub-slide 1: Split intro ── */
.shh-intro-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 100%;
}

/* Left: Cabinet photo */
.shh-left-img {
  position: relative;
  overflow: hidden;
}
.shh-left-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.shh-left-callout{
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}
.shh-left-badge {
  position: relative;
  margin: 0;
  padding: 0;
  padding-bottom: 16px;
  display: inline-block;
  background: none;
  border: none;
  box-shadow: none;
  color: #faf6f0;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(1.05rem, 4.2vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
  max-width: none;
  text-shadow:
    0 0 20px rgba(0, 0, 0, 0.95),
    0 0 40px rgba(0, 0, 0, 0.65),
    0 2px 6px rgba(0, 0, 0, 0.9);
}

/* CTA button below badge + double underline */
.shh-left-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.shh-left-cta:hover{
  transform: translateY(-2px);
  background: rgba(201,164,74,0.18);
  border-color: rgba(201,164,74,0.80);
  color: #fffaf0;
}

/* Double underline — full-width line, then shorter centered (white), ≥3px gap */
.shh-left-badge::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: rgba(250, 246, 240, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.shh-left-badge::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

/* Right: B&W background + text overlay */
.shh-right-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.shh-right-bg {
  position: absolute; inset: 0;
}
.shh-right-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.75);
}
.shh-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Text sitting on top of B&W image */
.shh-right-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2.8rem;
}

/* Large bold heading overlay */
.shh-big-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Description para — bottom right */
.shh-right-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  max-width: 400px;
  align-self: flex-end;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Scroll hint (bottom-centre of right panel) */
.shh-scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 3;
  white-space: nowrap;
  animation: hintPulse 2s ease-in-out infinite;
}

/* ── Sub-slide 2: Details (reuses shwd-* styles, force light bg) ── */
.shh-slide:nth-child(3) {
  background: #FAF8F4;
}

/* ── Sub-slide 2: Parchment story — light grey bg, black type ── */
.shh-slide--parchment {
  background: #dddddd;
  position: relative;
}

/* Hide parchment texture — solid grey panel */
.shh-parch-bg {
  display: none;
}

.shh-parch-overlay {
  position: absolute; inset: 0;
  background: #dddddd;
  z-index: 1;
  pointer-events: none;
}

/* Main layout grid */
.shh-parch-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  height: 100%;
}

/* ── Left column ── */
.shh-parch-left {
  padding: 3rem 2.5rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
}
.shh-parch-left::-webkit-scrollbar { display: none; }

/* Large bold uppercase title — black */
.shh-parch-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

/* Small colour inlay detail image */
.shh-parch-thumb {
  width: 160px;
  height: 130px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.shh-parch-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Body — black */
.shh-parch-para {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  flex: 1;
}

/* CTA row — Enquire + Explore (parchment slide) */
.shh-parch-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  align-self: flex-start;
}

/* CTA row — uses site .btn-vintage / .btn-vintage-fill */
.shh-parch-cta-row .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

/* Scroll hint on parchment slide */
.shh-slide--parchment .shh-scroll-hint {
  color: rgba(0, 0, 0, 0.45);
}

/* ── Right column: large B&W table photo ── */
.shh-parch-right {
  position: relative;
  overflow: hidden;
  background: #dddddd;
}
.shh-parch-right img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
}

/* Mobile */
@media (max-width: 768px) {
  .shh-parch-layout { grid-template-columns: 1fr; grid-template-rows: auto 280px; }
  .shh-parch-left   { padding: 1.5rem; }
}

/* ── Sub-slide 3 (old story, now details): override bg ── */
.shh-slide--story {
  background: linear-gradient(160deg, #0e0c09 0%, #1c1710 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shhs-layout {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.shhs-inner {
  max-width: 720px;
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: none;
  padding-right: 0.5rem;
}
.shhs-inner::-webkit-scrollbar { display: none; }

.shhs-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.shhs-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255,248,230,0.8);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}
.shhs-body p {
  font-size: 0.88rem;
  color: rgba(255,248,230,0.6);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.shhs-body em { color: rgba(201,164,74,0.85); font-style: italic; }

/* Mobile */
@media (max-width: 768px) {
  .shh-h-track { width: 300%; }
  .shh-slide   { width: 33.3333%; }
  .shh-intro-layout { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .shhs-layout { padding: 1.5rem; }
}

/* ============================================================
   STATIC FEATURED CARDS — non-clickable showcase, no price
   ============================================================ */
.card-static {
  background: #ffffff;
  border: 1px solid rgba(201,164,74,0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  cursor: default;
}
.card-static:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  /* box-shadow: 0 2px 50px rgba(26,13,2,0.18); */
}

/* Image wrap */
.card-static-img-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(201,164,74,0.06);
}
.card-static-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: sepia(35%) saturate(78%) brightness(0.92);
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter   0.55s ease;
}
.card-static:hover .card-static-img-wrap img {
  transform: scale(1.08);
  filter: sepia(0%) saturate(110%) brightness(1.04);
}

/* Featured tag — same gold pill */
.card-static .card-feat-tag {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  right: auto;
  background: linear-gradient(135deg, #e2c36a, #ffffff, #ffffff);
  color: #140d06; /* crisp on gold */
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.34rem 0.85rem 0.34rem 0.85rem;
  z-index: 4;
  border: 1px solid rgba(20, 13, 6, 0.22);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.18),
    0 2px 0 rgba(255,255,255,0.22) inset;
  text-shadow: 0 1px 0 rgba(255,255,255,0.28);
  backdrop-filter: blur(2px);
}
.card-static .card-feat-tag::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid rgba(20, 13, 6, 0.22);
  border-top: 1px solid rgba(20, 13, 6, 0.22);
  box-shadow: 6px 6px 18px rgba(0,0,0,0.10);
}

/* Add a subtle dark gradient at top so badge always pops */
.card-static-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    rgba(0,0,0,0.18) 18%,
    rgba(0,0,0,0.00) 42%
  );
}
.card-static-img-wrap img { position: relative; z-index: 0; }
.card-static .card-feat-tag { z-index: 2; }

/* Body */
.card-static-body {
  padding: 1.35rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(201,164,74,0.18);
  text-align: center;
  background: #ffffff;
  transition: background 0.4s ease;
}
.card-static-cat {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.card-static-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #1A1815;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.card-static:hover .card-static-title {
  color: var(--gold-dark);
}

.card-static.card-static--linked {
  cursor: pointer;
}

/* Featured Pieces — carousel (three per slide on lg+) */
.sec-featured .featured-pieces-swiper.swiper {
  padding: 20px 0;
  overflow: visible; /* allow hover lift, tags, shadows */
}
.featured-pieces-swiper .swiper-wrapper {
  align-items: stretch;
}
.featured-pieces-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  overflow: visible;
}

.featured-carousel-controls {
  gap: 0.75rem;
}
.featured-carousel-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  border: 1px solid rgba(201, 164, 74, 0.4);
  background: rgba(255, 255, 255, 0.98);
  color: var(--gold-dark);
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}
.featured-carousel-btn:hover {
  background: #1A1815;
  border-color: #1A1815;
  color: var(--gold-light);
}

.sec-featured .featured-pieces-pagination {
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: auto !important;
  min-height: 1.35rem;
  margin: 0 !important;
  transform: none !important;
}
.sec-featured .featured-pieces-pagination .swiper-pagination-bullet {
  opacity: 0.38;
  background: var(--gold-dark);
  width: 7px;
  height: 7px;
  margin: 0 !important;
}
.sec-featured .featured-pieces-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}

/* ============================================================
   FEATURED PRODUCTS — light warm-white section
   ============================================================ */
.sec-featured {
  background: #FDFAF5;
  border-top: 1px solid rgba(201, 164, 74, 0.2);
  border-bottom: 1px solid rgba(201, 164, 74, 0.2);
  position: relative;
}
.sec-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.5) 30%, var(--gold) 50%, rgba(201, 164, 74, 0.5) 70%, transparent);
  pointer-events: none;
}
.sec-featured > * { position: relative; z-index: 1; }
.sec-featured .section-title   { color: #1A1815; }
.sec-featured .section-badge   { color: var(--gold-dark) !important; }
.sec-featured p                { color: #4A4640; }
.sec-featured .ornament-line   { background: rgba(201, 164, 74, 0.35); }
.sec-featured .ornament-symbol { color: var(--gold-dark); }
/* Cards */
.sec-featured .card-v {
  background: #ffffff;
  border: 1px solid rgba(201, 164, 74, 0.28);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.sec-featured .card-body-v {
  background: #ffffff;
  border-top: 1px solid rgba(201, 164, 74, 0.18);
}
.sec-featured .card-v:hover {
  box-shadow: 0 20px 50px rgba(26, 13, 2, 0.14), 0 4px 15px rgba(26, 13, 2, 0.07);
}
.sec-featured .card-title-v   { color: #1A1815 !important; }
.sec-featured .card-price-v   { color: var(--brown); }
.sec-featured .card-meta-v    { color: #6B655C; }
/* View all button */
.sec-featured .btn-vintage {
  border-color: rgba(58, 28, 8, 0.4) !important;
  color: #1A1815 !important;
}
.sec-featured .btn-vintage:hover {
  border-color: var(--gold) !important;
  color: var(--gold-dark) !important;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.88rem; color: var(--amber);
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
}
/* section-badge — heritage gold on light, champagne on dark */
.section-badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.92rem; color: var(--gold);
  letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 0.5rem;
  font-weight: 600;
}
.sec-dark .section-badge,
.sec-warm-dark .section-badge { color: var(--gold) !important; }
.subscribe-banner .section-badge { color: var(--gold-dark) !important; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--dark-brown); margin-bottom: 0.5rem;
  line-height: 1.2;
}
.sec-dark .section-title { color: var(--dark-brown); }
.sec-dark .section-badge { color: var(--gold); }
.section-subtitle {
  color: var(--text-med); font-size: 1.02rem;
  /* max-width: 580px; */
   margin: 0 auto; line-height: 1.85;
}

/* Ornamental dividers */
.ornament { display:flex; align-items:center; gap:1rem; margin:0.9rem 0; }
.ornament-line { flex:1; height:1px; background:linear-gradient(90deg, transparent, rgba(201,164,74,0.2), var(--gold-light), var(--gold), var(--gold-light), rgba(201,164,74,0.2), transparent); }
.ornament-center { justify-content:center; }
.ornament-left .ornament-line:first-child { max-width:55px; flex:none; }
.ornament-symbol { color:var(--gold); font-size:0.95rem; flex-shrink:0; }

/* Section heading with decorative underline */
.heading-decorated {
  position: relative; display: inline-block;
  padding-bottom: 0.9rem; margin-bottom: 0.3rem;
}
.heading-decorated::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Vintage stamp badge */
.stamp-badge {
  display: inline-flex;
  flex-direction: column; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold); text-transform: uppercase;
  font-size: 0.55rem; letter-spacing: 0.12em; line-height: 1.5;
  position: relative;
}
.stamp-badge::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px dashed rgba(201, 164, 74,0.25);
  border-radius: 50%;
}

/* ============================================================
   TOP BAR — warm gold strip, dark type for contrast
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, #D4B45A 0%, #C9A44A 38%, #B8943A 100%);
  color: var(--espresso);
  font-size: 0.78rem; padding: 0.45rem 0; letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(74, 58, 26, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.top-bar span,
.top-bar i { color: inherit; opacity: 0.92; }
.top-bar a {
  color: var(--gold-dark);
  transition: var(--trans-fast);
}
.top-bar a:hover {
  color: var(--espresso);
}
.top-bar .text-muted {
  color: rgba(10, 9, 8, 0.45) !important;
}

/* ============================================================
   NAVBAR — white bar, dark links, gold accent line (stronger right)
   Do NOT set position: relative here — it overrides Bootstrap .sticky-top (position: sticky).
   ============================================================ */
.navbar {
  /* sticky top + above page content; ::after line still anchors to this box */
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #ffffff !important;
  border-bottom: none;
  padding: 0.9rem 0;
  transition: var(--trans);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(26, 24, 21, 0.06);
}
/* Bottom edge: subtle left → rich gold on the right */
.navbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(201, 164, 74, 0.12) 0%,
    rgba(201, 164, 74, 0.22) 42%,
    var(--gold-light) 78%,
    var(--gold) 100%
  );
}
.navbar.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(26, 24, 21, 0.06);
}
.navbar-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  font-family: 'IM Fell English', serif;
  font-size: 1.7rem; color: var(--gold-dark) !important;
  letter-spacing: 0.05em;
  text-shadow: none;
  transition: var(--trans);
  line-height: 0;
  padding: 0;
  position: relative;
  /* width: 150px;
  height: 105px;  */
}
.navbar-brand-logo {
  width: 64px;
  height: 64px;
  /* logo is fixed via inline style; keep it centered + above navbar */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  z-index: 1100;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(154, 123, 46, 0.35);
  transition: var(--trans);
  transform-origin: 50% 10px;
  will-change: transform;
}
.navbar.scrolled .navbar-brand-logo {
  width: 70px;
  height: 70px;
  animation: navLogoSwing 850ms ease-in-out;
}
.navbar-brand:hover { color: var(--gold) !important; }
.navbar-brand:hover .navbar-brand-logo {
  box-shadow: 0 0 0 1px rgba(154, 123, 46, 0.55), 0 4px 14px rgba(201, 164, 74, 0.25);
}
.navbar-brand small {
  display: block;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.57rem; letter-spacing: 0.32em;
  color: rgba(201, 164, 74,0.4); line-height: 1;
  text-transform: uppercase;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.navbar-brand-name {
  font-family: 'Badhorse', 'IM Fell English', serif;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  color: var(--dark-brown);
  line-height: 1.1;
  display: block;
}
.navbar-brand-text small {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--dark-brown);
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}
@media (max-width: 380px) {
  .navbar-brand { font-size: 1.35rem; gap: 0.5rem; }
  /* Keep it big but fit small screens */
  .navbar-brand { width: 120px; height: 84px; }
  .navbar-brand-logo { width: 120px; height: 120px; top: -36px; }
  .navbar-brand small { font-size: 0.5rem; letter-spacing: 0.22em; }
}

@keyframes navLogoSwing {
  0%   { transform: rotate(0deg); }
  18%  { transform: rotate(7deg); }
  40%  { transform: rotate(-6deg); }
  62%  { transform: rotate(4deg); }
  82%  { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .navbar.scrolled .navbar-brand-logo { animation: none; }
}
.nav-link {
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-med) !important;
  padding: 0.55rem 0.9rem !important;
  position: relative; font-weight: 700; transition: var(--trans);
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link.active { color: var(--gold-dark) !important; }
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left 0.35s ease, right 0.35s ease;
}
.nav-link:hover::after, .nav-link.active::after { left: 0.9rem; right: 0.9rem; }
.navbar-toggler { border-color: rgba(154, 123, 46, 0.45); }
.navbar-toggler-icon { background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231A1815' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(201, 164, 74, 0.25); }

/* ============================================================
   BUTTONS
   ============================================================ */

/*
 * btn-vintage DEFAULT = dark text (visible on cream/parchment/light bg)
 * Inside .sec-dark or .sec-warm-dark it gets light gray text automatically
 */
.btn-vintage {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.97rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.78rem 2.2rem; border-radius: 0;
  border: 1px solid rgba(58,28,8,0.45);
  background: transparent;
  color: var(--dark-brown) !important;
  position: relative; overflow: hidden; cursor: pointer; transition: var(--trans);
  display: inline-flex; align-items: center;
}
.btn-vintage::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(58,28,8,0.07);
  transform: translateX(-101%); transition: transform 0.38s ease; z-index: -1;
}
.btn-vintage:hover {
  border-color: var(--dark-brown);
  color: var(--espresso) !important;
}
.btn-vintage:hover::before { transform: translateX(0); }

/* True dark / overlay surfaces — light outline on buttons */
.hero-master .btn-vintage,
.page-hero   .btn-vintage,
.gallery-info-card .btn-vintage,
.footer .btn-vintage:not(.btn-whatsapp),
#preloader .btn-vintage {
  border-color: rgba(201, 164, 74,0.55) !important;
  color: var(--gold-light) !important;
}

/* WhatsApp CTA — monochrome (icon still recognizable) */
.btn-whatsapp {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.85) !important;
  color: #fff !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem !important;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--trans);
}
.btn-whatsapp:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #111 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25) !important;
}

/* WhatsApp CTA — brand green (for light sections / forms) */
.btn-whatsapp.btn-whatsapp--green {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(18, 140, 126, 0.24);
}
.btn-whatsapp.btn-whatsapp--green:hover {
  background: linear-gradient(135deg, #1fbe5a, #0f7a6d) !important;
  border-color: #1fbe5a !important;
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.30) !important;
}
.hero-master .btn-vintage::before,
.page-hero .btn-vintage::before {
  background: rgba(201, 164, 74,0.1) !important;
}
.hero-master .btn-vintage:hover,
.page-hero .btn-vintage:hover {
  border-color: var(--gold) !important;
  color: var(--gold-pale) !important;
}

/* Dark-bg panels that use parchment-looking inline styles (faq, inquiry sidebar) */
[style*="background:var(--dark-brown)"] .btn-vintage,
[style*="background: var(--dark-brown)"] .btn-vintage {
  border-color: rgba(201, 164, 74,0.45) !important;
  color: var(--gold-light) !important;
}

.btn-vintage-fill {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--ink) !important;
  border: 1px solid var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.btn-vintage-fill::before { background: linear-gradient(135deg, var(--gold-pale), var(--gold-light)); }
.btn-vintage-fill:hover {
  color: var(--espresso) !important;
  box-shadow: 0 0 30px rgba(201, 164, 74,0.45), 0 6px 20px rgba(0,0,0,0.3);
}
/* Filled accent subscribe button */
.btn-vintage-gold {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.97rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.78rem 2rem; border-radius: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink) !important;
  border: 1px solid var(--gold); font-weight: 700;
  transition: var(--trans); display: inline-flex; align-items: center;
}
.btn-vintage-gold:hover {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  box-shadow: 0 0 25px rgba(201, 164, 74,0.5);
  color: var(--espresso) !important;
}

.btn-vintage-outline-dark {
  border-color: rgba(58,28,8,0.4); color: var(--dark-brown) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.97rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.78rem 2.2rem; border-radius: 0; border-style: solid;
  border-width: 1px; background: transparent;
  position: relative; overflow: hidden; cursor: pointer; transition: var(--trans);
  display: inline-flex; align-items: center;
}
.btn-vintage-outline-dark::before { content:''; position:absolute; inset:0; background:rgba(58,28,8,0.07); transform:translateX(-101%); transition:transform 0.38s ease; z-index:-1; }
.btn-vintage-outline-dark:hover { border-color: var(--dark-brown); color: var(--espresso) !important; }
.btn-vintage-outline-dark:hover::before { transform:translateX(0); }

.btn-sm-vintage { font-size:0.8rem; padding:0.5rem 1.4rem; letter-spacing:0.14em; }

/* blog cat filter — same as gallery filter */
.blog-cat-filter {
  background: transparent !important;
  border: 1px solid rgba(58,28,8,0.3) !important;
  color: var(--dark-brown) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 0 !important;
  transition: var(--trans) !important;
}
.blog-cat-filter:hover {
  border-color: var(--gold-dark) !important;
  color: var(--gold-dark) !important;
  background: rgba(201, 164, 74,0.08) !important;
}
.blog-cat-filter.active {
  background: var(--dark-brown) !important;
  border-color: var(--dark-brown) !important;
  color: var(--gold-light) !important;
  box-shadow: 0 3px 12px rgba(58,28,8,0.22) !important;
}

/* Blog featured post "Read Article" — dark text, visible on cream/light */
.btn-vintage-outline-dark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.62rem 1.8rem; border-radius: 0;
  border: 1px solid rgba(58,28,8,0.45);
  background: transparent;
  color: var(--dark-brown) !important;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--trans);
}
.btn-vintage-outline-dark:hover {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  color: var(--gold-light) !important;
}

/* btn-vintage on light/parchment backgrounds — use dark text, dark border */
.btn-vintage-on-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.7rem 2rem; border-radius: 0;
  border: 1px solid rgba(58,28,8,0.5);
  background: transparent;
  color: var(--dark-brown) !important;
  position: relative; overflow: hidden; cursor: pointer; transition: var(--trans);
  display: inline-flex; align-items: center;
}
.btn-vintage-on-light::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(58,28,8,0.07);
  transform: translateX(-101%); transition: transform 0.38s ease; z-index: -1;
}
.btn-vintage-on-light:hover { border-color: var(--dark-brown); color: var(--espresso) !important; }
.btn-vintage-on-light:hover::before { transform: translateX(0); }
.btn-vintage-on-light.btn-sm-vintage { font-size:0.78rem; padding:0.45rem 1.2rem; }

/* Gallery filter buttons — fill on active */
.gallery-filter {
  background: transparent !important;
  border: 1px solid rgba(58,28,8,0.3) !important;
  color: var(--dark-brown) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 0.45rem 1.3rem !important;
  border-radius: 0 !important;
  transition: var(--trans) !important;
}
.gallery-filter:hover {
  border-color: var(--gold-dark) !important;
  color: var(--gold-dark) !important;
  background: rgba(201, 164, 74,0.08) !important;
}
.gallery-filter.active {
  background: var(--dark-brown) !important;
  border-color: var(--dark-brown) !important;
  color: var(--gold-light) !important;
  box-shadow: 0 4px 14px rgba(58,28,8,0.25) !important;
}

/* ============================================================
   INTRO STRIP — light band, dark gold headings + readable subtext
   ============================================================ */
.intro-strip {
  background: #ededed;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.intro-strip-item {
  padding: 1.1rem 0;
  border-right: 1px solid rgba(26, 24, 21, 0.08);
  display: flex; align-items: center; gap: 0.85rem; justify-content: center;
}
.intro-strip-item:last-child { border-right: none; }
.intro-strip-item i { color: var(--gold); font-size: 1.15rem; }
.intro-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
}
.intro-strip-sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(26, 24, 21, 0.42);
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin-top: 0.15rem;
}

/* ============================================================
   CATEGORY GRID — editorial asymmetric
   ============================================================ */
.category-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 1.1rem;
}
.cat-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2.2rem 1.2rem; transition: var(--trans); text-decoration: none;
  /* Subtle inner shadow for depth */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(139,99,16,0.08);
}
.cat-card:nth-child(1) { grid-column: span 2; }
.cat-card:nth-child(2) { grid-column: span 2; }
.cat-card:nth-child(5) { grid-column: span 3; }
.cat-card:nth-child(6) { grid-column: span 3; }

/* Aged corner marks on cat cards */
.cat-card::before {
  content: '';
  position: absolute; top: 8px; left: 8px;
  width: 18px; height: 18px;
  border-top: 1px solid rgba(201, 164, 74,0.3);
  border-left: 1px solid rgba(201, 164, 74,0.3);
  transition: var(--trans);
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-strong);
  box-shadow: 0 14px 40px rgba(26,13,2,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
  background: var(--cream-light);
}
.cat-card:hover::before { border-color: rgba(201, 164, 74,0.7); }
.cat-card:hover::after { transform: scaleX(1); }

.cat-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--border-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.45rem; margin-bottom: 0.9rem;
  transition: var(--trans); background: rgba(201, 164, 74,0.06);
}
.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--cream-light);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 164, 74,0.4);
}
.cat-card h5 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown); font-size: 1.02rem;
  margin-bottom: 0.22rem; transition: var(--trans);
}
.cat-card:hover h5 { color: var(--gold-dark); }
.cat-card p { font-size: 0.78rem; color: var(--text-light); margin: 0; text-align: center; line-height: 1.5; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.card-v {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  position: relative; overflow: hidden; transition: var(--trans);
  box-shadow: 0 2px 12px rgba(26,13,2,0.08);
}
.card-v::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid transparent; transition: border-color 0.4s ease;
  pointer-events: none; z-index: 2;
}
.card-v:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26,13,2,0.22), 0 4px 15px rgba(26,13,2,0.1);
}
.card-v:hover::before { border-color: rgba(201, 164, 74,0.55); }

.card-img-wrap { position: relative; overflow: hidden; background: rgba(201, 164, 74,0.08); }
.card-img-wrap img {
  width: 100%; height: 270px; object-fit: cover;
  filter: sepia(22%) saturate(78%) brightness(0.95);
  transition: transform 0.6s ease, filter 0.42s ease; display: block;
}
.card-v:hover .card-img-wrap img { transform: scale(1.06); filter: sepia(5%) saturate(100%) brightness(1.02); }

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,13,2,0.92) 0%, rgba(28,13,2,0.65) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.8rem;
  opacity: 0; transition: opacity 0.4s ease; z-index: 3;
}
.card-v:hover .card-overlay { opacity: 1; }

/* Product card overlay enquiry button — solid background, dark text */
.card-overlay .btn-enquire-overlay,
.card-overlay .btn-enquire-overlay:focus,
.card-overlay .btn-enquire-overlay:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.card-overlay .btn-enquire-overlay::before {
  display: none !important;
}

.card-era-tag {
  position: absolute; bottom: 0; left: 0;
  background: rgba(28,13,2,0.9); color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.75rem; padding: 0.22rem 0.85rem; letter-spacing: 0.08em; z-index: 2;
}
.card-feat-tag {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--ink);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.22rem 0.65rem; z-index: 2;
}
.card-body-v {
  padding: 1.4rem 1.5rem;
  border-top: 1px solid rgba(201, 164, 74,0.2);
  background: var(--cream-light);
}
.card-cat-v { font-size: 0.67rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.32rem; }
.card-title-v { font-family:'Playfair Display',serif; font-size:1.12rem; color:#000000 !important; margin-bottom:0.4rem; line-height:1.3; }
.card-price-v { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--brown); font-weight:600; }
.card-meta-v { font-size:0.74rem; color:var(--text-light); display:flex; gap:0.85rem; flex-wrap:wrap; margin-top:0.5rem; }
.card-meta-v span { display:flex; align-items:center; gap:0.28rem; }

/* ============================================================
   FEATURED SPLIT — solid dark, no bg image
   ============================================================ */
.featured-split { display:grid; grid-template-columns:1fr 1fr; min-height:520px; }
.featured-split-img { position:relative; overflow:hidden; }
.featured-split-img img { width:100%; height:100%; min-height:520px; object-fit:cover; filter:sepia(18%) saturate(85%); transition:transform 0.65s ease; }
.featured-split-img:hover img { transform:scale(1.04); }
.featured-split-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to right, transparent 40%, rgba(45, 38, 28, 0.12) 100%); }
.featured-split-content {
  background: linear-gradient(165deg, #F7F1E5 0%, #E8DFD0 55%, #DED2BF 100%);
  border-left: 1px solid var(--border-gold);
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4.5rem 3.5rem;
  color: var(--text-dark);
}
.featured-split-content::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(201, 164, 74,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.featured-split-content > * { position: relative; z-index: 1; }
.featured-split-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.featured-split-title em { color: var(--gold); font-style: italic; }
.featured-split-lead {
  color: var(--text-med);
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.featured-split-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--gold-dark);
}
.featured-split-tag {
  background: rgba(201, 164, 74, 0.12);
  border: 1px solid var(--border-gold-strong);
  color: var(--text-med);
  font-size: 0.68rem;
  padding: 0.2rem 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.featured-split-rule { width: 60px; height: 1px; background: var(--gold); margin: 1rem 0; }
.featured-split-actions { display: flex; gap: 1.2rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-img-frame { position:relative; padding:1.8rem 1.8rem 1.8rem 0; }
.about-img-frame::before {
  content:''; position:absolute; top:0; left:0; width:58%; height:58%;
  border-left:2px solid var(--gold); border-top:2px solid var(--gold);
}
.about-img-frame::after {
  content:''; position:absolute; bottom:0; right:0; width:58%; height:58%;
  border-right:2px solid var(--gold); border-bottom:2px solid var(--gold);
}
.about-img-frame img { position:relative; z-index:1; filter:sepia(20%) saturate(80%); width:100%; box-shadow: 0 8px 30px rgba(26,13,2,0.2); }

/* ── Dual image layout: scene + founder portrait ── */
.about-dual-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-dual-img {
  overflow: hidden;
  position: relative;
}
.about-dual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(18%) saturate(82%);
  transition: transform 0.6s ease, filter 0.5s ease;
}
.about-dual-img:hover img {
  transform: scale(1.04);
  filter: sepia(0%) saturate(105%);
}

/* Scene image — taller, full width */
.about-dual-img--scene {
  /* height: 340px; */
  border: 1px solid rgba(201,164,74,0.3);
  box-shadow: 0 6px 24px rgba(26,13,2,0.14);
}

/* Portrait — slightly shorter, offset right, overlaps scene at bottom */
.about-dual-img--portrait {
  /* height: 260px; */
  width: 68%;
  margin-left: 56%;
  border: 3px solid #FDFAF5;
  box-shadow: 0 12px 36px rgba(26,13,2,0.2), 0 0 0 1px rgba(201,164,74,0.25);
  margin-top: -163px;
  position: relative;
  z-index: 2;
}

/* Caption under portrait */
.about-portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.45rem 0.8rem;
  background: rgba(10,8,5,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(232,220,198,0.92);
  text-align: center;
}

@media (min-width: 576px) {
  /* .about-dual-img--scene  { height: 420px; } */
  /* .about-dual-img--portrait { height: 300px; } */
}

/* About value rows */
.about-value-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  transition: var(--trans);
}
.about-value-item:hover {
  border-color: var(--border-gold);
  background: rgba(201, 164, 74,0.04);
}
.about-value-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.98rem; flex-shrink: 0;
  background: rgba(201, 164, 74,0.06);
  transition: var(--trans);
}
.about-value-item:hover .about-value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--cream-light);
  border-color: var(--gold);
}

/* ============================================================
   PROCESS CARDS — on warm section bg
   ============================================================ */
.process-card {
  border: 1px solid var(--border-gold);
  padding: 2.2rem 1.6rem; text-align: center; transition: var(--trans);
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(26, 13, 2, 0.05);
}
.process-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: 0.55rem;
}
.process-card p {
  font-size: 0.87rem;
  color: var(--text-med);
  line-height: 1.7;
  margin: 0;
}
/* Top gold bar on hover */
.process-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
/* Subtle corner mark */
.process-card::after {
  content: '';
  position: absolute; bottom: 12px; right: 12px;
  width: 22px; height: 22px;
  border-bottom: 1px solid rgba(201, 164, 74,0.15);
  border-right:  1px solid rgba(201, 164, 74,0.15);
}
.process-card:hover { transform:translateY(-5px); border-color: var(--border-gold-strong); background: #fff; }
.process-card:hover::before { transform:scaleX(1); }
.process-number {
  font-family: 'Playfair Display', serif; font-size: 4.2rem;
  color: rgba(201, 164, 74,0.08); line-height: 1;
  position: absolute; top: 0.5rem; right: 1rem; font-weight: 900;
  transition: var(--trans);
}
.process-card:hover .process-number { color: rgba(201, 164, 74,0.13); }
.process-icon {
  width: 58px; height: 58px; border: 1px solid rgba(201, 164, 74,0.28); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--gold); font-size: 1.18rem; transition: var(--trans);
}
.process-card:hover .process-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--ink); box-shadow: 0 0 22px rgba(201, 164, 74,0.5); border-color: var(--gold); }

/* ============================================================
   TESTIMONIALS — on warm section bg
   ============================================================ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-gold);
  padding: 2.4rem; position: relative; transition: var(--trans);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 13, 2, 0.05);
}
.testimonial-card::before {
  content: '\201C'; font-family: 'Playfair Display', serif; font-size: 7rem;
  color: var(--gold); opacity: 0.12;
  position: absolute; top: -1rem; left: 1.2rem; line-height: 1; pointer-events: none;
  transition: var(--trans);
}
.testimonial-card:hover { background: #fff; border-color: var(--border-gold-strong); }
.testimonial-card:hover::before { opacity: 0.2; }
.testimonial-text { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.12rem; line-height:1.88; color: var(--text-med); margin-bottom:1.7rem; position:relative; z-index:1; }
.testimonial-author-name { font-family:'Playfair Display',serif; color: var(--dark-brown); font-size:0.97rem; margin:0; }
.testimonial-author-loc { font-size:0.73rem; color: var(--text-light); letter-spacing:0.1em; }
.testimonial-avatar {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold-dark);
  background: rgba(201, 164, 74, 0.12);
  border: 1px solid var(--border-gold);
}
.stars { color:var(--gold); font-size:0.82rem; margin-bottom:0.4rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item { position:relative; overflow:hidden; cursor:pointer; }
.gallery-item img { width:100%; height:300px; object-fit:cover; filter:sepia(25%) saturate(78%); transition:transform 0.55s ease, filter 0.42s ease; }
.gallery-item:hover img { transform:scale(1.07); filter:sepia(0%) saturate(100%); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,13,2,0.9) 0%, transparent 60%);
  opacity: 0; transition: var(--trans);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h5 { font-family:'Playfair Display',serif; color:#fff; margin:0; font-size:0.97rem; }
.gallery-item-overlay p { color:var(--gold); font-size:0.74rem; margin:0.2rem 0 0; }

/* Gallery state tags */
.gallery-state-tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.22rem 0.75rem; z-index: 2;
}
.gallery-state-before { background: rgba(28,13,2,0.88); color: var(--gold-light); }
.gallery-state-after  { background: rgba(55,55,55,0.92); color: #f0f0f0; }

/* Gallery info card (dark panel in grid) */
.gallery-info-card {
  background: var(--dark-brown);
  height: 100%; min-height: 300px;
  display: flex; flex-direction: column;
  padding: 2.2rem 2rem;
  position: relative; overflow: hidden;
}
.gallery-info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gallery-info-cat {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.gallery-info-title {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.15rem; margin-bottom: 0.2rem;
}
.gallery-info-desc { color: rgba(255,255,255,0.72); font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card-v {
  transition: var(--trans);
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,13,2,0.07);
}
.blog-card-v .blog-img { height: 230px; overflow: hidden; }
.blog-card-v .blog-img img { width:100%; height:100%; object-fit:cover; filter:sepia(20%) saturate(82%); transition:transform 0.55s ease, filter 0.42s ease; }
.blog-card-v:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(26,13,2,0.2); }
.blog-card-v:hover .blog-img img { transform:scale(1.05); filter:sepia(0%) saturate(100%); }
.blog-cat-badge { display:inline-block; border: 1px solid var(--border-gold); color:var(--gold); font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; padding:0.2rem 0.7rem; margin-bottom:0.65rem; }
.blog-title-v { font-family:'Playfair Display',serif; font-size:1.12rem; color:var(--dark-brown); line-height:1.4; margin-bottom:0.65rem; }
.blog-excerpt-v { font-size:0.87rem; color:var(--text-med); line-height:1.75; }

/* ============================================================
   BLOG — listing + single post
   ============================================================ */

/* Blog cards */
.blog-card-v { position: relative; }
.blog-card-img { height: 230px; overflow: hidden; position: relative; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(18%) saturate(82%); transition: transform 0.55s ease, filter 0.42s ease;
}
.blog-card-v:hover .blog-card-img img { transform: scale(1.05); filter: sepia(0%) saturate(100%); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.72rem; color: var(--text-light);
  display: flex; gap: 1rem; align-items: center; margin-bottom: 0.6rem;
}
.blog-card-meta i { color: var(--gold); }
.blog-card-title {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown); font-size: 1.12rem;
  line-height: 1.35; margin-bottom: 0.65rem;
  transition: var(--trans);
}
.blog-card-v:hover .blog-card-title { color: var(--brown); }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-med); line-height: 1.75; flex: 1; }
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px solid var(--border-gold);
}
.blog-read-link {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.9rem; color: var(--brown); letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--trans);
}
.blog-read-link:hover { color: var(--espresso); gap: 0.7rem; }

/* Featured post card */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,13,2,0.1);
  margin-bottom: 3.5rem;
}
.blog-featured-img { position: relative; overflow: hidden; min-height: 400px; }
.blog-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(18%) saturate(85%); transition: transform 0.6s ease;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body {
  padding: 3rem 2.8rem;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.blog-featured-title {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown); font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3; margin-bottom: 1rem;
}
.blog-featured-excerpt { color: var(--text-med); line-height: 1.85; margin-bottom: 1.5rem; font-size: 0.95rem; }
.blog-featured-date { font-size: 0.78rem; color: var(--text-light); }
@media (max-width: 767px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; }
  .blog-featured-body { padding: 2rem 1.5rem; }
}

/* Single post article */
.article-header { margin-bottom: 2.5rem; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-size: 0.8rem; color: var(--text-light);
  margin-top: 0.8rem;
}
.article-meta span { display: flex; align-items: center; gap: 0.35rem; }
.article-meta i { color: var(--gold); }
.article-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  filter: sepia(15%) saturate(85%);
  border: 1px solid var(--border-gold);
  margin-bottom: 2.5rem;
}

/* Article body: better typography for dynamic HTML */
.article-body {
  color: var(--text-med);
  line-height: 2;
  font-size: 1.03rem;
  /* Use more screen width; keep a comfortable reading limit */
  max-width: min(92ch, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.article-body a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(154, 123, 46, 0.35);
  text-underline-offset: 3px;
  transition: var(--trans-fast);
}
.article-body a:hover { color: var(--gold); text-decoration-color: rgba(201, 164, 74, 0.75); }
.article-body img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-gold);
  box-shadow: 0 14px 40px rgba(26, 13, 2, 0.12);
  margin: 1.4rem auto;
  display: block;
}
.article-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
  margin: 2.2rem 0;
}
.article-body strong { color: var(--dark-brown); }
.article-body code {
  background: rgba(201, 164, 74, 0.08);
  border: 1px solid rgba(201, 164, 74, 0.18);
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  color: var(--espresso);
  font-size: 0.92em;
}
.article-body pre {
  background: rgba(26, 24, 21, 0.04);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.1rem;
  overflow: auto;
  line-height: 1.7;
}
.article-body pre code {
  background: transparent;
  border: none;
  padding: 0;
}
.article-body h2, .article-body h3, .article-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown);
  margin: 2rem 0 0.9rem;
}
.article-body h2 { font-size: 1.6rem; }
.article-body h3 { font-size: 1.3rem; }
.article-body h4 { font-size: 1.1rem; }
.article-body p { margin-bottom: 1.3rem; }
.article-body ul, .article-body ol { padding-left: 1.6rem; margin-bottom: 1.3rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body ul li::marker,
.article-body ol li::marker { color: var(--gold); }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 0.95rem;
}
.article-body table th,
.article-body table td {
  border: 1px solid var(--border-gold);
  padding: 0.7rem 0.8rem;
  vertical-align: top;
}
.article-body table th {
  background: rgba(201, 164, 74, 0.08);
  color: var(--dark-brown);
  font-family: 'Playfair Display', serif;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  background: rgba(201, 164, 74,0.06);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--brown);
}

/* Legal / policy pages — left-aligned for readability */
.article-body.legal-doc {
  text-align: left;
  text-justify: auto;
  hyphens: none;
  max-width: 100%;
}
.article-body.legal-doc h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
}

@media (max-width: 991px) {
  .article-hero-img { height: 320px; }
  .article-body { max-width: 100%; }
}
@media (max-width: 576px) {
  .article-hero-img { height: 240px; margin-bottom: 1.6rem; }
  .article-body { font-size: 1rem; line-height: 1.9; }
  .article-body blockquote { padding: 1rem 1.1rem; font-size: 1.06rem; }
}
/* Article sidebar */
.article-sidebar-box {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.article-sidebar-title {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown); font-size: 0.95rem;
  margin-bottom: 1.1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-gold);
}

/* ============================================================
   SUBSCRIBE BANNER — warm parchment (not black)
   ============================================================ */
.subscribe-banner {
  background: linear-gradient(165deg, #F4EEE0 0%, #E8DFD0 45%, #DDD0BA 100%);
  padding: 5rem 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.subscribe-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 90% at 50% 15%, rgba(201, 164, 74, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 85%, rgba(201, 164, 74, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.subscribe-banner > * { position: relative; z-index: 1; }
.subscribe-banner .container { position: relative; z-index: 1; }
.subscribe-banner h3 { font-family:'Playfair Display',serif; color: var(--dark-brown); margin-bottom:0.5rem; }
.subscribe-banner p { color: var(--text-med); line-height: 1.85; }
.subscribe-input-group .form-control {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--text-dark); border-radius: 0; padding: 0.8rem 1.2rem;
}
.subscribe-input-group .form-control::placeholder { color: var(--text-light); font-style: italic; }
.subscribe-input-group .form-control:focus { background: #fff; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.12); color: var(--text-dark); }
.subscribe-banner .subscribe-privacy {
  color: var(--text-light) !important;
  font-size: 0.78rem;
  margin-top: 0.5rem;
  display: block;
}

/* Home — closing CTA (was inline white on “dark” section) */
.final-cta-title {
  font-family: 'IM Fell English', serif;
  color: var(--dark-brown);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.final-cta-title em { color: var(--gold); font-style: italic; }
.final-cta-lead {
  color: var(--text-med);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

/* ============================================================
   INQUIRY PAGE
   ============================================================ */
.enquiry-type-cards { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 0.5rem; }
.enquiry-type-card {
  flex: 1; min-width: 140px;
  position: relative; cursor: pointer;
}
.enquiry-type-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.enquiry-type-inner {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.4rem 1rem;
  border: 2px solid var(--border-gold);
  background: var(--cream-light);
  text-align: center; transition: var(--trans);
}
.enquiry-type-card input:checked + .enquiry-type-inner {
  border-color: var(--dark-brown);
  background: var(--dark-brown);
}
.enquiry-type-card input:checked + .enquiry-type-inner .enquiry-type-icon,
.enquiry-type-card input:checked + .enquiry-type-inner .enquiry-type-label {
  color: var(--gold-light) !important;
}
.enquiry-type-card:hover .enquiry-type-inner {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,13,2,0.14);
}
.enquiry-type-icon {
  font-size: 1.6rem; color: var(--gold);
  margin-bottom: 0.6rem; transition: var(--trans);
}
.enquiry-type-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem; color: var(--dark-brown);
  line-height: 1.3; transition: var(--trans);
}

/* File upload drop zone */
.file-drop-zone {
  border: 2px dashed var(--border-gold);
  padding: 2rem 1.5rem; text-align: center;
  background: rgba(255,255,255,0.65);
  cursor: pointer; transition: var(--trans);
  position: relative;
}
.file-drop-zone:hover, .file-drop-zone.dragover {
  border-color: var(--gold-dark);
  background: rgba(201, 164, 74,0.07);
}
.file-drop-zone-icon {
  font-size: 2.5rem; color: var(--gold);
  margin-bottom: 0.75rem; display: block;
  transition: var(--trans);
}
.file-drop-zone:hover .file-drop-zone-icon { transform: translateY(-4px); }
.file-drop-zone p { color: var(--text-light); font-size: 0.88rem; margin: 0; }
.file-drop-zone small { color: var(--text-light); font-size: 0.78rem; }

/* Inquiry sidebar steps */
.inquiry-step-box {
  background: var(--dark-brown);
  padding: 2rem; margin-bottom: 1.5rem;
}
.inquiry-step-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light); font-size: 1.05rem;
  margin-bottom: 1.3rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201, 164, 74,0.18);
  display: flex; align-items: center; gap: 0.6rem;
}
.inquiry-step-row {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1rem;
}
.inquiry-step-num {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(201, 164, 74,0.12);
  border: 1px solid rgba(201, 164, 74,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
}
.inquiry-step-text { color: rgba(255,255,255,0.82); font-size: 0.87rem; line-height: 1.65; }
.inquiry-contact-box {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 1.8rem; margin-bottom: 1.5rem;
}
.inquiry-promise-box {
  border: 1px solid var(--border-gold);
  padding: 1.6rem;
  background: rgba(201, 164, 74,0.04);
  position: relative;
}
.inquiry-promise-box::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); opacity: 0.15;
  position: absolute; top: -0.8rem; left: 1rem; line-height: 1;
}

/* ============================================================
   PAGE HERO (inner pages) — solid dark + ornate gold
   ============================================================ */
.page-hero {
  background: radial-gradient(ellipse 100% 70% at 50% 0%, rgba(201, 164, 74, 0.12) 0%, #242018 55%);
  min-height: 300px;
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 7.25rem; /* avoid overlap with 150px logo + navbar */
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 164, 74,0.09) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 74,0.5), transparent);
}
/* Optional image background layer */
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: sepia(30%) saturate(70%) brightness(0.55);
}
/* Dark overlay for image-backed page heroes */
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(28,13,2,0.82) 0%,
    rgba(58,28,8,0.68) 40%,
    rgba(28,13,2,0.90) 100%);
}
/* Decorative lines on page hero */
.page-hero-lines {
  position: absolute; inset: 20px; pointer-events: none;
  border: 1px solid rgba(201, 164, 74,0.06);
}
.page-hero-content { position: relative; z-index: 4; }
.page-hero h1 { font-family:'Playfair Display',serif; color:#fff; font-size:clamp(2rem,5vw,3.4rem); margin-bottom:0.4rem; }
.page-hero .lead {
  color: rgba(255, 248, 230, 0.88); /* readable across all hero images */
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
  max-width: 900px;
  line-height: 1.55;
}
.breadcrumb-vintage { background:none; padding:0; margin:0; }
.breadcrumb-vintage .breadcrumb-item {
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.breadcrumb-vintage .breadcrumb-item a { color:var(--gold); }
.breadcrumb-vintage .breadcrumb-item.active { color:rgba(255,255,255,0.72); }
.breadcrumb-vintage .breadcrumb-item + .breadcrumb-item::before { color:var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-vintage .form-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; letter-spacing: 0.1em;
  color: var(--text-med); margin-bottom: 0.28rem;
}
.form-vintage .form-control,
.form-vintage .form-select {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border-gold);
  border-radius: 0; color: var(--text-dark);
  padding: 0.68rem 1rem; transition: var(--trans);
  font-size: 0.93rem;
}
.form-vintage .form-control:focus,
.form-vintage .form-select:focus {
  background: rgba(255,255,255,0.95);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 74,0.12);
  color: var(--text-dark);
}
.form-vintage .form-control::placeholder { color: var(--text-light); font-style: italic; }
.form-group-vintage { margin-bottom: 1.4rem; }

/* Star rating */
.star-rating { display:flex; gap:0.3rem; flex-direction:row-reverse; justify-content:flex-end; }
.star-rating input { display:none; }
.star-rating label { color:#ccc; font-size:1.5rem; cursor:pointer; transition:color 0.2s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color:var(--gold); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-v .accordion-item {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  border-radius: 0 !important; margin-bottom: 0.45rem;
}
.accordion-v .accordion-button {
  background: var(--cream-light);
  color: var(--dark-brown);
  font-family: 'Playfair Display', serif;
  font-size: 0.99rem; padding: 1.15rem 1.5rem;
  box-shadow: none; border-radius: 0 !important;
  transition: var(--trans);
}
.accordion-v .accordion-button:not(.collapsed) {
  background: rgba(201, 164, 74,0.09);
  color: var(--brown);
  border-bottom: 1px solid var(--border-gold);
}
.accordion-v .accordion-button::after {
  filter: sepia(1) hue-rotate(10deg) saturate(3) brightness(0.6);
}
.accordion-v .accordion-body {
  font-size: 0.94rem; color: var(--text-med);
  line-height: 1.85; padding: 1.15rem 1.5rem;
  background: var(--cream-light);
}

/* FAQ CTA — light, premium “parchment” card (no black) */
.faq-cta {
  position: relative;
}
.faq-cta-inner {
  position: relative;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(201, 164, 74, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 247, 240, 0.96) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 34px rgba(26, 13, 2, 0.10);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  overflow: hidden;
}
.faq-cta-inner::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(201, 164, 74, 0.28);
  pointer-events: none;
}
.faq-cta-inner::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.9;
  pointer-events: none;
}
.faq-cta-icon {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 164, 74, 0.25);
}
.faq-cta-title {
  color: var(--dark-brown);
  margin-bottom: 0.55rem;
}
.faq-cta-subtitle {
  color: var(--text-med);
  margin-bottom: 1.5rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta .btn-vintage-on-light {
  box-shadow: 0 8px 20px rgba(26, 13, 2, 0.08);
}
.faq-cta .btn-vintage-fill {
  box-shadow: 0 10px 26px rgba(154, 123, 46, 0.22);
}
.faq-cta-inner:hover {
  transform: translateY(-2px);
  transition: var(--trans);
  border-color: var(--border-gold-strong);
  box-shadow: 0 18px 46px rgba(26, 13, 2, 0.14);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position:relative; padding:2rem 0; }
.timeline::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:1px; background:linear-gradient(180deg,transparent,var(--gold) 10%,var(--gold) 90%,transparent); transform:translateX(-50%); }
.timeline-item { display:flex; margin-bottom:3.8rem; position:relative; }
.timeline-item:nth-child(odd)  { flex-direction:row; }
.timeline-item:nth-child(even) { flex-direction:row-reverse; }
.timeline-content {
  width: calc(50% - 3rem);
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 1.8rem; position: relative; transition: var(--trans);
  box-shadow: 0 2px 12px rgba(26,13,2,0.07);
}
.timeline-content:hover { transform:translateY(-4px); box-shadow:0 10px 30px rgba(26,13,2,0.16); border-color:var(--border-gold-strong); }
.timeline-item:nth-child(odd)  .timeline-content { margin-left:auto; margin-right:3rem; }
.timeline-item:nth-child(even) .timeline-content { margin-right:auto; margin-left:3rem; }
.timeline-dot { position:absolute; left:50%; top:1.4rem; transform:translateX(-50%); width:48px; height:48px; background:var(--dark-brown); border:2px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:0.97rem; z-index:2; box-shadow:0 0 18px rgba(201, 164, 74,0.25); }
.timeline-step { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:0.75rem; color:var(--gold); letter-spacing:0.18em; text-transform:uppercase; margin-bottom:0.3rem; }
.timeline-content h4 { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--dark-brown); margin-bottom:0.45rem; }
.timeline-content p { font-size:0.87rem; color:var(--text-med); margin:0; }

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-card {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 1.9rem; text-align: center; transition: var(--trans);
  box-shadow: 0 2px 12px rgba(26,13,2,0.07);
  position: relative;
}
.contact-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.contact-card:hover { transform:translateY(-5px); box-shadow:0 14px 36px rgba(26,13,2,0.18); border-color:var(--border-gold-strong); }
.contact-card:hover::after { transform: scaleX(1); }
.contact-icon {
  width: 60px;
  height: 60px;
  background:
    radial-gradient(circle at 30% 25%, rgba(201, 164, 74, 0.26) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 247, 240, 0.98) 100%);
  border: 1px solid rgba(201, 164, 74, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold-dark);
  font-size: 1.28rem;
  transition: var(--trans);
  box-shadow: 0 10px 26px rgba(26, 13, 2, 0.10);
}
.contact-card:hover .contact-icon {
  transform: translateY(-2px);
  border-color: rgba(201, 164, 74, 0.55);
  box-shadow: 0 16px 36px rgba(26, 13, 2, 0.14), 0 0 0 3px rgba(201, 164, 74, 0.10);
  color: var(--gold);
}
.contact-card h5 { font-family:'Playfair Display',serif; color:var(--dark-brown); font-size:0.95rem; margin-bottom:0.45rem; }
.contact-card p { font-size:0.87rem; color:var(--text-med); margin:0; }

/* ============================================================
   INQUIRY FORM BOX
   ============================================================ */
.inquiry-form-box {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 2.8rem;
  box-shadow: 0 4px 24px rgba(26,13,2,0.09);
}
@media (max-width: 576px) { .inquiry-form-box { padding: 1.5rem; } }

/* Enquiry type selected hint text */
.enquiry-type-card input:checked + .enquiry-type-inner .enquiry-type-hint {
  color: rgba(215, 198, 160,0.62) !important;
}

/* ============================================================
   CONTACT PAGE IMPROVEMENTS
   ============================================================ */

/* Contact card hint text */
.contact-card-hint {
  color: var(--gold);
  font-size: 0.78rem; letter-spacing: 0.1em;
  margin-top: 0.5rem; display: block;
  transition: var(--trans);
}
.contact-card:hover .contact-card-hint { color: var(--gold-dark); }

/* Contact form box */
.contact-form-box {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 2.5rem 2.5rem 2.5rem;
  box-shadow: 0 4px 20px rgba(26,13,2,0.08);
}
@media (max-width: 576px) { .contact-form-box { padding: 1.5rem; } }

.contact-form-header { margin-bottom: 0.5rem; }

/* Map box */
.contact-map-box {
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26,13,2,0.1);
}
.contact-map-header {
  background: var(--dark-brown);
  color: var(--gold-light);
  padding: 0.75rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem; letter-spacing: 0.1em;
  display: flex; align-items: center;
}
.contact-map-footer {
  background: var(--cream-light);
  border-top: 1px solid var(--border-gold);
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem; color: var(--text-med);
}
.contact-map-footer a { color: var(--gold-dark); font-size: 0.78rem; }
.contact-map-footer a:hover { color: var(--dark-brown); }

/* Hours box */
.contact-hours-box {
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201, 164, 74, 0.14) 0%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 247, 240, 0.96) 100%);
  border: 1px solid var(--border-gold);
  padding: 1.8rem 2rem;
  box-shadow: 0 10px 30px rgba(26, 13, 2, 0.10);
}
.contact-hours-title {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown); font-size: 1.08rem;
  margin-bottom: 1.2rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-gold);
}
.contact-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(201, 164, 74, 0.16);
}
.contact-hours-row:last-of-type { border-bottom: none; }
.contact-hours-day { color: var(--text-med); font-size: 0.88rem; }
.contact-hours-time { font-size: 0.88rem; }
.contact-hours-time.open  { color: var(--gold-dark); font-weight: 700; }
.contact-hours-time.appt  { color: rgba(74, 58, 26, 0.55); font-style: italic; }
.contact-hours-note {
  margin-top: 1rem; font-size: 0.78rem;
  color: rgba(74, 58, 26, 0.60); line-height: 1.6; margin-bottom: 0;
}

/* Quick contact links */
.contact-quick-box {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 1.6rem;
}
.contact-quick-title {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown); font-size: 0.97rem;
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-gold);
}
.contact-quick-link {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; padding: 0.7rem 0.8rem;
  border: 1px solid transparent;
  transition: var(--trans);
}
.contact-quick-link:hover {
  border-color: var(--border-gold);
  background: rgba(201, 164, 74,0.05);
  transform: translateX(4px);
}
.contact-quick-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, var(--dark-brown), var(--espresso));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
  transition: var(--trans);
}
.contact-quick-link:hover .contact-quick-icon { box-shadow: 0 0 14px rgba(201, 164, 74,0.35); }
.contact-quick-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.1rem;
}
.contact-quick-value { font-size: 0.88rem; color: var(--dark-brown); font-weight: 600; }

/* Review form box */
.review-form-box {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(26,13,2,0.08);
}

/* Social tiles */
.contact-social-tile {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.6rem 2rem;
  border: 1px solid rgba(201, 164, 74,0.15);
  transition: var(--trans);
  min-width: 120px;
}
.contact-social-tile:hover {
  border-color: rgba(201, 164, 74,0.45);
  background: rgba(201, 164, 74,0.06);
  transform: translateY(-5px);
}
.contact-social-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201, 164, 74,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.3rem; margin-bottom: 0.8rem;
  background: rgba(201, 164, 74,0.08); transition: var(--trans);
}
.contact-social-tile:hover .contact-social-icon {
  background: rgba(201, 164, 74,0.18);
  box-shadow: 0 0 18px rgba(201, 164, 74,0.3);
}
.contact-social-name { color: var(--dark-brown); font-size: 0.82rem; font-weight: 600; }
.contact-social-handle { color: var(--text-light); font-size: 0.72rem; margin-top: 0.15rem; }

/* ============================================================
   FOOTER — warm charcoal (minimal pure black)
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #2C2620 0%, #1F1B17 48%, #181512 100%);
  padding-top: 4.5rem;
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A44A 15%, #E8C76B 50%, #C9A44A 85%, transparent);
  box-shadow: 0 0 20px rgba(201, 164, 74, 0.35);
}
.footer::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse 90% 100% at 50% 0%, rgba(201, 164, 74, 0.1) 0%, transparent 68%);
}
.footer > * { position: relative; z-index: 1; }
.footer .container { position: relative; z-index: 1; }
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.footer-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  margin-top: 0.15rem;
  box-shadow: 0 0 0 1px rgba(201, 164, 74,0.2);
}
.footer-desc { font-size:0.87rem; color:rgba(215, 198, 160,0.72); line-height:1.88; margin-top:1rem; }
.footer-heading {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light); font-size: 0.92rem; letter-spacing: 0.06em;
  margin-bottom: 1.2rem; position: relative; padding-bottom: 0.65rem;
  text-transform: uppercase;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:0.55rem; }
.footer-links a {
  color: rgba(215, 198, 160,0.72); font-size: 0.86rem;
  display: inline-flex; align-items: center; gap: 0.45rem; transition: var(--trans);
}
.footer-links a::before { content:'›'; color:var(--gold-light); font-size:1rem; }
.footer-links a:hover { color:#fff; padding-left:4px; }
/* Footer contact text */
.footer-contact-text { color: rgba(215, 198, 160,0.78) !important; font-size: 0.88rem; }
.social-links { display:flex; gap:0.65rem; margin-top:1rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(215, 198, 160,0.35);
  color: rgba(215, 198, 160,0.72);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--trans);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 18px rgba(201, 164, 74,0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(215, 198, 160,0.14);
  padding: 1.2rem 0; margin-top: 3rem;
  background: rgba(0,0,0,0.12);
}
.footer-bottom p { font-size:0.79rem; color:rgba(215, 198, 160,0.55); margin:0; }
.footer-bottom a { color:rgba(215, 198, 160,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(26,13,2,0.07);
}
.filter-bar .form-select,
.filter-bar .form-control {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border-gold);
  border-radius: 0; font-size:0.84rem; color:var(--text-dark);
}
.filter-bar .form-select:focus,
.filter-bar .form-control:focus { border-color:var(--gold); box-shadow:0 0 0 2px rgba(201, 164, 74,0.12); }

/* ============================================================
   ALERTS & FLASH
   ============================================================ */
.alert-vintage { border-radius:0; border:none; border-left:4px solid; font-size:0.88rem; }
.alert-vintage-success { background:rgba(0,0,0,0.06); border-color:#333333; color:#1a1a1a; }
.alert-vintage-danger  { background:rgba(0,0,0,0.08); border-color:#555555; color:#2a2a2a; }

/* ============================================================
   FLOATING DOCK — chat + WhatsApp (fixed bottom-right)
   ============================================================ */
.fab-dock {
  position: fixed;
  right: 1.15rem;
  bottom: calc(2.2rem + 44px + 12px);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.fab-dock__chat {
  /* Panel is position:absolute; do not size this <details> to the summary only
     (otherwise max-width:100% on the panel would shrink the chat to ~54px). */
  position: relative;
  align-self: flex-end;
  overflow: visible;
}
.fab-dock__chat > summary {
  list-style: none;
  cursor: pointer;
}
.fab-dock__chat > summary::-webkit-details-marker { display: none; }
.fab-dock__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  text-decoration: none;
  line-height: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: var(--trans-fast);
}
.fab-dock__btn i.fab-dock__btn-icon {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--ink);
  /* Font Awesome: ensure icon font applies */
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.fab-dock__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.fab-dock__btn--chat {
  background: linear-gradient(145deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  color: var(--ink) !important;
}
.fab-dock__btn--chat:hover {
  color: var(--espresso) !important;
  filter: brightness(1.06);
}
.fab-dock__btn--chat:hover i.fab-dock__btn-icon {
  color: var(--espresso);
}
.fab-dock__btn--wa {
  background: #25d366;
  color: #fff !important;
  font-size: 1.52rem;
}
.fab-dock__btn--wa:hover {
  background: #20bd5a;
  color: #fff !important;
}
.fab-dock__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.55rem);
  width: min(320px, calc(100vw - 2rem));
  /* Do not set max-width:100% here — % resolves vs. <details> (~fab btn width), not the viewport. */
  padding: 0;
  background: #faf8f4;
  border: 1px solid var(--border-gold-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(201, 164, 74, 0.08);
  border-radius: 0;
  animation: fabPanelIn 0.28s ease;
  display: flex;
  flex-direction: column;
  max-height: min(72vh, 440px);
  overflow: hidden;
  box-sizing: border-box;
}
.fab-dock__chat-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.6rem 0.45rem 0.6rem 0.85rem;
  background: linear-gradient(180deg, #fff 0%, #f5f0e8 100%);
  border-bottom: 1px solid var(--border-gold);
  flex-shrink: 0;
}
.fab-dock__chat-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex: 1;
}
.fab-dock__chat-bar-text {
  min-width: 0;
}
.fab-dock__close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--trans-fast);
  line-height: 1;
}
.fab-dock__close i { font-size: 1.1rem; }
.fab-dock__close:hover {
  color: var(--dark-brown);
  background: rgba(0, 0, 0, 0.07);
}
.fab-dock__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.fab-dock__chat-bar-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.fab-dock__chat-bar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.2;
}
.fab-dock__chat-bar-sub {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.12rem;
}
.fab-dock__thread {
  padding: 0.75rem 0.9rem 0.5rem;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  background: #f0ebe4;
  border-bottom: 1px solid var(--border-gold);
}
.fab-dock__msg {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
}
.fab-dock__msg:last-child { margin-bottom: 0.35rem; }
.fab-dock__msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-pale), var(--gold-light));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark-brown);
  font-size: 0.75rem;
}
.fab-dock__msg-bubble {
  background: #fff;
  border: 1px solid var(--border-gold);
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-med);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border-radius: 0 0.4rem 0.4rem 0.4rem;
  min-width: 0;
}
.fab-dock__panel-footer {
  padding: 0.65rem 0.85rem 0.6rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  background: #faf8f4;
  border-top: 1px solid var(--border-gold);
}
.fab-dock__compose {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.fab-dock__input {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  border: 1px solid var(--border-gold);
  padding: 0.48rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 0;
  background: #fff;
  color: var(--text-dark);
  box-sizing: border-box;
}
.fab-dock__input::placeholder { color: var(--text-light); }
.fab-dock__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 164, 74, 0.18);
}
.fab-dock__send {
  flex: 0 0 auto;
  width: 40px;
  min-width: 40px;
  height: auto;
  min-height: 40px;
  border: 1px solid var(--border-gold-strong);
  background: linear-gradient(180deg, #fff9ef, #f0e6d4);
  color: var(--gold-dark);
  cursor: pointer;
  transition: var(--trans-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.fab-dock__send:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  border-color: var(--gold);
}
.fab-dock__enquire-btn {
  display: flex !important;
  justify-content: center;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
.fab-dock__chat[open] .fab-dock__btn--chat {
  box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.35), 0 4px 18px rgba(0, 0, 0, 0.2);
}
@keyframes fabPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .fab-dock__panel { animation: none; }
  .fab-dock__btn:hover { transform: none; }
}
.fab-dock__panel-hint {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0.35rem 0 0;
  padding: 0;
  text-align: center;
  opacity: 0.88;
}
@media (max-width: 576px) {
  .fab-dock {
    right: 0.85rem;
    bottom: calc(1.35rem + 44px + 10px);
  }
  .fab-dock__btn { width: 50px; height: 50px; }
  .fab-dock__btn i.fab-dock__btn-icon { font-size: 1.32rem; }
  .fab-dock__btn--wa { font-size: 1.42rem; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed; bottom: 2.2rem; right: 2.2rem;
  width: 44px; height: 44px;
  background: var(--dark-brown);
  border: 1px solid var(--border-gold-strong);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 0.87rem; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--trans); z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 0 20px rgba(201, 164, 74,0.4);
}

/* ============================================================
   BEFORE/AFTER SWIPER
   ============================================================ */
.ba-swiper-wrapper {
  position: relative;
  background: var(--espresso);
  overflow: hidden;
}
.ba-swiper-wrapper .swiper { width: 100%; }
.ba-slide {
  position: relative;
  background: var(--ink);
}
.ba-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
@media (max-width: 600px) {
  .ba-slide-inner { grid-template-columns: 1fr; }
}
.ba-img-box {
  position: relative; overflow: hidden;
}
.ba-img-box img {
  width: 100%; height: 400px; object-fit: cover;
  transition: transform 0.6s ease;
}
.ba-img-box:hover img { transform: scale(1.04); }
.ba-label {
  position: absolute; top: 1rem; left: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.22rem 0.85rem; z-index: 2;
}
.ba-label-before {
  background: rgba(28,13,2,0.88); color: var(--gold-light);
}
.ba-label-after {
  background: rgba(55,55,55,0.92); color: #f0f0f0;
}
.ba-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(28,13,2,0.92) 0%, transparent 100%);
}
.ba-info h5 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.05rem; margin-bottom: 0.15rem;
}
.ba-info p { color: rgba(215, 198, 160,0.75); font-size: 0.8rem; margin: 0; }
.ba-category-tag {
  display: inline-block;
  background: rgba(201, 164, 74,0.2);
  border: 1px solid rgba(201, 164, 74,0.35);
  color: var(--gold-light);
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.15rem 0.6rem;
  margin-bottom: 0.4rem;
}
/* Swiper custom nav for BA slider */
.ba-swiper-nav {
  position: absolute; top: 50%; z-index: 10;
  display: flex; gap: 0.5rem;
}
.ba-btn-prev, .ba-btn-next {
  width: 44px; height: 44px;
  background: rgba(28,13,2,0.82);
  border: 1px solid rgba(201, 164, 74,0.4);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
  font-size: 0.9rem;
}
.ba-btn-prev:hover, .ba-btn-next:hover {
  background: var(--gold); color: var(--ink);
}
.ba-btn-prev { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); }
.ba-btn-next { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
.ba-pagination {
  display: flex; justify-content: center; gap: 0.4rem;
  padding: 1rem 0; background: var(--espresso);
}
.ba-pagination .swiper-pagination-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201, 164, 74,0.35); opacity: 1; cursor: pointer;
  transition: var(--trans);
}
.ba-pagination .swiper-pagination-bullet-active {
  background: var(--gold-light); width: 22px; border-radius: 3px;
}

/* ============================================================
   VALUE ITEMS (about page, features)
   ============================================================ */
.value-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--cream-light);
  border: 1px solid var(--border-gold);
  transition: var(--trans);
  box-shadow: 0 2px 10px rgba(26,13,2,0.06);
  height: 100%;
}
.value-item:hover {
  border-color: var(--border-gold-strong);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26,13,2,0.14);
}
.value-icon {
  width: 54px; height: 54px;
  border: 1px solid var(--border-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
  background: rgba(201, 164, 74,0.06); transition: var(--trans);
}
.value-item:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--cream-light);
  box-shadow: 0 0 18px rgba(201, 164, 74,0.4);
}
.value-item h5 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown); font-size: 1rem;
  margin-bottom: 0.35rem;
}
.value-item p { font-size: 0.87rem; color: var(--text-med); margin: 0; line-height: 1.75; }

/* ============================================================
   SECTION INTRO BLOCK — reusable
   ============================================================ */
.section-intro { text-align: center; margin-bottom: 3.5rem; }
.section-intro .section-badge { display: block; margin-bottom: 0.4rem; }
.section-intro .section-title { margin-bottom: 0.5rem; }

/* ============================================================
   DIVIDER GOLD LINE
   ============================================================ */
.divider-gold { border:none; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); margin:1.6rem 0; }
.divider-gold-sm { border:none; height:1px; background:linear-gradient(90deg,transparent,var(--border-gold-strong),transparent); margin:1rem 0; width: 80px; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold       { color:var(--gold)!important; }
.text-gold-light { color:var(--gold-light)!important; }
.text-gold-pale  { color:var(--gold-pale)!important; }
.text-dark-brown { color:var(--dark-brown)!important; }
.text-cream      { color:var(--cream)!important; }
.text-amber      { color:var(--amber)!important; }
.bg-ink          { background-color:var(--ink)!important; }
.bg-dark-brown   { background-color:var(--dark-brown)!important; }
.bg-cream-light  { background-color:var(--cream-light)!important; }
.ls              { letter-spacing:0.17em; }
.ls-wide         { letter-spacing:0.28em; }
.font-playfair   { font-family:'Playfair Display',serif; }
.font-cormorant  { font-family:'Cormorant Garamond',serif; }
.font-im-fell    { font-family:'IM Fell English',serif; }
.font-italic     { font-style: italic; }
.border-gold     { border-color: var(--border-gold)!important; }

/* Fade-in-up animation */
.fade-in-up { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease,transform 0.7s ease; }
.fade-in-up.visible { opacity:1; transform:translateY(0); }
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease,transform 0.65s ease; }
.reveal.revealed { opacity:1; transform:translateY(0); }

/* ============================================================
   PRODUCT DETAIL — image gallery (slide + thumbnails)
   ============================================================ */
.product-gallery-sticky {
  position: sticky;
  top: 100px;
}
.product-gallery-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  border: 1px solid var(--border-color);
  background: var(--parchment, #faf8f5);
}
.product-gallery-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.product-gallery-arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 72px;
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--cream-light, #f5f0e6);
  filter: drop-shadow(0 1px 2px rgba(40, 28, 14, 0.55));
  transition: color 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}
.product-gallery-arrow-prev {
  left: 6px;
}
.product-gallery-arrow-next {
  right: 6px;
}
.product-gallery-arrow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  line-height: 1;
  border-radius: 2px;
  border: 1px solid rgba(154, 123, 46, 0.65);
  background: linear-gradient(
    165deg,
    rgba(62, 48, 32, 0.92) 0%,
    rgba(42, 32, 22, 0.94) 45%,
    rgba(28, 22, 16, 0.96) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 3px 12px rgba(40, 28, 14, 0.28);
}
.product-gallery-arrow:hover .product-gallery-arrow-inner {
  border-color: rgba(201, 164, 74, 0.95);
  color: var(--gold-light, #e8d9a8);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 4px 14px rgba(90, 70, 30, 0.35);
}
.product-gallery-arrow:focus-visible {
  outline: none;
}
.product-gallery-arrow:focus-visible .product-gallery-arrow-inner {
  outline: 2px solid var(--gold, #c9a43c);
  outline-offset: 2px;
}
.product-gallery-arrow:active .product-gallery-arrow-inner {
  transform: translateY(1px);
}
.product-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.03);
}
.product-gallery-arrow:active {
  transform: translateY(-50%) scale(0.98);
}
.product-gallery-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.product-gallery-slide {
  flex-shrink: 0;
  box-sizing: border-box;
}
.product-gallery-slide-link {
  display: block;
  line-height: 0;
}
.product-gallery-slide-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: sepia(15%) saturate(85%);
  cursor: zoom-in;
}
.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.85rem;
}
.product-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-gallery-thumb:hover,
.product-gallery-thumb:focus-visible {
  opacity: 1;
  outline: none;
}
.product-gallery-thumb:focus-visible {
  box-shadow: 0 0 0 2px var(--gold, #c9a43c);
}
.product-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--gold-dark, #9a7b2e);
  box-shadow: 0 2px 8px rgba(90, 70, 30, 0.15);
}
.product-gallery-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}
.product-gallery-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}
.product-gallery-placeholder {
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:991px) {
  .category-grid { grid-template-columns:repeat(3,1fr); }
  .cat-card { grid-column:span 1!important; }
  .featured-split { grid-template-columns:1fr; }
  .featured-split-img img { min-height:320px; }
  .featured-split-content { padding:3rem 2.5rem; }
  .timeline::before { left:24px; }
  .timeline-item,.timeline-item:nth-child(even) { flex-direction:column; padding-left:62px; }
  .timeline-content,
  .timeline-item:nth-child(odd)  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { width:100%; margin:0; }
  .timeline-dot { left:24px; top:0; transform:none; }
}
@media (max-width:767px) {
  .section-padding { padding:3.8rem 0; }
  .section-padding-lg { padding:5rem 0; }
  .hero-stat { padding:0 1.4rem; }
  .category-grid { grid-template-columns:repeat(2,1fr); }
  .torn-divider { height:60px; }
  .page-hero { min-height:240px; }
  .about-img-frame::before,.about-img-frame::after { width:42%; height:42%; }
  .featured-split-content { padding:2.5rem 1.8rem; }
  .product-gallery-slide-img { height:320px; }
  .product-gallery-sticky { position:relative; top:auto; }
  .product-gallery-arrow {
    width: 36px;
    height: 60px;
  }
  .product-gallery-arrow-prev { left: 4px; }
  .product-gallery-arrow-next { right: 4px; }
  .product-gallery-arrow-inner { font-size: 0.88rem; }
}
@media (max-width:575px) {
  .subscribe-banner { padding:3.5rem 0; }
}


/*css*/
.py-5 {
    /*padding-top: -7rem!important;*/
    padding-bottom: 3rem !important;
}