<style>
/* ═══════════════════════════════════════════════
   DESIGN TOKENS — Golden Coffee & Beige Luxury
═══════════════════════════════════════════════ */
:root {
  --gold-deep:    #8B6914;
  --gold-mid:     #B8912A;
  --gold-bright:  #D4AF60;
  --gold-light:   #E8D08A;
  --gold-pale:    #F5EAC8;
  --coffee-dark:  #2C1A0E;
  --coffee-mid:   #5C3A1E;
  --coffee-light: #9B6B3A;
  --beige-deep:   #C4A882;
  --beige-mid:    #DEC9A8;
  --beige-light:  #F0E4D0;
  --beige-cream:  #FAF6EE;
  --cream:        #FDFAF5;
  --text-dark:    #1C1008;
  --text-mid:     #4A2E14;
  --text-light:   #7A5C38;
  --white:        #FFFFFF;

  --ff-display: 'Cinzel', serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Lato', sans-serif;

  --shadow-gold: 0 4px 30px rgba(180,140,40,0.25);
  --shadow-deep: 0 8px 50px rgba(44,26,14,0.3);
  --r: 3px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--ff-body);
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(212,175,96,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--ease);
}

/* ═══════════════════════════════════════════════
   TOP RIBBON
═══════════════════════════════════════════════ */
.top-ribbon {
  background: var(--coffee-dark);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 1rem;
  border-bottom: 1px solid var(--gold-deep);
}
.top-ribbon span { color: var(--gold-bright); margin: 0 0.5rem; }

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250,246,238,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--beige-mid);
  box-shadow: 0 2px 20px rgba(44,26,14,0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coffee-dark);
  letter-spacing: 0.08em;
}
.brand-name em {
  color: var(--gold-mid);
  font-style: normal;
}
.brand-sub {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coffee-light);
  margin-top: 3px;
}

nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--gold-deep); background: var(--gold-pale); }
.nav-cta {
  background: var(--coffee-dark) !important;
  color: var(--gold-light) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 2px !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-deep) !important; color: #fff !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--coffee-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO VIDEO SLIDER
═══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--coffee-dark);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slide canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Gradient overlay on each slide */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,26,14,0.72) 0%,
    rgba(44,26,14,0.3) 50%,
    rgba(44,26,14,0.55) 100%
  );
  z-index: 2;
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.slide-ornament {
  font-size: 1.4rem;
  color: var(--gold-bright);
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
  animation: fadeUp 1s var(--ease) both;
}
.slide-tagline {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  animation: fadeUp 1s 0.1s var(--ease) both;
}
.slide-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  animation: fadeUp 1s 0.2s var(--ease) both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.slide-title em {
  font-style: italic;
  color: var(--gold-bright);
}
.slide-desc {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(245,234,200,0.9);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.3s var(--ease) both;
}
.slide-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
  margin: 0 auto 2rem;
  animation: fadeUp 1s 0.35s var(--ease) both;
}
.slide-btns {
  display: flex;
  gap: 1rem;
  animation: fadeUp 1s 0.45s var(--ease) both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(139,105,20,0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,105,20,0.6);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(212,175,96,0.6);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  background: rgba(212,175,96,0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212,175,96,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold-bright);
  width: 24px;
  border-radius: 3px;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}
.arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(212,175,96,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  font-size: 1.1rem;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s;
  background: rgba(44,26,14,0.4);
  backdrop-filter: blur(6px);
}
.arrow:hover {
  background: rgba(139,105,20,0.7);
  border-color: var(--gold-bright);
  transform: scale(1.1);
}
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-mid), var(--gold-bright));
  z-index: 10;
  animation: progressBar 5s linear infinite;
}
@keyframes progressBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ═══════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════ */
.stats-band {
  background: var(--coffee-dark);
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding: 1.5rem 2rem;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-right: 1px solid rgba(212,175,96,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige-mid);
  margin-top: 0.3rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════ */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-align: center;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--coffee-dark);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-family: var(--ff-serif);
}
.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.ornament-line::before,
.ornament-line::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-mid));
}
.ornament-line::after {
  background: linear-gradient(to left, transparent, var(--gold-mid));
}
.ornament-line span {
  color: var(--gold-bright);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section { background: var(--beige-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-visual {
  position: relative;
}
.about-canvas-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--beige-mid);
}
.about-canvas-wrap canvas {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(139,105,20,0.5);
}
.about-badge .num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}
.about-text { padding-top: 1rem; }
.about-text h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--coffee-mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════ */
.products-section {
  background: var(--cream);
  position: relative;
}
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,175,96,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139,105,20,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}
.product-card {
  background: var(--beige-cream);
  border: 1px solid var(--beige-mid);
  border-radius: var(--r);
  padding: 1.8rem 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-mid), var(--gold-bright));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.product-name {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--coffee-dark);
  margin-bottom: 0.6rem;
}
.product-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════
   DESIGNS SECTION
