/* ============================================================
   Unique Packaging — Global Stylesheet  v2.0
   Design: Dark-Ink + Champagne Gold premium brand aesthetic
   ============================================================ */

@font-face{font-family:'Inter';font-style:normal;font-weight:300 700;font-display:swap;src:url('../fonts/inter-latin-300-700.woff2') format('woff2')}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400 700;font-display:swap;src:url('../fonts/playfair-latin-400-700.woff2') format('woff2')}
@font-face{font-family:'Playfair Display';font-style:italic;font-weight:400;font-display:swap;src:url('../fonts/playfair-latin-italic-400.woff2') format('woff2')}

/* ---------- CSS Variables ---------- */
:root {
  --ink:       #0d0d0d;
  --ink-soft:  #1a1a1a;
  --ink-mid:   #2a2a2a;
  --gold:      #c9a84c;
  --gold-light:#e2c46a;
  --gold-pale: #f5ead4;
  --cream:     #faf8f4;
  --white:     #ffffff;
  --gray-100:  #f4f4f2;
  --gray-200:  #e8e6e1;
  --gray-400:  #9a9791;
  --gray-600:  #6b6761;
  --text-body: #3a3835;
  --text-muted:#7a7671;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);

  --nav-h: 72px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); }
p  { font-size: 1rem; color: var(--text-body); }

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #765814;
}
.section--dark .eyebrow,.site-footer .eyebrow,.article-hero .eyebrow,.product-detail-hero .eyebrow{color:var(--gold-light)}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.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; }

.section { padding-block: clamp(4rem, 8vw, 7rem); }

/* ── Dark section – only sets background/text-color defaults.
      Do NOT override .card or explicit inline styles from here. */
.section--dark {
  background: var(--ink);
  color: var(--white);
}
.section--dark > .container h2,
.section--dark > .container h1,
.section--dark > .container h3 { color: var(--white); }
/* Only color bare <p> that aren't inside a card or component */
.section--dark > .container > p,
.section--dark > .container > .section-head p { color: rgba(255,255,255,.72); }

.section--cream { background: var(--cream); }
.section--gray  { background: var(--gray-100); }

.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.flex-between { display:flex; align-items:center; justify-content:space-between; }

/* ---------- Section Heading Block ---------- */
.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .5rem; }
.section-head p  { margin-top: 1rem; color: var(--text-muted); font-size: 1.05rem; }
/* Section head inside dark section */
.section--dark .section-head p { color: rgba(255,255,255,.65); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  /* default: transparent (dark pages) */
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
/* scrolled state for dark-background nav (index.html) */
.site-nav.scrolled {
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
/* white nav variant (all inner pages) – stays white regardless of scroll */
.site-nav.white {
  background: var(--white) !important;
  box-shadow: var(--shadow-sm);
}
/* On white bg, transparent PNG with original colors shows correctly.
   We use brightness(0) to turn it black, then no invert, so it's dark on white. */
.site-nav.white .nav-logo img {
  filter: brightness(0) !important;
}
.site-nav.white .nav-link { color: var(--ink); }
.site-nav.white .nav-link:hover { color: var(--gold); }
.site-nav.white .nav-link.active { color: var(--gold); }
.site-nav.white .hamburger span { background: var(--ink); }
/* white nav stays white on scroll */
.site-nav.white.scrolled {
  background: var(--white) !important;
  backdrop-filter: none;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
  /* default: invert for dark bg */
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  letter-spacing: .03em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover,
.nav-link.active { color: var(--gold); }
/* Override link color in white nav */
.site-nav.white .nav-link { color: var(--ink); }
.site-nav.white .nav-link:hover,
.site-nav.white .nav-link.active { color: var(--gold); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px 0;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-nav.white .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--ink);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9) !important;
  padding: .25rem 0;
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-soft);
  color: rgba(255,255,255,.7);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  height: 44px;
  width: auto;
  /* transparent PNG on dark bg – use as-is, no invert needed */
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: .75rem;
  color: rgba(255,255,255,.65);
}
.footer-col h5,.footer-col h2 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold); }

.social-row { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.1);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ---------- Hero (index.html) ---------- */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,.88) 40%, rgba(13,13,13,.60));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 10vw, 8rem);
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Gold Rule ---------- */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: .75rem;
  flex-shrink: 0;
}
.gold-rule.centered { margin-inline: auto; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; line-height: 1.35; }
.card-body p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* Cards inside dark sections */
.section--dark .card-body h3 { color: var(--white); }
.section--dark .card-body p  { color: rgba(255,255,255,.62); }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--ink-soft);
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Stats Strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-box {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
  letter-spacing: .03em;
}

/* ---------- Feature Icon Block ---------- */
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }

/* ---------- Process Step ---------- */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.step-body h4 { margin-bottom: .4rem; color: var(--gold-light); }
.step-body p  { font-size: .9rem; color: rgba(255,255,255,.65); }

/* ---------- Testimonial ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: .75rem; left: 1.25rem;
  opacity: .3;
  pointer-events: none;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-top: 2rem;
  font-size: .95rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.author-title { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.star-row {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: .75rem;
  letter-spacing: .08em;
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ---------- Filter Bar ---------- */
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ---------- Product Grid ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card-body { padding: 1.1rem 1.25rem 1.4rem; }
.product-card-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.product-card-body h4 {
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* ---------- Contact Form ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .4rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .93rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: auto;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ---------- Map ---------- */
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
  display: block;
}

/* ---------- Blog ---------- */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-img { height: 210px; }
.blog-meta { font-size: .76rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-meta span + span::before { content: ' · '; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: .65rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201,168,76,.08), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* Accent line (eyebrow with rule) */
.accent-line {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.accent-line::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Image with offset gold border accent */
.img-accent-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible; /* allow the pseudo-border to show outside */
}
.img-accent-wrap img {
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.img-accent-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 65%; height: 65%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service-in-dark cards – explicit override to prevent dark section global rules */
.dark-card {
  background: var(--ink-mid);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  text-decoration: none;
}
.dark-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.25);
}
.dark-card img { width: 100%; height: 200px; object-fit: cover; }
.dark-card-body { padding: 1.4rem; }
.dark-card-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.dark-card-body h3 { font-size: 1.1rem; color: var(--white); margin-bottom: .5rem; line-height: 1.35; }
.dark-card-body p  { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ─── Responsive Breakpoints ──────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .products-grid { grid-template-columns: repeat(3,1fr) !important; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-box:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .trust-bar-inner { gap: .75rem 1.5rem; justify-content: flex-start; padding-inline: .5rem; flex-wrap: wrap; }

  .filter-bar { gap: .35rem; }
  .products-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* About factory gallery */
  .factory-grid { grid-template-columns: 1fr !important; }
  .factory-grid > div { grid-column: span 1 !important; height: 200px !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; }
  .trust-grid   { grid-template-columns: repeat(2,1fr) !important; }

  /* diff grid */
  .diff-grid { grid-template-columns: 1fr !important; }
  /* process grid */
  .process-grid { grid-template-columns: 1fr !important; }
  /* hero min-height */
  .hero { min-height: auto; }
}

@media (max-width: 480px) {
  .btn-lg { padding: .875rem 1.5rem; font-size: .93rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr !important; }
  .hero-stats { flex-direction: column; gap: 1rem !important; }
}
