/* ============================================================
   JANG MARBLE — LUXURY DESIGN SYSTEM
   Elite surfaces for discerning homes
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:         #c9a96e;
  --gold-light:   #e4c99a;
  --gold-dark:    #a07840;
  --gold-pale:    #f0e4cc;
  --black:        #0a0806;
  --dark:         #141210;
  --charcoal:     #1e1b18;
  --warm-mid:     #3a352e;
  --mid:          #6b6255;
  --muted:        #9a9088;
  --light:        #d5cec5;
  --cream:        #f4efe8;
  --ivory:        #faf7f2;
  --white:        #ffffff;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Montserrat', 'Inter', sans-serif;

  --container:    1280px;
  --h:            80px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --dur:          0.4s;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--dark);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}
h1 { font-size: clamp(40px, 5vw, 68px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 1.8vw, 22px); font-weight: 500; }
p  { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.section { padding: clamp(80px, 10vw, 130px) 0; }
.section-sm { padding: clamp(50px, 6vw, 80px) 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-gold   { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.btn-dark   { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

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

.btn-outline-light { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: var(--white); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--h);
  z-index: 1000;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 11, 8, 0.96);
  backdrop-filter: blur(12px);
  border-color: rgba(201,169,110,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(20px, 5vw, 72px);
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo */
.site-logo { display: flex; flex-direction: column; line-height: 1; }
.site-logo .logo-main {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.25em;
  color: var(--white);
}
.site-logo .logo-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 8px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Desktop nav */
.primary-nav { display: flex; gap: 44px; }
.primary-nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 24px; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: all var(--dur) var(--ease);
}
.menu-toggle span:nth-child(1) { width: 100%; }
.menu-toggle span:nth-child(2) { width: 68%; }
.menu-toggle span:nth-child(3) { width: 84%; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 100%; }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 100%; }

/* Mobile nav drawer */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
  z-index: 1100;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 100vw);
  background: var(--charcoal);
  padding: 100px 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  z-index: 1200;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav nav a {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  padding: 6px 0;
  display: block;
}
.mobile-nav nav a:hover,
.mobile-nav nav a.active { color: var(--gold); }

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   HERO — FULL SCREEN
   ============================================================ */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-full .hero-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0.38;
}
.hero-full .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.hero-full .hero-content {
  position: relative;
  z-index: 2;
  padding: 130px clamp(20px, 5vw, 80px) 100px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero-full .hero-eyebrow { margin-bottom: 28px; }
.hero-full h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(52px, 7.5vw, 110px);
  line-height: 1.0;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-full h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-full .hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  line-height: 1.95;
  margin-bottom: 52px;
  letter-spacing: 0.02em;
}
.hero-full .hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-full .hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-full .hero-stats .stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-full .hero-stats .stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollHint 2.4s ease-in-out infinite;
}
.hero-scroll-hint::before {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.5));
}
@keyframes scrollHint { 0%,100%{ transform:translateX(-50%) translateY(0)} 50%{ transform:translateX(-50%) translateY(8px)} }

/* ============================================================
   HERO — PAGE (inner pages)
   ============================================================ */
.hero-page {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
  margin-top: var(--h);
}
.hero-page .hero-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0.28;
}
.hero-page .hero-content {
  position: relative;
  z-index: 2;
  padding: 32px clamp(20px, 5vw, 80px) 52px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid rgba(201,169,110,0.25);
}
.hero-page h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 8px;
}
.hero-page .hero-breadcrumb {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   HOMEPAGE — STATEMENT STRIP
   ============================================================ */
.statement-strip {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--light);
}
.statement-strip blockquote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  color: var(--dark);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
  padding: 0 clamp(20px, 5vw, 60px);
}
.statement-strip blockquote em { color: var(--gold); font-style: normal; }

/* ============================================================
   HOMEPAGE — COLLECTIONS
   ============================================================ */
