:root {
  --brown-dark:   #3B1F0E;
  --brown-mid:    #7B4A1E;
  --brown-light:  #C4843A;
  --gold:         #D4A853;
  --gold-light:   #F0CC7A;
  --cream:        #FAF5EE;
  --cream-dark:   #EDE3D2;
  --white:        #FFFFFF;
  --text-dark:    #1C1008;
  --text-mid:     #5C3A1E;
  --shadow:       rgba(59,31,14,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

a { color: inherit; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: rgba(250,245,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,132,58,0.25);
  box-shadow: 0 2px 24px var(--shadow);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; width: 52px; object-fit: contain; border-radius: 50%; background: var(--white); }
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.04em; line-height: 1.1;
}
.nav-brand span { display: block; font-size: 0.58rem; font-family: 'Jost', sans-serif; font-weight: 400; letter-spacing: 0.22em; color: var(--brown-light); text-transform: uppercase; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-mid); text-decoration: none;
  position: relative; padding-bottom: 3px;
  transition: color 0.25s; cursor: pointer;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--cream-dark);
  box-shadow: 0 8px 32px var(--shadow);
  min-width: 220px; padding: 8px 0;
  border-radius: 4px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--text-mid);
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--brown-dark); }
.nav-dropdown-menu a::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown-dark); transition: 0.3s; }

/* ─── HERO (home) ─── */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5C2E0A 50%, var(--brown-mid) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 5vw 60px;
  position: relative; overflow: hidden;
}
#home::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,168,83,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(196,132,58,0.10) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-logo {
  width: 160px; height: 160px; object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(212,168,83,0.35), 0 8px 40px rgba(0,0,0,0.45);
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease both;
  position: relative; z-index: 1;
  background: var(--white);
  padding: 6px;
}
.hero-tagline {
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
  animation: fadeUp 0.9s 0.15s ease both;
  position: relative; z-index: 1;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  animation: fadeUp 0.9s 0.25s ease both;
  position: relative; z-index: 1;
}
.hero-title span { color: var(--gold); display: block; }
.hero-sub {
  margin-top: 20px;
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.75);
  max-width: 540px; line-height: 1.75;
  animation: fadeUp 0.9s 0.38s ease both;
  position: relative; z-index: 1;
}
.hero-cta {
  margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.9s 0.5s ease both;
  position: relative; z-index: 1;
}
.btn-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  color: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(212,168,83,0.4);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(212,168,83,0.55); }
.btn-outline {
  padding: 13px 36px;
  border: 1.5px solid rgba(255,255,255,0.35); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; background: transparent;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.25s, color 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-slides {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 1;
}
.hero-slides span {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.3); border-radius: 2px;
  cursor: pointer; transition: background 0.3s;
}
.hero-slides span.active { background: var(--gold); }

/* ─── SECTION BASE ─── */
section { padding: 100px 6vw; }
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--brown-dark); line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--brown-light); }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  border-radius: 2px; margin-bottom: 32px;
}
.section-body {
  font-size: 1rem; line-height: 1.9; color: var(--text-mid); max-width: 780px;
}

/* ─── WHAT WE DO ─── */
#what-we-do {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.wwd-visual { position: relative; border-radius: 4px; overflow: hidden; }
.wwd-pattern {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--brown-dark), var(--brown-mid));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.wwd-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(rgba(212,168,83,0.08) 0deg 10deg, transparent 10deg 20deg);
}
.wwd-inner { text-align: center; color: var(--white); z-index: 1; padding: 40px; position: relative; }
.wwd-inner .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 7rem; font-weight: 900;
  line-height: 1; color: var(--gold); opacity: 0.85;
}
.wwd-inner p {
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 8px;
}
.accent-box {
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 3px solid var(--gold-light); border-radius: 4px;
  opacity: 0.35;
}

