/* =============================================
   DB HI-FI — Light Luxury Design
   Style: Bang & Olufsen / Apple
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === DARK (default) — black canvas · white text · emerald accent === */
  --bg:            #0A0A0A;
  --bg-raised:     #131313;
  --bg-panel:      #1A1A1A;
  --bg-card:       #161616;
  --bg-hover:      #1F1F1F;

  --border:        #262626;
  --border-subtle: #1E1E1E;
  --border-accent: #4A9D6F;

  --text:          #F5F5F5;
  --text-secondary:#B8B8B8;
  --text-muted:    #7A7A7A;

  --gold:          #4A9D6F;
  --gold-light:    #67B58A;
  --gold-pale:     #8BCCAA;
  --gold-dark:     #2F7A52;
  --gold-glow:     rgba(74,157,111,0.14);

  --accent:        #4A9D6F;
  --accent-light:  #67B58A;
  --accent-dark:   #2F7A52;
  --cream:         #131313;
  --cream-dark:    #1A1A1A;
  --white:         #161616;
  --border-light:  #1E1E1E;
  --ink:           #0C0C0A;

  --header-h: 80px;
  --max-w: 1320px;
  --serif: 'Space Grotesk', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === LIGHT (optional, via toggle) — warm bone · ink · deep emerald === */
html[data-theme="light"] {
  --bg:            #F2EEE6;
  --bg-raised:     #FBFAF6;
  --bg-panel:      #E8E2D6;
  --bg-card:       #FFFFFF;
  --bg-hover:      #ECE6DA;

  --border:        #DCD5C7;
  --border-subtle: #E7E1D5;
  --border-accent: #1F7A52;

  --text:          #14130F;
  --text-secondary:#56514A;
  --text-muted:    #8A8479;

  --gold:          #1F7A52;
  --gold-light:    #2C9466;
  --gold-pale:     #3FA877;
  --gold-dark:     #134D34;
  --gold-glow:     rgba(31,122,82,0.12);

  --accent:        #1F7A52;
  --accent-light:  #2C9466;
  --accent-dark:   #134D34;
  --cream:         #FBFAF6;
  --cream-dark:    #E8E2D6;
  --white:         #FFFFFF;
  --border-light:  #E7E1D5;
}

html { transition: none; }
body, .site-header, .section, .prod-card, .featured-card, .testimonial,
.cat-tile, .footer, .cta-banner { transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 6.5vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); letter-spacing: -0.01em; }
h4 { font-size: 1.2rem; font-weight: 400; }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }

.label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition);
  background: transparent;
  border-bottom: 1px solid transparent;
}
/* When transparent over hero image — light text */
.site-header.hero-over .site-logo { color: rgba(245,245,245,0.95); }
.site-header.hero-over .site-logo span { color: var(--gold); }
.site-header.hero-over .nav-list a { color: rgba(245,245,245,0.7); }
.site-header.hero-over .nav-list a:hover,
.site-header.hero-over .nav-list a.active { color: rgba(245,245,245,1); }
.site-header.hero-over .burger span { background: rgba(245,245,245,0.9); }

.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.site-logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color var(--transition);
}
.site-logo span { color: var(--gold); }

.nav-list {
  display: flex;
  gap: 2.75rem;
  align-items: center;
}
.nav-list a {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-list a:hover { color: var(--text); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--text); }

.nav-cta {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--border-accent);
  color: var(--gold) !important;
  transition: all var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: #FFFFFF !important; border-color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
}
.burger span {
  width: 22px; height: 1px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.15rem;
  padding: calc(var(--header-h) + 1.4rem) 1.5rem 3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.mobile-nav a:hover { color: var(--gold); }
.mnav-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  opacity: 0.92;
}
.mobile-nav a.mnav-cat {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}
.mobile-nav a.mnav-cat:hover { color: var(--gold); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.04) 100%);
}

/* === HERO V2 — Typography-led, no photo === */
.hero-v2 {
  background: #050505;
  color: rgba(245,245,245,0.97);
  padding-top: var(--header-h);
}
.hero-v2::before {
  /* Hide the original gold left-edge bar (it doesn't suit v2) */
  display: none;
}
.hero-bg-v2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(74,157,111,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(74,157,111,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #050505 0%, #0A0A0A 45%, #131313 100%);
}
.hero-bg-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(74,157,111,0.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(74,157,111,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Signature audio-waveform canvas */
.hero-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 38%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 38%, #000 100%);
}
@media (max-width: 760px) {
  /* On phones the headline spans full width — keep the wave low & faint */
  .hero-3d { opacity: 0.5; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 55%); mask-image: linear-gradient(to bottom, transparent 0%, #000 55%); }
}

.hero-decor-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-decor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.hero-decor-dot-1 { top: 18%; right: 14%; box-shadow: 0 0 28px var(--gold); }
.hero-decor-dot-2 { bottom: 22%; right: 32%; opacity: 0.3; }
.hero-decor-dot-3 { top: 40%; right: 8%; opacity: 0.4; box-shadow: 0 0 18px rgba(74,157,111,0.5); }
.hero-decor-line-v {
  position: absolute;
  top: 12%;
  bottom: 12%;
  right: 6%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(74,157,111,0.4) 30%, rgba(74,157,111,0.4) 70%, transparent 100%);
}

.hero-content-v2 {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-left: 0;
  padding-right: 2rem;
}
.hero-content-v2 h1 {
  color: rgba(250,250,250,0.97);
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 200;
  margin-bottom: 2rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-content-v2 h1 em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
  background: linear-gradient(120deg, var(--gold-pale) 0%, #A8D9C0 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(160,160,160,0.9);
  margin-bottom: 1.75rem;
}
.hero-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-tagline {
  color: rgba(220,220,220,0.78);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.85rem;
  max-width: 600px;
  letter-spacing: 0.005em;
}
.hero-tagline strong {
  color: rgba(245,245,245,0.92);
  font-weight: 400;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(245,245,245,0.1);
  max-width: 600px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-meta-num {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
}
.hero-meta-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(160,160,160,0.65);
  line-height: 1.45;
}
.hero-meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(245,245,245,0.1);
}

@media (max-width: 700px) {
  .hero-meta { flex-wrap: wrap; gap: 1rem; }
  .hero-meta-divider { display: none; }
  .hero-meta-num { font-size: 1.5rem; }
}
/* Decorative gold line */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 10%, var(--gold) 40%, var(--gold) 60%, transparent 90%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: var(--header-h);
  padding-left: 2rem;
}
.hero-content .label { margin-bottom: 1.75rem; color: rgba(180,180,180,0.95); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-content h1 {
  color: rgba(245,245,245,0.97);
  margin-bottom: 1.75rem;
  font-weight: 200;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero-content p {
  color: rgba(245,245,245,0.88);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 480px;
  line-height: 1.85;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3.5rem;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--text);
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold);
}
.page-hero .label { margin-bottom: 1rem; }
.page-hero h1 { max-width: 800px; margin: 0 auto; }
.page-hero p { max-width: 580px; margin: 1.75rem auto 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: #FFFFFF;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: rgba(245,245,245,0.92);
  border: 1px solid rgba(245,245,245,0.45);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,0.12); }