.collections-section { background: var(--ivory); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.section-header .section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--dark);
  margin-top: 16px;
}
.section-header .section-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.section-header .section-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* Product cards on homepage */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.product-card .card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.4s;
}
.product-card:hover .card-img { transform: scale(1.07); opacity: 0.65; }
.product-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
}
.product-card .card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  transform: translateY(12px);
  transition: transform var(--dur) var(--ease);
}
.product-card:hover .card-body { transform: translateY(0); }
.product-card .card-num {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold); margin-bottom: 8px;
}
.product-card .card-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: var(--white); line-height: 1.2;
  margin-bottom: 8px;
}
.product-card .card-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  opacity: 0;
  transition: opacity var(--dur) var(--ease) 0.08s;
}
.product-card:hover .card-desc { opacity: 1; }
.product-card .card-actions {
  display: flex; gap: 12px;
  margin-top: 18px;
  opacity: 0; transform: translateY(10px);
  transition: all var(--dur) var(--ease) 0.1s;
}
.product-card:hover .card-actions { opacity: 1; transform: translateY(0); }

/* ============================================================
   HOMEPAGE — CRAFT (dark section)
   ============================================================ */
.craft-section {
  background: var(--dark);
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.craft-content h2 { color: var(--white); margin: 20px 0 24px; }
.craft-content .craft-lead {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9; margin-bottom: 44px;
}
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: flex; gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold);
  min-width: 28px;
  padding-top: 2px;
}
.process-item h4 {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 400;
  color: var(--white); margin-bottom: 5px;
}
.process-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.craft-visual { position: relative; }
.craft-visual img { width: 100%; height: 560px; object-fit: cover; }
.craft-visual-frame {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 55%; height: 180px;
  border: 1px solid rgba(201,169,110,0.4);
  pointer-events: none;
}

/* ============================================================
   HOMEPAGE — TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }
.testimonials-section .section-head {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-section .section-head h2 { margin-top: 16px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--white);
  padding: 44px 40px;
  position: relative;
}
.testimonial-card .stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-card .stars span { color: var(--gold); font-size: 12px; }
.testimonial-card .quote {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-card .quote-mark {
  position: absolute;
  top: 24px; right: 32px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card .author-name {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
}
.testimonial-card .author-role { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   HOMEPAGE — FEATURES BAR
   ============================================================ */
.features-bar {
  background: var(--charcoal);
  padding: 56px 0;
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.feature-item h4 {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 4px;
}
.feature-item p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ============================================================
   HOMEPAGE — CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--black);
  padding: 110px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.cta-banner .eyebrow { margin-bottom: 24px; }