/* ─── PRODUCT CATEGORY CARDS (home) ─── */
#our-products { background: var(--cream); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s, box-shadow 0.28s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow); }
.product-card-banner {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  color: var(--gold-light);
}
.product-card-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
}
.pc-auto   { background: linear-gradient(135deg, #2C1810, #5C3020); }
.pc-food   { background: linear-gradient(135deg, #1A3020, #3A6040); }
.pc-rice   { background: linear-gradient(135deg, #3A1800, #8B3A10); }

.product-card-body { padding: 26px 24px 28px; }
.product-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  font-weight: 700; color: var(--brown-dark); margin-bottom: 10px;
}
.product-card-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.product-card-cta { margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown-light); font-weight: 600; }

/* ─── WHY CHOOSE US ─── */
#why-us { background: linear-gradient(160deg, var(--brown-dark) 0%, #4A2210 100%); }
#why-us .section-title { color: var(--white); }
#why-us .section-label { color: var(--gold-light); }
#why-us .section-divider { background: linear-gradient(90deg, var(--gold-light), rgba(255,255,255,0.3)); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 4px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(212,168,83,0.5); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(212,168,83,0.18); line-height: 1;
  position: absolute; top: 12px; right: 20px;
}
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-title {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--gold-light); margin-bottom: 10px;
}
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ─── GALLERY ─── */
#gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px; margin-top: 48px;
}
.gallery-item {
  background: var(--cream-dark);
  border-radius: 4px; overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-thumb {
  width: 100%; height: 100%; min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  transition: transform 0.4s;
  color: var(--gold-light);
}
.gallery-item:hover .gallery-thumb { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(59,31,14,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }

/* ─── REVIEWS ─── */
#reviews { background: var(--cream); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 4px; padding: 32px 28px;
  position: relative;
}
.review-quote {
  font-size: 4rem; line-height: 1;
  font-family: 'Playfair Display', serif;
  color: var(--gold); opacity: 0.4;
  margin-bottom: -16px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.8; color: var(--text-mid);
  margin-bottom: 20px;
}
.review-author { font-weight: 600; font-size: 0.82rem; color: var(--brown-dark); }
.review-role { font-size: 0.75rem; color: var(--brown-light); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }

/* ─── CERTIFICATIONS ─── */
#certifications { background: var(--white); }
.cert-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.cert-card {
  border: 2px solid var(--cream-dark);
  border-radius: 4px; padding: 36px 24px;
  text-align: center; transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
  background: var(--cream);
}
.cert-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.cert-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.cert-name {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--brown-dark); margin-bottom: 8px;
}
.cert-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; }

/* ─── CONTACT ─── */
#contact { background: linear-gradient(135deg, var(--brown-dark) 0%, #4A2210 100%); }
#contact .section-title { color: var(--white); }
#contact .section-label { color: var(--gold-light); }
#contact .section-divider { background: linear-gradient(90deg, var(--gold-light), rgba(255,255,255,0.2)); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-info p { color: rgba(255,255,255,0.75); line-height: 1.9; font-size: 0.95rem; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-detail .cd-icon { font-size: 1.2rem; margin-top: 2px; }
.contact-detail p { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.contact-detail strong { color: var(--gold-light); display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }

.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 3px; padding: 12px 16px;
  color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--brown-dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream); border-radius: 4px;
  width: 100%; max-width: 680px; max-height: 88vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  position: relative;
}
.modal-header {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  padding: 32px 36px 24px;
  border-radius: 4px 4px 0 0;
  position: relative;
}
.modal-header h3 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.modal-header p { color: var(--gold-light); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; }
.modal-tabs {
  display: flex; border-bottom: 1px solid var(--cream-dark);
  padding: 0 36px; background: var(--white);
  overflow-x: auto;
}
.modal-tab {
  padding: 16px 20px; font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: var(--text-mid); cursor: pointer; border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.modal-tab.active { color: var(--brown-dark); border-color: var(--gold); }
.modal-body { padding: 32px 36px; }
.modal-body p { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 14px; }
.modal-body ul { padding-left: 0; list-style: none; }
.modal-body ul li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.92rem; line-height: 1.7; color: var(--text-mid);
  position: relative;
}
.modal-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 1.5rem;
  color: rgba(255,255,255,0.7); cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 6vw 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 68px; width: 68px; object-fit: contain; border-radius: 50%; margin-bottom: 16px; background: var(--white); padding: 4px; }
.footer-brand h4 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: var(--white); margin-bottom: 4px;
}
.footer-brand .tagline { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; margin-top: 16px; }