.btn-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover { background: var(--text); color: var(--white); border-color: var(--text); }

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

.hero-btns { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* === DIVIDER === */
.divider { height: 1px; background: var(--border); }
.divider-gold { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }

/* === SECTION HEADERS === */
.section-header { margin-bottom: 3rem; }
.section-header .label { margin-bottom: 0.85rem; }
.section-header h2 { max-width: 680px; }
.section-header p { max-width: 540px; margin-top: 1.25rem; color: var(--text-secondary); }
.section-header.center { text-align: center; }
.section-header.center h2 { margin: 0 auto; }
.section-header.center p { margin: 1.25rem auto 0; }

/* === CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 0 0 1px var(--border-accent);
}

.card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-panel);
  position: relative;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover .card-img::after { opacity: 1; }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(1) saturate(0.9);
}
.card:hover .card-img img { transform: scale(1.06); filter: brightness(1.02) saturate(1); }

.card-body { padding: 1.75rem; }
.card-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.card-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--text); margin-bottom: 0.4rem; line-height: 1.2; }
.card-count { font-size: 0.75rem; color: var(--text-muted); font-weight: 300; letter-spacing: 0.05em; }
.card-text { font-size: 0.88rem; color: var(--text-secondary); margin-top: 0.85rem; line-height: 1.7; }

.card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.card-link:hover { color: var(--gold); background: rgba(196,148,58,0.05); }
.card-link .arrow { font-size: 1rem; transition: transform var(--transition); }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-gap { gap: 1.5rem !important; }

/* === SPLIT SECTION === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.split-img { overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95) saturate(0.88); transition: filter 0.6s ease; }
.split:hover .split-img img { filter: brightness(1) saturate(1); }
.split-content { padding: 4rem 5rem; background: var(--bg-raised); }
.split-content .label { margin-bottom: 1rem; }
.split-content h2 { margin-bottom: 1.75rem; }
.split-content p { margin-bottom: 1.5rem; }
.split-content p:last-of-type { margin-bottom: 2.5rem; }
.split.reverse .split-img { order: 2; }
.split.reverse .split-content { order: 1; }

/* === FEATURE CARDS === */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature:hover { background: var(--bg-hover); border-color: var(--border-accent); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.feature-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--gold);
  transition: all var(--transition);
}
.feature:hover .feature-icon { background: var(--gold-glow); border-color: var(--gold); }
.feature h3 { font-size: 1.35rem; font-weight: 300; margin-bottom: 0.85rem; }
.feature p { font-size: 0.9rem; }

/* === BRANDS STRIP === */
.brands-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
  position: relative;
  /* Soft fade on edges so the loop feels seamless visually */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.brands-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  animation: scroll-brands 50s linear infinite;
  will-change: transform;
}
/* Each logo sits in its own padded cell with a right divider */
.brands-strip-inner img {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  display: block;
  background: transparent;
  padding: 8px 28px;
  box-sizing: content-box;
  border-right: 1px solid var(--border);
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--transition), filter var(--transition);
}
.brands-strip-inner img:hover {
  opacity: 1;
  filter: brightness(0) invert(1);
}
@keyframes scroll-brands {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* === BRAND CARD === */
.brand-card {
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.brand-card::after {
  content: '→';
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
}
.brand-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  background: var(--bg-hover);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.brand-card:hover::after { opacity: 1; transform: translateX(0); color: var(--gold); }
.brand-logo-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
}
.brand-logo-wrap img {
  max-height: 36px;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity var(--transition), filter var(--transition);
}
.brand-card:hover .brand-logo-wrap img {
  opacity: 1;
  filter: brightness(1.1) contrast(0.85) invert(1) grayscale(20%);
}
.brand-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; margin-bottom: 0.6rem; color: var(--text); }
.brand-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* === CTA BANNER === */
.cta-banner {
  background: #0F0F0F;
  border-top: none;
  border-bottom: none;
  color: rgba(245,245,245,0.95);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--gold);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--gold);
}
.cta-banner h2 { margin-bottom: 1.25rem; color: rgba(245,245,245,0.97); }
.cta-banner p { margin-bottom: 3rem; max-width: 480px; margin-left: auto; margin-right: auto; color: rgba(170,170,170,0.8); }
.cta-banner .label { margin-bottom: 1rem; color: var(--gold); }
.cta-btns { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* stats-row defined in HOME PAGE ENHANCEMENTS above */

/* === GALLERY GRID === */
.gallery-grid {
  columns: 3;
  column-gap: 1.5px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.55s ease;
  filter: brightness(0.95) saturate(0.85);
}
.gallery-item::after {
  content: '↗';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 1.8rem;
  color: var(--gold);
  transition: transform var(--transition);
  z-index: 2;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.35);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
  border: 1px solid transparent;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.9) saturate(0.85); }
.gallery-item:hover::before { opacity: 1; border-color: var(--border-accent); }
.gallery-item:hover::after { transform: translate(-50%, -50%) scale(1); }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(242,237,229,0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  transition: opacity 0.3s ease;
}
.lightbox-img.loading { opacity: 0.4; }
.lightbox-counter {
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lightbox-caption {
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
}
.lightbox-close {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 1.3rem;
  cursor: pointer;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); background: var(--bg-raised); }
.lightbox-prev { left: 1.75rem; }
.lightbox-next { right: 1.75rem; }