.cta-banner h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 60px);
  color: var(--white); margin-bottom: 20px;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 460px; margin: 0 auto 52px;
  line-height: 1.9;
}
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,169,110,0.18);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-main {
  font-family: var(--font-sans);
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.25em; color: var(--white);
  display: block;
}
.footer-brand .logo-sub {
  font-family: var(--font-sans);
  font-size: 8px; font-weight: 300;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 3px; margin-bottom: 20px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.9; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.footer-col ul a::before { content: '—'; font-size: 10px; color: rgba(201,169,110,0.4); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item .icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-bottom {
  padding: 24px clamp(20px, 5vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1440px; margin: 0 auto;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-admin-link {
  font-size: 11px; color: rgba(255,255,255,0.15);
  letter-spacing: 0.12em; transition: color 0.3s;
}
.footer-admin-link:hover { color: rgba(201,169,110,0.5); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.28);
  animation: waRing 2.2s ease-out infinite;
}
@keyframes waRing { 0%{ transform:scale(1);opacity:.8} 100%{transform:scale(1.55);opacity:0} }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-content h2 { margin: 20px 0 24px; }
.about-content p { margin-bottom: 16px; }
.about-visual { position: relative; }
.about-visual img { width: 100%; height: 520px; object-fit: cover; }
.about-visual-frame {
  position: absolute; top: -20px; left: -20px;
  width: 50%; height: 140px;
  border: 1px solid rgba(201,169,110,0.4);
  pointer-events: none;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}
.value-card {
  background: var(--dark);
  padding: 44px 36px;
  position: relative; overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card .val-num {
  font-family: var(--font-serif);
  font-size: 52px; font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1; margin-bottom: 20px;
}
.value-card h4 { font-family: var(--font-serif); font-size: 19px; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; }
.owner-section { background: var(--cream); }
.owner-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
  background: var(--white);
  padding: 60px;
}
.owner-card .owner-img { width: 100%; height: 460px; object-fit: cover; }
.owner-card .owner-eyebrow { margin-bottom: 12px; }
.owner-card h2 { font-weight: 300; font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 8px; }
.owner-card .owner-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: block;
}
.owner-card p { margin-bottom: 14px; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-listing-card {
  background: var(--white);
  border: 1px solid var(--light);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.product-listing-card:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.product-listing-card .card-img-wrap {
  overflow: hidden;
  height: 260px;
}
.product-listing-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-listing-card:hover .card-img-wrap img { transform: scale(1.05); }
.product-listing-card .card-body { padding: 28px; }
.product-listing-card .card-cat {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  display: block;
}
.product-listing-card h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: var(--dark); margin-bottom: 10px;
}
.product-listing-card p {
  font-size: 14px; color: var(--mid);
  line-height: 1.75; margin-bottom: 24px;
}
.product-listing-card .card-footer {
  display: flex; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--light);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 44px; padding-top: 12px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--light);
  color: var(--mid); background: transparent;
  cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.filter-btn.active { background: var(--dark); border-color: var(--dark); color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  background: var(--charcoal); cursor: pointer;
  border: none; padding: 0; display: block; width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.4s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); opacity: 0.55; }
.gallery-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
}
.gallery-caption-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease);
}
.gallery-item:hover .gallery-caption-hover { transform: translateY(0); }
.gallery-caption-hover h4 {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 400;
  color: var(--white); margin-bottom: 2px;
}
.gallery-caption-hover span {
  font-size: 10px; color: var(--gold-light);
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin: 20px 0 20px; }
.contact-info > p { font-size: 15px; color: var(--mid); line-height: 1.9; margin-bottom: 44px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}
.contact-detail-icon { font-size: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail-item h4 {
  font-family: var(--font-sans);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 5px;
}
.contact-detail-item p,
.contact-detail-item a { font-size: 14px; color: var(--mid); line-height: 1.6; }
.contact-detail-item a:hover { color: var(--gold-dark); }
.contact-form-wrap {
  background: var(--white);
  padding: 52px;
  border: 1px solid var(--light);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 400; color: var(--dark);
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--light);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 9px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--ivory);
  border: 1px solid var(--light);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  outline: none; border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.map-section { background: var(--dark); padding: clamp(60px,7vw,100px) 0 0; }
.map-section h2 { color: var(--white); margin: 16px 0 12px; }
.map-sub { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 40px; }
.map-embed { overflow: hidden; height: 400px; }
.map-embed iframe {
  width: 100%; height: 100%; border: 0;
  display: block;
  filter: grayscale(100%) contrast(0.88) brightness(0.85);
}

/* ============================================================
   ALERTS / FLASH
   ============================================================ */