═══════════════════════════════════════════════ */
.designs-section { background: var(--coffee-dark); }
.designs-section .section-title { color: var(--gold-light); }
.designs-section .section-label { color: var(--gold-mid); }
.designs-section .ornament-line::before,
.designs-section .ornament-line::after {
  background: linear-gradient(to right, transparent, rgba(212,175,96,0.4));
}
.designs-section .ornament-line::after {
  background: linear-gradient(to left, transparent, rgba(212,175,96,0.4));
}
.designs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.design-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
  aspect-ratio: 16/9;
  border: 1px solid rgba(212,175,96,0.2);
}
.design-card canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.design-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.92) 0%, rgba(44,26,14,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}
.design-card:hover .design-card-overlay {
  background: linear-gradient(to top, rgba(44,26,14,0.98) 0%, rgba(44,26,14,0.4) 60%, rgba(44,26,14,0.1) 100%);
}
.design-card-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.design-card-sub {
  font-size: 0.75rem;
  color: var(--beige-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.design-card-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,96,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}
.design-card:hover .design-card-arrow {
  opacity: 1;
  background: rgba(139,105,20,0.5);
}

/* ═══════════════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════════════ */
.featured-section { background: var(--beige-light); }
.featured-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.featured-slider::-webkit-scrollbar { display: none; }
.featured-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 280px;
  background: var(--cream);
  border: 1px solid var(--beige-mid);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  box-shadow: 0 2px 12px rgba(44,26,14,0.06);
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.featured-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.featured-img canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transition: transform 0.5s var(--ease);
}
.featured-card:hover .featured-img canvas { transform: scale(1.06); }
.featured-body { padding: 1.2rem; }
.featured-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.featured-name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--coffee-dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.featured-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.8rem;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.featured-link:hover { color: var(--gold-mid); border-color: var(--gold-mid); }

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--coffee-dark);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(212,175,96,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(212,175,96,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.contact-section .section-title { color: var(--gold-light); }
.contact-section .section-label { color: var(--gold-mid); }
.contact-section .ornament-line::before {
  background: linear-gradient(to right, transparent, rgba(212,175,96,0.4));
}
.contact-section .ornament-line::after {
  background: linear-gradient(to left, transparent, rgba(212,175,96,0.4));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {}
.contact-block {
  margin-bottom: 2rem;
}
.contact-block h4 {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,175,96,0.2);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(212,175,96,0.12);
  border: 1px solid rgba(212,175,96,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--gold-bright);
}
.contact-detail {}
.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige-mid);
  margin-bottom: 2px;
}
.contact-detail span, .contact-detail a {
  font-size: 0.9rem;
  color: var(--gold-light);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold-bright); }

/* Contact form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,96,0.2);
  border-radius: var(--r);
  padding: 2rem;
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.form-field {
  margin-bottom: 1rem;
}
.form-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige-mid);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,96,0.25);
  border-radius: 2px;
  padding: 0.7rem 0.9rem;
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(200,175,130,0.4);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-bright);
}
.form-field textarea { resize: none; height: 100px; }
.form-field select option { background: var(--coffee-dark); }
.btn-form {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(139,105,20,0.4);
}
.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,105,20,0.5);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: #110A04;
  border-top: 1px solid rgba(212,175,96,0.2);
  padding: 2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,175,130,0.5);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(200,175,130,0.6);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-copy {
  font-size: 0.68rem;
  color: rgba(200,175,130,0.35);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--coffee-dark);
  z-index: 800;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-light);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212,175,96,0.15);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-bright); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid rgba(212,175,96,0.3);
  color: var(--gold-bright);
  font-size: 1.2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 1.2rem; }
  nav { display: none; }
  .nav-burger { display: flex; }
  .designs-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { gap: 0; }
  .stat-item { min-width: 120px; }
  .hero-slider { height: 80vh; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0.7rem 1rem; }
  .brand-name { font-size: 1.2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .slide-btns { flex-direction: column; align-items: center; }
}
</style>