/* === PRODUCT MODAL === */
.prod-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 1rem;
}
.prod-modal.open { opacity: 1; pointer-events: all; }
.prod-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(3px);
}
.prod-modal-inner {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1080px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}
.prod-modal-img-col {
  background: linear-gradient(155deg, #F7F5F0 0%, #ECE8DF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.prod-modal-img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(74,157,111,0.06) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(74,157,111,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.prod-modal-img { width: 100%; max-width: 380px; object-fit: contain; position: relative; z-index: 1; mix-blend-mode: multiply; transition: opacity 0.2s ease; }
.prod-modal-img.swapping { opacity: 0.4; }

/* Image navigation buttons */
.prod-modal-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  padding-bottom: 3px;
}
.prod-modal-img-col.has-gallery .prod-modal-img-nav { display: flex; }
.prod-modal-img-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.prod-modal-img-prev { left: 1rem; }
.prod-modal-img-next { right: 1rem; }

/* Thumbnail strip */
.prod-modal-thumbs {
  display: none;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.5rem;
  z-index: 2;
  max-width: calc(100% - 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}
.prod-modal-img-col.has-gallery .prod-modal-thumbs { display: flex; }
.prod-modal-thumb {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.prod-modal-thumb img { width: 100%; height: 100%; object-fit: contain; }
.prod-modal-thumb:hover { border-color: var(--gold); }
.prod-modal-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

.prod-modal-img-counter {
  display: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.65rem;
  z-index: 2;
  font-family: var(--sans);
}
.prod-modal-img-col.has-gallery .prod-modal-img-counter { display: inline-block; }
.prod-modal-info { padding: 4rem 3.5rem; position: relative; }
.prod-modal-badge-wrap { margin-bottom: 1rem; min-height: 1.4rem; }
.prod-modal-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
}
.prod-modal-brand {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.prod-modal-name {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.prod-modal-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: 0.005em;
}
.prod-modal-price-row { margin-bottom: 2rem; }
.prod-modal-price-orig {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.15rem;
}
.prod-modal-price {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}
.prod-modal-price.is-sale { color: #C48070; }
.prod-modal-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.prod-modal-note {
  font-size: 0.67rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.prod-modal-category {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
}
.prod-modal-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.prod-modal-perk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}
.prod-modal-perk-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-accent);
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.prod-modal-perk-text {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  line-height: 1.4;
}
.prod-modal-close-x {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  z-index: 2;
}
.prod-modal-close-x:hover { border-color: var(--gold); color: var(--gold); }

.prod-modal-close {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: all 0.25s;
}
.prod-modal-close:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 680px) {
  .prod-modal-inner { grid-template-columns: 1fr; }
  .prod-modal-img-col { padding: 2.5rem; position: static; }
  .prod-modal-info { padding: 2rem 1.75rem 2.5rem; }
  .prod-modal-name { font-size: 1.5rem; }
}

/* === CONTACT === */
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--bg-raised);
  max-width: 1320px;
  margin: 0 auto;
}
.contact-form-col {
  padding: 5rem 4.5rem;
}
.contact-info-col {
  padding: 5rem 4.5rem;
  border-left: 1px solid var(--border);
}
.contact-form-col h2, .contact-info-col h2 { margin-bottom: 0.5rem; }
.contact-form-col .label, .contact-info-col .label { margin-bottom: 0.75rem; }
.contact-form-col > p { margin-bottom: 3rem; }

