/* ==========================================================================
   Satguru's — brand stylesheet
   Built on the Ochaka template aesthetic (Sora / Afacad / Ballet typefaces,
   generous spacing, pill buttons, hover-zoom cards) retinted to the
   Satguru's brand palette: gold + dark maroon on warm cream.
   ========================================================================== */

:root {
  --gold: #C9A33B;
  --gold-dark: #A8842A;
  --gold-soft: #EBD9A8;
  --maroon: #3A2419;
  --maroon-soft: #5A3B2C;
  --cream: #FBF7F0;
  --cream-2: #F4ECDD;
  --ink: #2A211C;
  --text: #6A5E54;
  --text-soft: #948877;
  --line: #E8DECB;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px -24px rgba(58, 36, 25, 0.35);
  --shadow-card: 0 24px 60px -30px rgba(58, 36, 25, 0.45);
  --radius: 16px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Base ----- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Afacad', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--maroon);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Helpers ----- */
.script {
  font-family: 'Ballet', cursive;
  color: var(--gold-dark);
  font-weight: 400;
}
.text-gold { color: var(--gold-dark); }
.text-cream { color: var(--cream); }
.text-white { color: #fff; }
.center { text-align: center; }
.muted { color: var(--text-soft); }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-maroon { background: var(--maroon); }
.bg-white { background: var(--white); }

.eyebrow {
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 14px;
}
.bg-maroon .eyebrow { color: var(--gold); }

.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
}
.section-head p { color: var(--text); font-size: 19px; }
.bg-maroon .section-head h2 { color: var(--cream); }
.bg-maroon .section-head p,
.bg-maroon p { color: #D9C9B8; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn .icon { font-size: 16px; transition: transform 0.3s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }

.btn-gold { background: var(--gold); color: var(--maroon); }
.btn-gold:hover { background: var(--maroon); color: var(--cream); }

.btn-dark { background: var(--maroon); color: var(--cream); }
.btn-dark:hover { background: var(--gold); color: var(--maroon); }

.btn-outline { background: transparent; border-color: var(--maroon); color: var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: var(--cream); }

.btn-ghost-light { background: transparent; border-color: rgba(251,247,240,0.5); color: var(--cream); }
.btn-ghost-light:hover { background: var(--gold); color: var(--maroon); border-color: var(--gold); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo img { height: 50px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--maroon);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--maroon);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--maroon);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(36,22,15,0.86) 0%, rgba(36,22,15,0.55) 45%, rgba(36,22,15,0.15) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-content .eyebrow { color: var(--gold); }
.hero-tag {
  font-family: 'Ballet', cursive;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero-content p {
  color: #E7D9C7;
  font-size: 20px;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* trust strip */
.trust-strip {
  background: var(--maroon);
  border-top: 1px solid rgba(201,163,59,0.25);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 0;
}
.trust-item { text-align: center; color: var(--cream); }
.trust-item .num {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-item .lbl { font-size: 14px; color: #C9B7A4; letter-spacing: 0.04em; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: clamp(30px, 3.6vw, 44px); }
.about-text .lead { font-size: 21px; color: var(--maroon-soft); margin-bottom: 18px; }
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-badge {
  position: absolute;
  left: -22px; bottom: 28px;
  background: var(--gold);
  color: var(--maroon);
  padding: 18px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-family: 'Sora', sans-serif;
}
.about-badge strong { display: block; font-size: 28px; line-height: 1; }
.about-badge span { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ==========================================================================
   Collection grid
   ========================================================================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cat-card .thumb { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--cream-2); }
.cat-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat-card:hover .thumb img { transform: scale(1.08); }
.cat-card .body { padding: 22px 22px 26px; }
.cat-card h3 { font-size: 21px; margin-bottom: 6px; }
.cat-card p { font-size: 15.5px; color: var(--text-soft); margin: 0; line-height: 1.55; }
.cat-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--gold-dark);
}
.cat-card .more .icon { transition: transform 0.3s var(--ease); }
.cat-card:hover .more .icon { transform: translateX(4px); }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-5px); border-color: var(--gold-soft); }
.why-card .ic {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--gold-dark);
  font-size: 26px;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; margin-bottom: 8px; }