.footer-col h5 {
  font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--white);
  margin-bottom: 20px; position: relative; padding-bottom: 10px;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--gold);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.83rem; color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.2s; cursor: pointer;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-info p { font-size: 0.83rem; margin-bottom: 10px; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-info strong { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom .made-with { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   CATEGORY PAGE STYLES
   ═══════════════════════════════════════════ */

.category-hero {
  padding: 140px 6vw 80px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5C2E0A 60%, var(--brown-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.category-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(212,168,83,0.06) 0, rgba(212,168,83,0.06) 1px, transparent 0, transparent 60%);
  background-size: 24px 24px;
}
.category-hero .crumb {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px; position: relative; z-index: 1;
}
.category-hero .crumb a { color: var(--gold-light); text-decoration: none; }
.category-hero .crumb a:hover { color: var(--white); }
.category-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  position: relative; z-index: 1;
}
.category-hero h1 em { color: var(--gold); font-style: italic; }
.category-hero .sub {
  margin-top: 18px; max-width: 720px; font-size: 1.05rem;
  color: rgba(255,255,255,0.78); line-height: 1.75;
  position: relative; z-index: 1;
}
.category-hero .badges {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 1;
}
.category-hero .badge {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid rgba(212,168,83,0.45);
  color: var(--gold-light); border-radius: 2px; font-weight: 600;
  background: rgba(0,0,0,0.15);
}

.controls-bar {
  padding: 36px 6vw 8px;
  background: var(--cream);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  border-bottom: 1px solid var(--cream-dark);
}
.search-input {
  flex: 1; min-width: 240px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  font-family: 'Jost', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,83,0.15); }
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { background: var(--cream-dark); }
.chip.active {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  color: var(--gold-light); border-color: var(--brown-dark);
}
.chip .count { opacity: 0.7; font-weight: 400; }
.result-count {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brown-light); font-weight: 600;
  margin-left: auto;
}

.category-section { padding: 40px 6vw 60px; background: var(--cream); }

.subcat-header {
  display: flex; align-items: baseline; gap: 16px; margin: 40px 0 24px;
}
.subcat-header .badge-tag {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); background: var(--brown-light); padding: 5px 12px;
  font-weight: 600;
}
.subcat-header h2 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  font-weight: 700; color: var(--brown-dark);
}
.subcat-header .count-pill {
  font-size: 0.72rem; color: var(--brown-light);
  background: var(--cream-dark); padding: 4px 10px; border-radius: 999px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.p-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.p-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(59,31,14,0.12);
  border-color: var(--gold);
}
.p-card .p-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--gold-light);
  position: relative;
  overflow: hidden;
}
.p-card .p-thumb-img {
  position: absolute; inset: 0;
  background-size: 200% 200%;
  background-position: center;
  opacity: 0.55;
  filter: saturate(1.05);
  transition: transform 0.45s ease, opacity 0.3s;
}
.p-card:hover .p-thumb-img { transform: scale(1.06); opacity: 0.78; }
.p-card .p-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(59,31,14,0.55) 0%, rgba(59,31,14,0.15) 60%, rgba(212,168,83,0.0) 100%);
  z-index: 1;
}
.p-card .p-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(212,168,83,0.05) 0 1px, transparent 1px 14px);
  z-index: 1;
}
.p-card .p-thumb .p-icon {
  position: relative; z-index: 2;
  font-size: 1.8rem;
  background: rgba(0,0,0,0.4);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(212,168,83,0.4);
}
.p-card .p-code {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.55); color: var(--gold-light);
  font-size: 0.65rem; letter-spacing: 0.18em; font-weight: 600;
  padding: 4px 8px; border-radius: 2px; text-transform: uppercase;
  z-index: 2;
}
.p-card .p-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.p-card .p-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem; font-weight: 600;
  color: var(--brown-dark); line-height: 1.3;
  margin-bottom: 6px;
}
.p-card .p-sub {
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--brown-light); text-transform: uppercase;
  font-weight: 500; margin-top: auto;
}