.form-group { margin-bottom: 2rem; }
.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); background: var(--bg-hover); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-checkbox { display: flex; gap: 0.85rem; align-items: flex-start; }
.form-checkbox input { margin-top: 4px; accent-color: var(--gold); }
.form-checkbox span { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

.contact-detail { display: flex; gap: 1.25rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.contact-detail h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-detail p { font-size: 0.9rem; margin: 0; color: var(--text-secondary); font-weight: 300; }
.contact-detail a { color: var(--text-secondary); transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold); }

/* === SERVICE CARDS === */
.service-card {
  padding: 3.5rem 3rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.service-card:hover { border-color: var(--border-accent); transform: translateY(-5px); background: var(--bg-hover); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 200;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.75rem;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: var(--gold); }
.service-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.service-card p { font-size: 0.9rem; }

/* === QUOTE BLOCK === */
.quote-block {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 0;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 2rem; left: 2.5rem;
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 200;
  color: var(--border-accent);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 200;
  font-style: italic;
  max-width: 820px;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.quote-author { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* === PARTNER CARD === */
.partner-block {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.partner-block h3 { margin-bottom: 0.85rem; font-size: 1.6rem; }
.partner-block p { font-size: 0.9rem; }
.partner-contact { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.partner-contact a { font-size: 0.88rem; color: var(--gold); transition: color var(--transition); }
.partner-contact a:hover { color: var(--gold-pale); }

/* === SERVICING PAGE === */
.serv-quick-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.serv-quick-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.serv-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--border);
}
.serv-quick-item:last-child { border-right: none; padding-right: 0; }
.serv-quick-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-accent);
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.serv-quick-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.serv-quick-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
a.serv-quick-value:hover { color: var(--gold); }
.serv-quick-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.005em;
  transition: color var(--transition);
}
a.serv-quick-sub:hover { color: var(--gold); }

@media (max-width: 1100px) {
  .serv-quick-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .serv-quick-item:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .serv-quick-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .serv-quick-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
  .serv-quick-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Service cards (numbered) */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.service-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 200;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.service-card p { font-size: 0.88rem; line-height: 1.75; color: var(--text-secondary); }

/* Pricing rows */
.serv-pricing-grid {
  max-width: 880px;
  margin: 0 auto;
}
.serv-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.serv-price-row:first-child { border-top: 1px solid var(--border); }
.serv-price-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.005em;
  flex: 1;
}
.serv-price-amt {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}

/* FAQ */
.serv-faq { margin-top: 2rem; }
.serv-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 0.6rem;
  transition: all var(--transition);
}
.serv-faq-item:hover { border-color: var(--gold-pale); }
.serv-faq-item summary {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  letter-spacing: 0.005em;
}
.serv-faq-item summary::-webkit-details-marker { display: none; }
.serv-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--gold);
  transition: transform var(--transition);
}
.serv-faq-item[open] summary::after { content: '−'; }
.serv-faq-item p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* CTA cards in footer banner */
.serv-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.serv-cta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,245,245,0.2);
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,245,245,0.95);
  transition: all var(--transition);
  text-decoration: none;
}
.serv-cta-card:hover {
  background: rgba(74,157,111,0.15);
  border-color: var(--gold);
}
.serv-cta-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.serv-cta-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(160,160,160,0.7);
}
.serv-cta-value {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(245,245,245,0.97);
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .serv-cta-grid { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.site-footer {
  background: #0F0F0F;
  border-top: none;
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: rgba(245,245,245,0.95);
  letter-spacing: 0.06em;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.85rem; font-weight: 300; color: rgba(170,170,170,0.7); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(170,170,170,0.5); margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col ul li a { font-size: 0.85rem; font-weight: 300; color: rgba(170,170,170,0.7); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.85rem; margin-bottom: 1.1rem; align-items: flex-start; }
.footer-contact-item span:first-child { font-size: 0.85rem; color: var(--gold); flex-shrink: 0; }
.footer-contact-item span:last-child, .footer-contact-item span:last-child a { font-size: 0.83rem; font-weight: 300; color: rgba(170,170,170,0.7); line-height: 1.7; transition: color var(--transition); }
.footer-contact-item span:last-child a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(170,170,170,0.5); font-weight: 300; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: rgba(170,170,170,0.6);
  transition: all var(--transition);
  font-weight: 400;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(74,157,111,0.15); }

/* === HERO ENTRANCE ANIMATION === */
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: heroEnter 0.7s ease forwards;
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* === INLINE STYLE OVERRIDES (for legacy inline bg refs) === */
section[style*="background: var(--cream)"],
section[style*="background:var(--cream)"] { background: var(--bg-raised) !important; }

/* === CATEGORY TILES (HOMEPAGE) === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cat-grid { grid-template-columns: 1fr; } }

.cat-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: block;
  transition: transform var(--transition), border-color var(--transition);
}
.cat-tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.cat-tile-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #F7F5F0 0%, #ECE8DF 100%);
  padding: 1.5rem;
}
.cat-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.cat-tile:hover .cat-tile-img img { transform: scale(1.08); }

.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  transition: background 0.4s ease;
}
.cat-tile:hover .cat-tile-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.15) 100%);
}
.cat-tile-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.cat-tile-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.cat-tile-count {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  transition: color var(--transition);
}
.cat-tile:hover .cat-tile-count { color: var(--gold-pale); }

.cat-tile-feature {
  border-color: var(--gold);
}
.cat-tile-feature .cat-tile-overlay {
  background: linear-gradient(0deg, rgba(74,157,111,0.85) 0%, rgba(74,157,111,0.4) 50%, rgba(74,157,111,0.1) 100%);
}

.cat-tile-all {
  background: #0F0F0F;
  border-color: #0F0F0F;
}
.cat-tile-all-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
}
.cat-tile-all .cat-tile-label {
  color: var(--gold-pale);
  margin-bottom: 1rem;
}
.cat-tile-all .cat-tile-name {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.cat-tile-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  display: inline-block;
}
.cat-tile-all:hover .cat-tile-arrow { transform: translateX(6px); }

/* === FEATURED PRODUCTS (HOMEPAGE) === */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section-header-row .label { margin-bottom: 0.65rem; }
.section-header-row h2 { margin: 0; }
.featured-all-link {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
  padding-bottom: 0.45rem;
}
.featured-all-link:hover { color: var(--gold); }
.featured-all-link span { transition: transform var(--transition); display: inline-block; }
.featured-all-link:hover span { transform: translateX(4px); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .featured-grid { grid-template-columns: 1fr; } }

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.featured-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}

.featured-card-img {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #F7F5F0 0%, #ECE8DF 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.featured-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.featured-card:hover .featured-card-img img {
  transform: scale(1.06);
}
.featured-card-badge {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}

.featured-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-card-brand {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.featured-card-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.55rem;
  letter-spacing: -0.005em;
}
.featured-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.featured-card-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  margin-top: auto;
}
.featured-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: auto;
}
.featured-card-price-orig {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.featured-card-price-sale {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: #C48070;
  letter-spacing: 0.01em;
}

/* === HOME PAGE ENHANCEMENTS === */

/* Philosophy strip — visual bridge between dark hero and light page */
.philosophy-strip {
  padding: 3rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  position: relative;
}
.philosophy-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--gold);
}
.philosophy-strip p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  max-width: 760px;
  margin: 0 auto;
}
.philosophy-strip p span { color: var(--gold); font-style: normal; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 2.4rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-ico {
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
}
@media (max-width: 760px) {
  .trust-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .trust-bar-inner { flex-wrap: nowrap; justify-content: flex-start; gap: 1.4rem; width: max-content; }
}

/* === TESTIMONIALS === */
.testimonials-section { background: var(--bg-raised); }
.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.rating-row .stars { color: var(--gold); letter-spacing: 0.12em; font-size: 1.05rem; }
.rating-row .rating-text { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.t-stars { color: var(--gold); letter-spacing: 0.16em; font-size: 0.95rem; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.t-name { font-size: 0.82rem; font-weight: 500; color: var(--text); letter-spacing: 0.04em; }
.t-loc { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }

/* Stats row — refined */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 2.25rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-hover); }
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Featured spotlight */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--bg-panel);
}
.spotlight-img {
  overflow: hidden;
  position: relative;
}
.spotlight-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.92) saturate(0.85);
}
.spotlight:hover .spotlight-img img { transform: scale(1.04); }
.spotlight-img-badge {
  position: absolute;
  top: 2rem; left: 2rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
}
.spotlight-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-content .label { margin-bottom: 0.85rem; }
.spotlight-content h2 { margin-bottom: 1.25rem; }
.spotlight-content p { margin-bottom: 1.5rem; }
.spotlight-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