.why-card p { font-size: 15.5px; color: var(--text-soft); margin: 0; }

/* ==========================================================================
   Serving every need (chips)
   ========================================================================== */
.serving { position: relative; }
.serving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.serving-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(251,247,240,0.06);
  border: 1px solid rgba(201,163,59,0.28);
  border-radius: 12px;
  padding: 18px 22px;
  color: var(--cream);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  transition: background 0.3s var(--ease);
}
.serving-item:hover { background: rgba(201,163,59,0.14); }
.serving-item .icon { color: var(--gold); font-size: 20px; }

/* ==========================================================================
   Gallery (collection page) + lightbox
   ========================================================================== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--maroon);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--cream-2);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .ov {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(36,22,15,0.7), rgba(36,22,15,0) 55%);
  opacity: 0; transition: opacity 0.35s var(--ease);
  display: flex; align-items: flex-end; padding: 18px;
  color: var(--cream); font-family: 'Sora', sans-serif; font-size: 15px;
}
.gallery-item:hover .ov { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 12, 8, 0.92);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-card); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  background: none; border: none; color: #fff; font-size: 34px; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 54px; height: 54px; border-radius: 50%; font-size: 22px; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.25s var(--ease);
}
.lightbox-nav:hover { background: var(--gold); color: var(--maroon); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-soft) 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,163,59,0.25), transparent 70%);
}
.cta-band h2 { color: var(--cream); font-size: clamp(28px, 4vw, 44px); position: relative; }
.cta-band p { color: #D9C9B8; font-size: 19px; max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info .info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .ic {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px; background: var(--cream-2); color: var(--gold-dark); font-size: 20px;
}
.contact-info .info-item strong { display: block; font-family: 'Sora', sans-serif; color: var(--maroon); font-size: 16px; }
.contact-info .info-item span { color: var(--text-soft); font-size: 16px; }
.placeholder-note {
  font-size: 13px; color: var(--gold-dark);
  background: var(--cream-2); border-radius: 8px;
  padding: 4px 10px; display: inline-block; margin-top: 6px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: 'Sora', sans-serif; font-size: 14px;
  color: var(--maroon); margin-bottom: 7px; font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: 'Afacad', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-soft); margin-top: 14px; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--maroon);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(201,163,59,0.18), transparent 55%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--cream); font-size: clamp(34px, 5vw, 56px); }
.page-hero .crumbs { color: var(--gold); font-family: 'Sora', sans-serif; font-size: 14px; letter-spacing: 0.06em; }
.page-hero .crumbs a { color: #C9B7A4; }
.page-hero .crumbs a:hover { color: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--maroon); color: #C9B7A4; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img { height: 64px; margin-bottom: 18px; filter: brightness(0) invert(1) sepia(0.3) saturate(3) hue-rotate(5deg); }
.footer-brand p { color: #B7A693; font-size: 16px; max-width: 320px; }
.footer-col h4 {
  color: var(--cream); font-size: 16px; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #B7A693; font-size: 16px; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; color: #B7A693; font-size: 15.5px; }
.footer-contact-item .icon { color: var(--gold); font-size: 18px; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201,163,59,0.14); color: var(--gold);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--maroon); }
.footer-bottom {
  border-top: 1px solid rgba(201,163,59,0.2);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 14px; color: #97836F;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
/* Reveal is a progressive enhancement: only hide when JS has flagged <html>.
   Without JS (or before the observer fires), content stays fully visible. */