.alert { padding: 14px 18px; margin-bottom: 22px; font-size: 13px; font-weight: 400; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: rgba(74,124,89,0.08); border-left: 3px solid #4a7c59; color: #2d5c3a; }
.alert-error   { background: rgba(180,60,60,0.08);  border-left: 3px solid #b43c3c;  color: #8a2020; }
.contact-success {
  text-align: center; padding: 60px 40px;
  background: var(--white); border: 1px solid var(--light);
}
.contact-success .success-icon {
  width: 60px; height: 60px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin: 0 auto 24px;
}
.contact-success h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.contact-success p { margin-bottom: 28px; }

/* ============================================================
   MODALS (lightbox + product)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox-content { position: relative; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 82vw; max-height: 76vh; object-fit: contain; }
.lightbox-caption { margin-top: 18px; font-family: var(--font-serif); font-size: 17px; font-style: italic; color: rgba(255,255,255,0.5); }
.lightbox-close {
  position: absolute; top: -50px; right: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 26px;
  cursor: pointer; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; transition: all 0.3s;
  background: rgba(0,0,0,0.3);
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay[hidden] { display: none; }
.modal-content {
  position: relative;
  background: var(--white);
  max-width: 900px; width: 90vw;
  max-height: 86vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.55); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  cursor: pointer; transition: background 0.3s; z-index: 2;
}
.modal-close:hover { background: rgba(201,169,110,0.8); }
.modal-grid { display: contents; }
.modal-img { background: center/cover no-repeat var(--charcoal); min-height: 400px; }
.modal-text { padding: 44px; display: flex; flex-direction: column; }
.modal-text > span { font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.modal-text h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 400; margin-bottom: 16px; }
.modal-desc { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 24px; }
.modal-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.modal-features .feature-item { font-size: 13px; color: var(--mid); display: flex; align-items: center; gap: 10px; }
.modal-features .feature-item::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
.modal-text .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { font-family: var(--font-sans); background: #f0ede8; min-height: 100vh; color: var(--dark); }
.admin-header { background: var(--dark); padding: 0 32px; height: 60px; display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--gold); position: sticky; top: 0; z-index: 100; }
.admin-header .admin-logo { font-size: 14px; font-weight: 600; letter-spacing: 0.18em; color: var(--white); display: flex; align-items: center; gap: 8px; }
.admin-header .admin-logo span { color: var(--gold); }
.admin-header nav { display: flex; gap: 6px; }
.admin-header nav a { padding: 7px 14px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.3s; border-radius: 2px; }
.admin-header nav a:hover, .admin-header nav a.active { color: var(--gold); background: rgba(255,255,255,0.05); }
.admin-main { max-width: 1200px; margin: 0 auto; padding: 40px 32px; }
.admin-page-title { font-family: var(--font-serif); font-size: 30px; font-weight: 400; color: var(--dark); margin-bottom: 28px; }
.admin-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 36px; }
.admin-stat-card { background: var(--white); padding: 24px; border-left: 3px solid var(--gold); }
.admin-stat-card .stat-number { font-family: var(--font-serif); font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; }
.admin-stat-card .stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-top: 6px; }
.card { background: var(--white); padding: 28px; margin-bottom: 20px; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--light); }
.card-header h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 400; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); padding: 10px 14px; border-bottom: 1px solid var(--light); }
.admin-table td { padding: 13px 14px; font-size: 14px; color: var(--dark); border-bottom: 1px solid rgba(0,0,0,0.04); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: var(--ivory); }
.admin-table img { width: 44px; height: 44px; object-fit: cover; }
.login-body { background: var(--dark); display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-card { background: var(--white); padding: 52px 44px; width: 420px; max-width: 95vw; }
.login-card .logo-area { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.login-card h1 { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--dark); margin: 12px 0 28px; }
.badge { display: inline-block; padding: 3px 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-new { background: #e8f5e9; color: #2d6a3f; }
.badge-read { background: var(--cream); color: var(--mid); }

/* ============================================================
   UTILITIES
   ============================================================ */
.w-full { width: 100%; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold) !important; }
.text-mid   { color: var(--mid) !important; }
.bg-dark    { background: var(--dark); }
.bg-black   { background: var(--black); }
.bg-cream   { background: var(--cream); }
.page-top   { padding-top: var(--h); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .craft-grid  { grid-template-columns: 1fr; gap: 60px; }
  .about-grid  { grid-template-columns: 1fr; gap: 56px; }
  .owner-card  { grid-template-columns: 1fr; }
  .owner-card .owner-img { height: 280px; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --h: 64px; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr; gap: 2px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .features-inner { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-full .hero-stats { gap: 32px; flex-wrap: wrap; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-img { min-height: 240px; }
  .admin-cards { grid-template-columns: 1fr; }
  .admin-header nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .hero-full .hero-actions { flex-direction: column; align-items: flex-start; }
}