/* Gallery mosaic */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  background: var(--border);
}
.gallery-mosaic-item {
  overflow: hidden;
  position: relative;
  background: var(--bg-panel);
}
.gallery-mosaic-item:first-child {
  grid-row: 1 / 3;
}
.gallery-mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.94) saturate(0.88);
  min-height: 220px;
}
.gallery-mosaic-item:first-child img { min-height: 100%; }
.gallery-mosaic-item:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.gallery-mosaic-item::after {
  content: '↗';
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-mosaic-item:hover::after { opacity: 1; }

/* Reason cards */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.reason {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.reason:hover { background: var(--bg-hover); border-color: var(--border-accent); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.reason-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 200;
  color: var(--border);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
  display: block;
}
.reason:hover .reason-num { color: var(--gold-pale); }
.reason h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.reason p { font-size: 0.88rem; line-height: 1.75; }

/* Scroll cue on hero */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.55;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F0EAE0;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #F0EAE0, transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.35; }
}

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-content { padding: 3rem 2rem; }
  .reasons { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic-item:first-child { grid-row: 1; }
}
@media (max-width: 640px) {
  .gallery-mosaic { grid-template-columns: 1fr; }
  .spotlight-content { padding: 2.5rem 1.5rem; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .split-content { padding: 3.5rem 3.5rem; }
}

@media (max-width: 900px) {
  .nav-list, .nav-cta { display: none; }
  .burger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; gap: 0; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-info-col { border-left: none; border-top: 1px solid var(--border); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-img, .split.reverse .split-content { order: unset; }
  .split-content { padding: 3rem 2rem; }
  .gallery-grid { columns: 2; }
  .partner-block { flex-direction: column; gap: 2rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 4.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { columns: 1; }
  .hero-content h1 { font-size: 2.8rem; }
  .contact-form-col, .contact-info-col { padding: 3rem 1.75rem; }
}

/* =============================================
   GLOBAL POLISH & ACCESSIBILITY
   ============================================= */

/* Skip link — visible only on keyboard focus */
.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 9999;
  background: var(--gold);
  color: #04140C;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.2rem;
  border-radius: 3px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; outline: 2px solid #fff; outline-offset: 2px; }

/* Visible, on-brand focus ring for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
[tabindex="-1"]:focus { outline: none; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 12px rgba(74,157,111,0.6);
  transition: width 0.08s linear;
}

/* Back-to-top button */
.to-top {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  z-index: 190;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,20,20,0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-accent);
  color: var(--gold);
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--gold); color: #04140C; }
@media (max-width: 640px) { .to-top { bottom: 1rem; right: 1rem; width: 44px; height: 44px; } }

/* Respect reduced-motion globally */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up, .fade-in, .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .brands-strip-inner { animation: none !important; }
}

/* === 404 PAGE === */
.error-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(74,157,111,0.14) 0%, transparent 60%),
    var(--bg);
}
.error-hero .container { width: 100%; }
.error-code {
  font-family: var(--serif);
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--bg-hover);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 80px rgba(74,157,111,0.15);
}
.error-hero .label { margin-bottom: 1rem; display: inline-block; }
.error-hero h1 { margin-bottom: 1.25rem; }
.error-text {
  max-width: 460px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
}
.error-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.error-links a {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.error-links a:hover { color: var(--gold); }

/* =============================================
   CINEMATIC INTRO + IMMERSION
   ============================================= */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at 50% 45%, #0f1a14 0%, #060606 70%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), visibility 0.9s;
}
.intro--done { opacity: 0; visibility: hidden; pointer-events: none; }
body.intro-lock { overflow: hidden; }
.intro-inner { text-align: center; transform: translateY(0); transition: transform 0.9s cubic-bezier(0.4,0,0.2,1); }
.intro--done .intro-inner { transform: translateY(-30px); }
.intro-eq { display: flex; gap: 7px; justify-content: center; align-items: flex-end; height: 48px; margin-bottom: 1.6rem; }
.intro-eq i {
  display: block; width: 6px; height: 10px; border-radius: 3px;
  background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
  animation: introEq 0.95s ease-in-out infinite;
}
.intro-eq i:nth-child(1) { animation-delay: 0s; }
.intro-eq i:nth-child(2) { animation-delay: 0.18s; }
.intro-eq i:nth-child(3) { animation-delay: 0.36s; }
.intro-eq i:nth-child(4) { animation-delay: 0.18s; }
.intro-eq i:nth-child(5) { animation-delay: 0s; }
@keyframes introEq { 0%,100% { height: 10px; opacity: 0.6; } 50% { height: 48px; opacity: 1; } }
.intro-logo {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 300;
  letter-spacing: 0.08em; color: #F5F5F5; opacity: 0; animation: introFade 0.8s ease 0.2s forwards;
}
.intro-logo span { color: var(--gold); }
.intro-tag {
  margin-top: 0.7rem; font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(200,200,200,0.5); opacity: 0; animation: introFade 0.8s ease 0.45s forwards;
}
@keyframes introFade { to { opacity: 1; } }

/* Scroll-reactive hero depth */
.hero-content-v2 { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  .intro, .intro-eq i { animation: none !important; }
}

/* ============================================================
   REDESIGN v5 — bolder editorial scale + premium interactions
   ============================================================ */

/* — Typography: bigger, tighter, more confident — */
h1 { font-size: clamp(3.2rem, 8vw, 7rem); letter-spacing: -0.035em; line-height: 0.98; }
h2 { font-size: clamp(2.4rem, 5.2vw, 4.6rem); letter-spacing: -0.028em; line-height: 1.02; }
h3 { letter-spacing: -0.015em; }
.label { font-size: 0.6rem; letter-spacing: 0.34em; }
.hero-content-v2 { max-width: 1040px; }
.hero-content-v2 h1 { font-size: clamp(3.2rem, 7.4vw, 6.8rem); letter-spacing: -0.045em; line-height: 0.94; margin-bottom: 1.4rem; }
.section-header h2, .section-header-row h2, .cat-picker-title { letter-spacing: -0.03em; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.04em; }