.js-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .collection-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .section { padding: 70px 0; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 84px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 14px 24px; }
  .header-cta .btn { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media img { aspect-ratio: 16/11; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .collection-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .hero { min-height: 78vh; }
}
@media (max-width: 480px) {
  body { font-size: 17px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ==========================================================================
   CATEGORY PAGES — refined luxury editorial (2026)
   ========================================================================== */

/* ----- Editorial split hero ----- */
.cat-hero {
  position: relative;
  background: var(--maroon);
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(201,163,59,0.22), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(90,59,44,0.6), transparent 60%);
  z-index: 0;
}
.cat-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  min-height: 70vh;
  padding: 56px 0;
}
.cat-hero-text .crumbs {
  font-family: 'Sora', sans-serif; font-size: 13px; letter-spacing: 0.06em;
  color: #B7A693; margin-bottom: 24px;
}
.cat-hero-text .crumbs a { color: #B7A693; }
.cat-hero-text .crumbs a:hover { color: var(--gold); }
.cat-hero-text .crumbs .sep { color: var(--gold); margin: 0 8px; }
.cat-index {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.cat-index::before { content: ''; width: 40px; height: 1px; background: var(--gold); display: inline-block; }
.cat-hero-text h1 {
  color: #fff;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.cat-hero-text h1 .script {
  display: block;
  font-family: 'Ballet', cursive;
  font-size: 0.55em;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: -0.1em;
}
.cat-hero-text .lead { color: #E7D9C7; font-size: 20px; max-width: 480px; margin-bottom: 30px; }
.cat-hero-meta {
  display: flex; gap: 36px; margin: 30px 0 34px;
  flex-wrap: wrap;
}
.cat-hero-meta .m strong {
  display: block; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 28px; color: var(--gold); line-height: 1;
}
.cat-hero-meta .m span { font-size: 13px; color: #C9B7A4; letter-spacing: 0.05em; }
.cat-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cat-hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  transform: rotate(1.5deg);
}
.cat-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cat-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  border-radius: 20px;
}
.cat-hero-stamp {
  position: absolute; left: -18px; bottom: 26px; z-index: 2;
  background: var(--gold); color: var(--maroon);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

/* ----- Sticky category chip nav ----- */
.cat-subnav {
  position: sticky; top: 84px; z-index: 50;
  background: rgba(244,236,221,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.cat-subnav-inner {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 14px 0; scrollbar-width: none;
}
.cat-subnav-inner::-webkit-scrollbar { display: none; }
.cat-subnav a {
  flex: none;
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 500;
  padding: 8px 18px; border-radius: 999px;
  border: 1.5px solid transparent;
  color: var(--maroon-soft); white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.cat-subnav a:hover { border-color: var(--gold-soft); color: var(--maroon); }
.cat-subnav a.active { background: var(--maroon); color: var(--cream); }

/* ----- Intro / editorial copy block ----- */
.cat-intro { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.cat-intro .label {
  font-family: 'Sora', sans-serif; font-size: 13px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-dark);
}
.cat-intro h2 { font-size: clamp(28px, 3.4vw, 40px); }
.cat-intro .big { font-size: 21px; color: var(--maroon-soft); }

/* ----- Product showcase grid ----- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-card .pimg { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream-2); }
.product-card .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .pimg img { transform: scale(1.07); }
.product-card .ptag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(36,22,15,0.78); color: var(--gold);
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.product-card .pbody { padding: 20px 20px 24px; }
.product-card h3 { font-size: 18px; margin-bottom: 4px; }
.product-card p { font-size: 14.5px; color: var(--text-soft); margin: 0 0 14px; }
.product-card .pcta {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--gold-dark); display: inline-flex; align-items: center; gap: 7px;
}
.product-card .pcta .icon { transition: transform 0.3s var(--ease); }
.product-card:hover .pcta .icon { transform: translateX(4px); }

/* ----- Feature row (alternating) ----- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature-row.flip .feature-media { order: 2; }
.feature-media {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 5/4;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; margin: 22px 0 0; padding: 0; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--gold-dark); font-size: 19px;
}
.feature-list strong { display: block; font-family: 'Sora', sans-serif; color: var(--maroon); font-size: 16px; }
.feature-list span { font-size: 15px; color: var(--text-soft); }

/* ----- Buyer-type pills ----- */
.buyer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
}
.buyer-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 20px;
  font-family: 'Sora', sans-serif; font-size: 15px; color: var(--maroon);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.buyer-pill:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.buyer-pill .icon { color: var(--gold-dark); font-size: 18px; }

/* ----- FAQ accordion ----- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none;
  font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 500; color: var(--maroon);
  padding: 26px 44px 26px 0; position: relative;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--gold-dark); }
.faq-q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--gold-dark); font-weight: 300; transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-a p { margin: 0; padding: 0 60px 26px 0; color: var(--text); font-size: 16.5px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ----- "Other categories" cross-link strip ----- */
.xlink-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.xlink-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; box-shadow: var(--shadow-soft);
  display: flex; align-items: flex-end;
}
.xlink-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.xlink-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(36,22,15,0.82), rgba(36,22,15,0.05) 70%); }
.xlink-card:hover img { transform: scale(1.07); }
.xlink-card .xl {
  position: relative; z-index: 1; padding: 22px; color: var(--cream);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 19px;
  display: flex; align-items: center; gap: 8px; width: 100%;
}
.xlink-card .xl .icon { margin-left: auto; color: var(--gold); transition: transform 0.3s var(--ease); }
.xlink-card:hover .xl .icon { transform: translateX(5px); }

/* ----- Category responsive ----- */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .xlink-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .cat-subnav { top: 84px; }
  .cat-hero-grid { grid-template-columns: 1fr; gap: 36px; min-height: 0; padding: 40px 0; }
  .cat-hero-media { transform: none; aspect-ratio: 16/11; order: -1; }
  .cat-hero-stamp { left: 14px; }
  .cat-intro { grid-template-columns: 1fr; gap: 20px; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.flip .feature-media { order: -1; }
  .feature-media { aspect-ratio: 16/11; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-hero-meta { gap: 24px; }
}

/* ==========================================================================
   ATELIER — overlay cards (homepage collection + category galleries)
   ========================================================================== */
.atelier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.atelier-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.atelier-card {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; display: block;
  box-shadow: var(--shadow-soft); isolation: isolate;
  border: none; padding: 0; width: 100%; text-align: left;
  background: var(--cream-2); color: inherit; font: inherit;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.atelier-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.atelier-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.9s var(--ease);
}
.atelier-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(36,22,15,0) 35%, rgba(36,22,15,0.88) 100%);
  transition: opacity 0.5s var(--ease);
}
.atelier-card:hover img { transform: scale(1.08); }
.atelier-card .a-top {
  position: absolute; top: 18px; left: 20px; right: 18px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.atelier-card .a-num {
  font-family: 'Ballet', cursive; font-size: 38px; color: var(--gold);
  line-height: 1; text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.atelier-card .a-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28);
  display: grid; place-items: center; color: #fff; font-size: 16px;
  opacity: 0; transform: translateY(-6px); transition: all 0.4s var(--ease);
}
.atelier-card:hover .a-icon { opacity: 1; transform: none; }
.atelier-card:hover .a-icon { background: var(--gold); color: var(--maroon); }
.atelier-card .a-body {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; color: #fff;
}
.atelier-card .a-cat {
  font-family: 'Sora', sans-serif; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-soft); margin: 0 0 6px;
}
.atelier-card h3 { color: #fff; font-size: 22px; margin: 0 0 4px; }
.atelier-card .a-desc {
  font-size: 15px; color: #E7D9C7; max-height: 0; overflow: hidden; opacity: 0; margin: 0;
  transition: max-height 0.5s var(--ease), opacity 0.5s var(--ease), margin 0.5s var(--ease);
}
.atelier-card:hover .a-desc { max-height: 80px; opacity: 1; margin-top: 8px; }
.atelier-card .a-line {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 500; color: var(--gold);
  transform: translateY(8px); opacity: 0; transition: all 0.5s var(--ease) 0.05s;
}
.atelier-card:hover .a-line { transform: none; opacity: 1; }
.atelier-card .a-line .icon { transition: transform 0.3s var(--ease); }
.atelier-card:hover .a-line .icon { transform: translateX(4px); }

/* ==========================================================================
   SPOTLIGHT — wide detail rows (category "explore the range" section)
   ========================================================================== */
.spotlight { display: flex; flex-direction: column; gap: 20px; }
.spot-row {
  display: grid; grid-template-columns: 300px 1fr auto; gap: 36px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.spot-row:hover { border-color: transparent; box-shadow: var(--shadow-card); transform: translateX(6px); }
.spot-row .s-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.spot-row .s-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.spot-row:hover .s-img img { transform: scale(1.06); }
.spot-row .s-cat { font-family: 'Sora', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); }
.spot-row h3 { font-size: 24px; margin: 6px 0 8px; }
.spot-row p { margin: 0 0 14px; color: var(--text); font-size: 15.5px; max-width: 480px; }
.s-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.s-tags span {
  font-family: 'Sora', sans-serif; font-size: 12px; color: var(--maroon-soft);
  background: var(--cream-2); border-radius: 999px; padding: 5px 13px;
}
.spot-row .s-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

/* Atelier + Spotlight responsive */
@media (max-width: 1100px) {
  .atelier-grid { grid-template-columns: repeat(3, 1fr); }
  .atelier-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .atelier-grid, .atelier-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .spot-row { grid-template-columns: 1fr; gap: 18px; }
  .spot-row .s-cta { flex-direction: row; }
  .spot-row .s-cta .btn { flex: 1; justify-content: center; }
}
@media (max-width: 480px) {
  .atelier-grid, .atelier-grid.cols-3 { grid-template-columns: 1fr; gap: 14px; }
  .atelier-card { aspect-ratio: 4/3; }
  .spot-row .s-cta { flex-direction: column; }
}

/* ==========================================================================
   FEATURED CATEGORY BANNER — large hero category (collection page)
   ========================================================================== */
.feat-cat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 24px; overflow: hidden;
  background: var(--maroon);
  box-shadow: var(--shadow-card);
  min-height: 520px;
}
.feat-cat .fc-text {
  position: relative; z-index: 2;
  padding: 64px; display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.feat-cat .fc-text::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 90% at 0% 100%, rgba(201,163,59,0.18), transparent 60%);
}
.feat-cat .fc-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.feat-cat .fc-kicker::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.feat-cat .fc-script { font-family: 'Ballet', cursive; color: var(--gold); font-size: 40px; line-height: 0.9; margin-bottom: 2px; }
.feat-cat h2 { color: #fff; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; margin: 0 0 18px; letter-spacing: -0.02em; }
.feat-cat .fc-desc { color: #E7D9C7; font-size: 19px; max-width: 440px; margin: 0 0 28px; }
.feat-cat .fc-meta { display: flex; gap: 30px; margin-bottom: 32px; }
.feat-cat .fc-meta .m strong { display: block; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 24px; color: var(--gold); line-height: 1; }
.feat-cat .fc-meta .m span { font-size: 13px; color: #C9B7A4; }
.feat-cat .fc-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* image collage side */
.feat-cat .fc-media {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; padding: 18px;
}
.feat-cat .fc-media .fm {
  border-radius: 14px; overflow: hidden; position: relative;
}
.feat-cat .fc-media .fm:first-child { grid-row: span 2; }
.feat-cat .fc-media .fm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.feat-cat:hover .fc-media .fm:first-child img { transform: scale(1.06); }
.feat-cat .fc-media .fm-stamp {
  position: absolute; left: 14px; bottom: 14px; z-index: 1;
  background: var(--gold); color: var(--maroon);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 13px; border-radius: 8px;
}

@media (max-width: 980px) {
  .feat-cat { grid-template-columns: 1fr; min-height: 0; }
  .feat-cat .fc-text { padding: 44px 32px; order: 2; }
  .feat-cat .fc-media { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; order: 1; }
}
@media (max-width: 480px) {
  .feat-cat .fc-media { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px; padding: 12px; gap: 8px; }
  .feat-cat .fc-text { padding: 36px 24px; }
  .feat-cat .fc-meta { gap: 22px; }
}

/* mobile-only "Request a Quote" nav item (injected by main.js) */
.nav-quote-mobile { display: none; }
@media (max-width: 860px) {
  .nav-quote-mobile { display: block; }
  .nav-quote-mobile a {
    display: inline-block !important;
    margin: 10px 24px 6px;
    padding: 12px 24px !important;
    background: var(--gold); color: var(--maroon) !important;
    border-radius: 999px; font-weight: 600;
  }
  .nav-quote-mobile a::after { display: none; }
}

/* compact icon-only quote button in the header (mobile only, injected by main.js) */
.header-quote-mobile { display: none; }
@media (max-width: 860px) {
  .header-quote-mobile {
    display: grid; place-items: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); color: var(--maroon);
    font-size: 19px; flex: none;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
  }
  .header-quote-mobile:hover, .header-quote-mobile:active {
    background: var(--maroon); color: var(--gold); transform: scale(1.05);
  }
}

/* ==========================================================================
   CONTACT POPUP — modal quote/enquiry form (Resend-backed)
   ========================================================================== */
.cpop-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(24, 14, 9, 0.62);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.cpop-overlay.open { opacity: 1; visibility: visible; }

.cpop {
  position: relative;
  width: 100%; max-width: 920px; max-height: 92vh; overflow: hidden;
  background: var(--cream);
  border-radius: 22px;
  box-shadow: 0 40px 90px -30px rgba(24,14,9,0.7);
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s var(--ease);
}
.cpop-overlay.open .cpop { transform: none; }

/* left brand rail */
.cpop-aside {
  position: relative; overflow: hidden;
  background: var(--maroon); color: #fff;
  padding: 44px 36px; display: flex; flex-direction: column; justify-content: space-between;
}
.cpop-aside::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(90% 80% at 100% 0%, rgba(201,163,59,0.22), transparent 60%);
}
.cpop-aside > * { position: relative; }
.cpop-aside .cpop-logo { height: 46px; width: auto; margin-bottom: 28px; }
.cpop-aside .cpop-script { font-family: 'Ballet', cursive; color: var(--gold); font-size: 34px; line-height: 0.9; }
.cpop-aside h3 { color: #fff; font-size: 28px; line-height: 1.1; margin: 2px 0 14px; }
.cpop-aside p { color: #D9C9B8; font-size: 15.5px; margin: 0; }
.cpop-aside .cpop-points { list-style: none; margin: 26px 0 0; padding: 0; }
.cpop-aside .cpop-points li {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-family: 'Sora', sans-serif; font-size: 14px; color: #E7D9C7;
}
.cpop-aside .cpop-points .icon { color: var(--gold); font-size: 16px; }

/* right form */
.cpop-main { padding: 40px; overflow-y: auto; }
.cpop-main .cpop-head { font-family: 'Sora', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); }
.cpop-main h2 { font-size: 27px; margin: 6px 0 22px; }
.cpop-close {
  position: absolute; top: 16px; right: 18px; z-index: 5;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: none; background: var(--white); color: var(--maroon);
  font-size: 22px; line-height: 1; display: grid; place-items: center;
  box-shadow: var(--shadow-soft); transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.cpop-close:hover { background: var(--maroon); color: var(--gold); transform: rotate(90deg); }

/* honeypot (hidden from humans) */
.cpop-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* states */
.cpop-state { display: none; }
.cpop-state.active { display: block; }
.cpop-feedback {
  text-align: center; padding: 24px 8px;
}
.cpop-feedback .ic {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 32px;
}
.cpop-feedback.ok .ic { background: rgba(40,167,69,0.12); color: #1f9d57; }
.cpop-feedback.err .ic { background: rgba(255,73,73,0.12); color: #d33; }
.cpop-feedback h3 { font-size: 24px; margin: 0 0 8px; }
.cpop-feedback p { color: var(--text); margin: 0 0 22px; }

/* button loading spinner */
.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn .spinner { display: none; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent; animation: cpop-spin 0.7s linear infinite; }
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label, .btn.is-loading .icon { display: none; }
@keyframes cpop-spin { to { transform: rotate(360deg); } }

@media (max-width: 780px) {
  .cpop { grid-template-columns: 1fr; max-height: 94vh; overflow-y: auto; }
  .cpop-aside { display: none; }
  .cpop-main { padding: 40px 24px 28px; }
}