.empty-state {
  padding: 80px 20px; text-align: center;
  color: var(--text-mid);
}
.empty-state .e-icon { font-size: 3.5rem; opacity: 0.4; margin-bottom: 12px; }
.empty-state h3 { font-family: 'Playfair Display', serif; color: var(--brown-dark); margin-bottom: 8px; }

/* ─── PRODUCT DETAIL MODAL ─── */
.pdet-overlay {
  display: none; position: fixed; inset: 0; z-index: 2100;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.pdet-overlay.open { display: flex; }
.pdet-box {
  background: var(--cream); border-radius: 6px;
  width: 100%; max-width: 880px; max-height: 90vh; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: grid; grid-template-columns: 1fr 1.1fr;
  position: relative;
}
.pdet-img {
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.pdet-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.pdet-img .pd-code {
  position: absolute; top: 14px; left: 14px;
  background: var(--brown-dark); color: var(--gold-light);
  font-size: 0.72rem; padding: 6px 12px;
  letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase;
}
.pdet-info {
  padding: 36px 36px 32px; overflow-y: auto;
}
.pdet-info .crumb {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown-light); margin-bottom: 10px; font-weight: 600;
}
.pdet-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700; color: var(--brown-dark);
  line-height: 1.2; margin-bottom: 16px;
}
.pdet-info .pd-desc {
  font-size: 0.95rem; line-height: 1.75; color: var(--text-mid);
  margin-bottom: 20px;
}
.pdet-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px;
  margin: 18px 0 22px;
}
.pdet-specs .spec {
  background: var(--white); border: 1px solid var(--cream-dark);
  padding: 12px 14px; border-radius: 3px;
}
.pdet-specs .spec strong {
  display: block; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brown-light);
  margin-bottom: 4px; font-weight: 600;
}
.pdet-specs .spec span { font-size: 0.88rem; color: var(--text-dark); font-weight: 500; }
.pdet-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(0,0,0,0.4); color: var(--white);
  border: none; width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pdet-close:hover { background: rgba(0,0,0,0.7); }
.pdet-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pdet-cta a {
  padding: 11px 22px; font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  border-radius: 3px; text-decoration: none;
  transition: all 0.2s;
}
.pdet-cta .cta-prim {
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  color: var(--white);
}
.pdet-cta .cta-prim:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,168,83,0.4); }
.pdet-cta .cta-out {
  border: 1.5px solid var(--brown-mid); color: var(--brown-dark);
}
.pdet-cta .cta-out:hover { background: var(--brown-dark); color: var(--gold-light); }

/* ─── CATALOG GALLERY ─── */
.catalog-section { background: var(--white); padding: 80px 6vw; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.cat-page {
  border: 1px solid var(--cream-dark); border-radius: 4px;
  overflow: hidden; cursor: zoom-in;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--cream);
  position: relative;
}
.cat-page:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow); }
.cat-page img { width: 100%; display: block; }
.cat-page .pg-num {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--brown-dark); color: var(--gold-light);
  font-size: 0.68rem; padding: 4px 10px; letter-spacing: 0.16em;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2200;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 92vh; object-fit: contain; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.lightbox .lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox .lb-nav:hover { background: rgba(0,0,0,0.8); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #what-we-do { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 24px 6vw;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 32px var(--shadow);
    gap: 0;
  }
  .nav-links.open li { border-bottom: 1px solid var(--cream-dark); }
  .nav-links.open a { display: block; padding: 14px 0; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; display: block; background: transparent; }
  .nav-dropdown-menu a { padding: 8px 0 8px 16px; font-size: 0.74rem; }
  .form-row { grid-template-columns: 1fr; }
  .pdet-box { grid-template-columns: 1fr; max-height: 95vh; }
  .pdet-img { min-height: 240px; max-height: 280px; }
  .pdet-specs { grid-template-columns: 1fr; }
  .controls-bar { padding: 28px 6vw 12px; }
  .result-count { margin-left: 0; }
}
@media (max-width: 600px) {
  section { padding: 72px 5vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .category-hero { padding: 110px 5vw 60px; }
  .subcat-header { flex-wrap: wrap; gap: 10px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .p-card .p-thumb { height: 100px; font-size: 1.8rem; }
  .p-card .p-body { padding: 12px; }
  .p-card .p-name { font-size: 0.86rem; }
}