/* — Buttons: premium fill-sweep + crisp geometry — */
.btn {
  position: relative; overflow: hidden;
  border-radius: 0; border: 1px solid var(--gold);
  padding: 1.05rem 2.5rem; font-size: 0.66rem; letter-spacing: 0.24em; font-weight: 500;
  color: var(--gold); background-color: transparent;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  transition: background-size 0.5s cubic-bezier(0.4,0,0.2,1), color 0.4s ease, border-color 0.4s ease;
}
.btn:hover { background-size: 100% 100%; color: #06140d; }
.btn-primary {
  background-color: var(--gold); color: #06140d; border-color: var(--gold);
  background-image: linear-gradient(#e4f5ec, #e4f5ec);
}
.btn-primary:hover { color: #06140d; }
.btn-outline-white, .btn-dark {
  color: var(--text); border-color: rgba(255,255,255,0.32);
  background-image: linear-gradient(var(--gold), var(--gold));
}
.btn-outline-white:hover, .btn-dark:hover { color: #06140d; border-color: var(--gold); }

/* — Cursor-tilt cards (3D tactility) — */
@media (hover: hover) and (pointer: fine) {
  .cat-tile, .featured-card, .cat-pick-tile, .brand-card, .reason, .testimonial {
    transform-style: preserve-3d; will-change: transform;
  }
  .is-tilting { transition: transform 0.08s linear !important; }
}

/* — Section reveal: clip-style entrance for headings — */
.section-header h2, .section-header-row h2 { will-change: transform, opacity; }

/* — Nav: a touch more architectural — */
.nav-list a { font-size: 0.68rem; letter-spacing: 0.16em; }
.site-logo { letter-spacing: 0.1em; }

/* ============================================================
   THEME-NEUTRAL TYPE (applies to both themes)
   ============================================================ */
h1, h2, h3, h4 { font-weight: 500; }
.hero-content-v2 h1 { font-weight: 600; }
.hero-content-v2 h1 em { font-style: normal; color: var(--gold-pale); font-weight: 400; }
.philosophy-strip p { font-style: normal; font-weight: 400; }
.divider { background: var(--border); }

/* ============================================================
   LIGHT-THEME-ONLY adaptations
   ============================================================ */
html[data-theme="light"] .site-header.scrolled { background: rgba(251,250,246,0.82); border-bottom-color: var(--border); }
html[data-theme="light"] .site-header.scrolled .site-logo,
html[data-theme="light"] .site-header.scrolled .nav-list a { color: var(--text); }
html[data-theme="light"] .site-header.scrolled .site-logo span { color: var(--gold); }
html[data-theme="light"] .site-header.scrolled .nav-list a:hover,
html[data-theme="light"] .site-header.scrolled .nav-list a.active { color: var(--gold); }
html[data-theme="light"] .site-header.scrolled .burger span { background: var(--text); }
html[data-theme="light"] .site-header.scrolled .nav-cta { color: var(--gold) !important; border-color: var(--gold); }

/* Brand logos: inverted-white on dark (default); ink/multiply on light */
html[data-theme="light"] .brands-strip-inner img { filter: grayscale(100%) !important; opacity: 0.5; mix-blend-mode: multiply; }
html[data-theme="light"] .brands-strip-inner img:hover { filter: grayscale(0%) !important; opacity: 0.95; }
html[data-theme="light"] .brand-logo-wrap img { filter: grayscale(100%) !important; opacity: 0.6; mix-blend-mode: multiply; }
html[data-theme="light"] .brand-card:hover .brand-logo-wrap img { filter: grayscale(0%) !important; opacity: 1; }

/* Outline-white button only ever sits on dark (hero / CTA) → keep light text */
.btn-outline-white { color: #FFFFFF; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { color: #06140d; }

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--border-accent); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); background: transparent; cursor: pointer;
  font-size: 0.95rem; margin-left: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.theme-toggle:hover { background: var(--gold); color: #06140d; transform: rotate(18deg); }
.site-header.hero-over .theme-toggle { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); }
.site-header.hero-over .theme-toggle:hover { background: var(--gold); color: #06140d; border-color: var(--gold); }
@media (max-width: 900px) { .theme-toggle { margin-left: auto; margin-right: 0.75rem; } }

/* ============================================================
   PRODUCTS MEGA-DROPDOWN (nav usability)
   ============================================================ */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 460px;
  background: var(--bg-raised); border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  padding: 1.5rem; margin-top: 1.1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 120; border-radius: 2px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before { /* hover bridge */ content: ''; position: absolute; top: -1.1rem; left: 0; right: 0; height: 1.1rem; }
.nav-dd-item { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.7rem 0.85rem; border-radius: 2px; transition: background 0.2s ease; }
.nav-dd-item:hover { background: var(--bg-hover); }
.nav-dd-name { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--text); letter-spacing: 0; text-transform: none; }
.nav-dd-sub { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.nav-dd-item::after { display: none; } /* kill the underline pseudo from nav-list a */
.nav-dropdown .nav-dd-item { color: var(--text); }
@media (max-width: 900px) { .nav-dropdown { display: none !important; } }

/* ============================================================
   VISIT & ENQUIRE (homepage contact section)
   ============================================================ */
.visit-section { padding: 5rem 0; background: var(--bg-raised); border-top: 1px solid var(--border); }
.visit-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; margin-top: 2.5rem; align-items: start; }

.lead-form { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem; border-radius: 3px; display: flex; flex-direction: column; gap: 1rem; }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lead-field { display: flex; flex-direction: column; gap: 0.4rem; }
.lead-field > span { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.lead-field input, .lead-field select, .lead-field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); padding: 0.8rem 0.9rem; border-radius: 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none;
}
.lead-field input::placeholder, .lead-field textarea::placeholder { color: var(--text-muted); }
.lead-field input:focus, .lead-field select:focus, .lead-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.lead-field textarea { resize: vertical; min-height: 96px; }
.lead-field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%234A9D6F' stroke-width='1.6' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.95rem center;
}
.lead-honey { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.lead-submit { align-self: flex-start; margin-top: 0.4rem; }
.lead-note { font-size: 0.72rem; color: var(--text-muted); margin: 0; }

.visit-info-col { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.contact-list a { color: var(--text); transition: color 0.2s ease; }
.contact-list a:hover { color: var(--gold); }
.ci-ic { color: var(--gold); font-size: 1.05rem; width: 1.4rem; flex-shrink: 0; text-align: center; line-height: 1.4; }

.map-embed { position: relative; width: 100%; aspect-ratio: 16 / 10; border: 1px solid var(--border); overflow: hidden; border-radius: 3px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.92); transition: filter 0.4s ease; }
html[data-theme="light"] .map-embed iframe { filter: none; }

/* Contact-page full-width map — theme-aware (dark in dark theme, normal in light) */
.contact-map { filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.92); transition: filter 0.4s ease; }
html[data-theme="light"] .contact-map { filter: none; }

@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .visit-info-col { order: -1; } /* contacts + map first on mobile */
}
@media (max-width: 480px) {
  .lead-row { grid-template-columns: 1fr; }
  .lead-form { padding: 1.5rem; }
}

/* ============================================================
   MOBILE HARDENING (v9) — keep everything inside the viewport
   ============================================================ */
@media (max-width: 760px) {
  .hero-content-v2 { padding-right: 0; max-width: 100%; }
  .hero-content-v2 h1 { font-size: clamp(2.4rem, 13vw, 4.2rem); line-height: 0.98; }
  .hero-tagline { font-size: 1rem; }
  .hero-eyebrow { font-size: 0.56rem; letter-spacing: 0.18em; }
  .hero-btns { flex-wrap: wrap; }
  .hero-btns .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
}
@media (max-width: 600px) {
  h2 { font-size: clamp(1.9rem, 8.5vw, 3rem); }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .testimonial blockquote { font-size: 1.05rem; }
  .visit-section { padding: 3.5rem 0; }
  /* prevent any horizontal scroll from oversized type/canvas */
  body { overflow-x: clip; }
}
/* Long product/section headings never overflow */
.cat-title-row h2, .section-header h2, .visit-section h2 { overflow-wrap: anywhere; }

/* ============================================================
   DATA-DRIVEN CATALOGUE (products.html) — namespaced .shop-*
   ============================================================ */
#shop { min-height: 60vh; padding-top: var(--header-h); }
.shop-stage { padding: 2.5rem 0 5rem; }
.shop-stage .section-header { margin-bottom: 2.5rem; }

/* sticky breadcrumb */
.shop-crumb { position: sticky; top: var(--header-h); z-index: 40; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.shop-crumb-inner { max-width: var(--max-w, 1320px); margin: 0 auto; padding: 0.9rem 1.5rem; font-size: 0.72rem; letter-spacing: 0.04em; }
.shop-crumb a { color: var(--text-secondary); }
.shop-crumb a:hover { color: var(--gold); }
.shop-crumb span { color: var(--text-muted); margin: 0 0.2rem; }
.shop-crumb .cur { color: var(--gold); }

/* category / sub-category tiles */
.shop-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; max-width: var(--max-w, 1320px); margin: 0 auto; }
.shop-cat { display: flex; flex-direction: column; text-align: left; background: var(--bg-card); border: 1px solid var(--border); cursor: pointer; overflow: hidden; transition: border-color .25s, transform .25s; font-family: var(--sans); color: var(--text); padding: 0; }
.shop-cat:hover { border-color: var(--gold); transform: translateY(-3px); }
.shop-cat-img { display: block; width: 100%; aspect-ratio: 16/11; background: linear-gradient(160deg,#1a1a1a,#0f0f0f); background-size: cover; background-position: center; }
html[data-theme="light"] .shop-cat-img { background: linear-gradient(160deg,#efeae0,#e2dcd0); background-size: cover; background-position: center; }
.shop-cat-meta { padding: 1rem 1.15rem 1.15rem; display: flex; flex-direction: column; gap: 0.25rem; }
.shop-cat-name { font-size: 1.02rem; font-weight: 500; letter-spacing: 0.01em; }
.shop-cat-n { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.shop-cat--all { justify-content: center; min-height: 120px; background: var(--gold-glow); border-color: var(--border-accent); }
.shop-cat--all .shop-cat-meta { padding: 1.4rem; }

.shop-back { background: none; border: 1px solid var(--border); color: var(--text-secondary); font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.6rem 1.1rem; cursor: pointer; margin: 0 auto 2rem; display: block; transition: all .25s; }
.shop-back:hover { border-color: var(--gold); color: var(--gold); }

/* toolbar */
.shop-toolbar { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1.5rem; flex-wrap: wrap; }
.shop-toolbar .shop-back { margin: 0; }
.shop-search { flex: 1 1 240px; min-width: 180px; padding: 0.7rem 1rem; background: var(--bg-card); border: 1px solid var(--border); color: var(--text); font-family: var(--sans); font-size: 0.85rem; }
.shop-search:focus { outline: none; border-color: var(--gold); }
.shop-sort { padding: 0.7rem 1rem; background: var(--bg-card); border: 1px solid var(--border); color: var(--text); font-family: var(--sans); font-size: 0.8rem; cursor: pointer; }
#shop-count { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }

/* body: sidebar + grid */
.shop-body { display: grid; grid-template-columns: 230px 1fr; gap: 2.5rem; align-items: start; padding-bottom: 1rem; }
.shop-side { position: sticky; top: calc(var(--header-h) + 64px); align-self: start; }
.shop-side-sec { margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.shop-side-sec h4 { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 0.8rem; font-weight: 600; }
.shop-side-list { display: flex; flex-direction: column; gap: 0.15rem; max-height: 320px; overflow-y: auto; }
.shop-side-btn { text-align: left; background: none; border: 1px solid transparent; border-left: 2px solid transparent; padding: 0.45rem 0.6rem; font-family: var(--sans); font-size: 0.78rem; color: var(--text-secondary); cursor: pointer; transition: all .2s; }
.shop-side-btn:hover { color: var(--text); background: var(--bg-hover); }
.shop-side-btn.on { color: var(--gold); background: var(--gold-glow); border-left-color: var(--gold); font-weight: 500; }
.shop-reset { width: 100%; margin-top: 0.5rem; padding: 0.7rem; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all .25s; }
.shop-reset:hover { border-color: var(--gold); color: var(--gold); }

/* product grid */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 1.25rem; }
.shop-card { background: var(--bg-card); border: 1px solid var(--border); cursor: pointer; overflow: hidden; display: flex; flex-direction: column; transition: border-color .25s, transform .25s; }
.shop-card:hover, .shop-card:focus-visible { border-color: var(--gold); transform: translateY(-3px); outline: none; }
.shop-card-img { position: relative; aspect-ratio: 1/1; background: linear-gradient(160deg,#f6f4ef,#e9e3d8); overflow: hidden; }
.shop-card-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 8%; }
.shop-badge { position: absolute; top: 0.6rem; left: 0.6rem; background: var(--gold); color: #06140d; font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.25rem 0.5rem; font-weight: 600; }
.shop-card-b { padding: 0.9rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.shop-card-brand { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.shop-card-name { font-size: 0.92rem; font-weight: 500; line-height: 1.3; color: var(--text); margin: 0; flex: 1; }
.shop-card-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.5rem; margin-top: 0.6rem; }
.shop-price { display: flex; flex-direction: column; line-height: 1.2; }
.shop-price .was { font-size: 0.7rem; color: var(--text-muted); text-decoration: line-through; }
.shop-price .now { font-size: 1rem; font-weight: 600; color: var(--text); }
.shop-price .poa { font-size: 0.78rem; font-weight: 500; color: var(--text-secondary); }
.shop-enq { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.shop-empty { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--text-secondary); }

/* modal */
.shop-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.shop-modal[hidden] { display: none; }
.shop-modal-ov { position: absolute; inset: 0; background: rgba(0,0,0,0.78); backdrop-filter: blur(4px); }
.shop-modal-box { position: relative; z-index: 1; background: var(--bg-raised); border: 1px solid var(--border); max-width: 880px; width: 100%; max-height: 90vh; overflow: auto; }
.shop-modal-close { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2; width: 40px; height: 40px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); font-size: 1.2rem; cursor: pointer; line-height: 1; }
.shop-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.shop-modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.shop-modal-img { background: linear-gradient(160deg,#f6f4ef,#e9e3d8); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.shop-modal-img img { max-width: 100%; max-height: 380px; object-fit: contain; mix-blend-mode: multiply; }
.shop-modal-info { padding: 2.5rem; }
.shop-modal-info h3 { font-size: 1.6rem; margin: 0.3rem 0 0.8rem; }
.shop-modal-price { flex-direction: row; gap: 0.6rem; align-items: baseline; margin-bottom: 1.2rem; }
.shop-modal-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.shop-modal-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.shop-modal-note { font-size: 0.72rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .shop-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .shop-side { position: static; }
  /* compact wrapping filter chips instead of a tall vertical list */
  .shop-side-list { max-height: none; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  .shop-side-btn { border: 1px solid var(--border); border-left-width: 1px; padding: 0.42rem 0.8rem; font-size: 0.72rem; }
  .shop-side-btn.on { border-color: var(--gold); border-left-color: var(--gold); }
  .shop-side-sec { margin-bottom: 1rem; padding-bottom: 1rem; }
  .shop-reset { width: auto; }
  .shop-modal-body { grid-template-columns: 1fr; }
  .shop-modal-img { max-height: 260px; }
  .shop-modal-info { padding: 1.75rem; }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .shop-cat-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .shop-card-name { font-size: 0.82rem; }
  .shop-price .now { font-size: 0.9rem; }
  .shop-toolbar { gap: 0.6rem; }
}

/* product modal — gallery + rich multi-paragraph description */
.shop-modal-body { align-items: start; }
.shop-modal-gallery { display: flex; flex-direction: column; }
.shop-modal-thumbs { display: flex; gap: 0.5rem; padding: 0.75rem; flex-wrap: wrap; background: var(--bg-raised); border-top: 1px solid var(--border); }
.shop-modal-thumb { width: 58px; height: 58px; border: 1px solid var(--border); background: #f6f4ef; cursor: pointer; padding: 5px; transition: border-color .2s; }
.shop-modal-thumb.on, .shop-modal-thumb:hover { border-color: var(--gold); }
.shop-modal-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.shop-modal-cat { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.shop-modal-desc { max-height: none; }
.shop-modal-desc p { margin: 0 0 0.75rem; }
.shop-modal-desc p:last-child { margin-bottom: 0; }
@media (min-width: 901px) { .shop-modal-box { max-width: 980px; } }

/* ============================================================
   FIXES + POLISH (v2)
   ============================================================ */
/* CONTACT nav button — centre the text inside its border
   (.nav-list a padding-bottom was overriding the button's padding) */
.nav-list a.nav-cta { padding: 0.62rem 1.5rem; display: inline-flex; align-items: center; line-height: 1; }

/* Product modal v2 — CTAs always visible, gallery fixed, description scrolls */
.shop-modal-box { max-width: 1020px; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; position: relative; }
.shop-modal-body { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 0; flex: 1 1 auto; align-items: stretch; }
.shop-modal-gallery { overflow-y: auto; border-right: 1px solid var(--border); }
.shop-modal-info { overflow-y: auto; padding: 2.4rem 2.4rem 2.6rem; }
.shop-modal-info h3 { font-size: 1.5rem; line-height: 1.18; margin: 0.3rem 0 0.7rem; }
.shop-modal-price { display: flex; flex-direction: row; gap: 0.6rem; align-items: baseline; margin-bottom: 0.45rem; }
.shop-modal-finance { font-size: 0.74rem; color: var(--text-secondary); margin: 0 0 1.1rem; }
.shop-modal-finance b { color: var(--gold); font-weight: 600; }
.shop-modal-cta { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 0 0 0.7rem; }
.shop-modal-cta .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
.shop-modal-note { font-size: 0.72rem; color: var(--text-muted); margin: 0 0 1.2rem; }
.shop-modal-divider { height: 1px; background: var(--border); margin: 0.3rem 0 1.3rem; }
.shop-modal-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75; max-height: none; }
.shop-modal-desc p { margin: 0 0 0.8rem; }
.shop-modal-desc p:last-child { margin-bottom: 0; }

/* prev / next product arrows */
.shop-modal-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); cursor: pointer; z-index: 3; font-size: 1.3rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.shop-modal-nav:hover { border-color: var(--gold); color: var(--gold); }
.shop-modal-nav[disabled] { opacity: 0.25; cursor: default; }
.shop-modal-prev { left: -54px; }
.shop-modal-next { right: -54px; }
@media (max-width: 1160px) {
  .shop-modal-prev { left: 10px; } .shop-modal-next { right: 10px; }
  .shop-modal-nav { background: rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.35); color: #fff; }
}
@media (max-width: 900px) {
  .shop-modal-box { max-height: 92vh; }
  .shop-modal-body { grid-template-columns: 1fr; display: block; overflow-y: auto; }
  .shop-modal-gallery { border-right: none; border-bottom: 1px solid var(--border); overflow: visible; }
  .shop-modal-info { overflow: visible; padding: 1.6rem; }
  /* on mobile the whole modal scrolls — floating arrows would overlap text,
     so hide them; tap-to-close + scroll is the natural phone pattern */
  .shop-modal-nav { display: none; }
}

/* ============================================================
   SVG LINE ICONS (replaced emoji) + custom scrollbar
   ============================================================ */
.ic { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: -0.16em; stroke: currentColor; fill: none; flex: 0 0 auto; }
.contact-icon { color: var(--gold); }
.contact-icon .ic { width: 20px; height: 20px; vertical-align: middle; }
.footer-contact-item span:first-child { color: var(--gold); display: inline-flex; align-items: center; }
.footer-contact-item .ic { width: 17px; height: 17px; vertical-align: middle; }
.ci-ic { display: inline-flex !important; align-items: center; justify-content: center; }
.ci-ic .ic { width: 1.3rem; height: 1.3rem; }
.serv-quick-icon, .serv-cta-icon { color: var(--gold); }
.serv-quick-icon .ic, .serv-cta-icon .ic { width: 1.35rem; height: 1.35rem; vertical-align: middle; }

/* custom on-brand scrollbar */
html { scrollbar-color: var(--border-accent) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-raised); }
::-webkit-scrollbar-thumb { background: var(--border-accent); border: 3px solid var(--bg-raised); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Estelon logo is white-on-black: skip the white-silhouette invert so it
   reads correctly on the dark theme (black bg blends into the page). */
.brand-logo-wrap img[src*="estelon"], .brands-strip-inner img[src*="estelon"] { filter: none; opacity: 0.92; }
