:root {
  --bg:           #FAF3EB;
  --cream:        #F2E9DC;
  --card:         #FFFDF9;
  --slate-dark:   #1C1612;
  --slate-mid:    #2E2720;
  --text:         #1C1612;
  --muted:        #7A6A5A;
  --light-text:   #B09A82;
  --amber:        #C4854A;
  --amber-light:  #F5EDE0;
  --amber-dark:   #9E6432;
  --amber-hover:  #B5773D;
  --border:       #E6DCCF;
  --green:        #2C6B4E;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Paper texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.25,1,0.5,1), transform 0.75s cubic-bezier(0.25,1,0.5,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Top Ribbon ── */
.top-ribbon {
  background: var(--slate-dark);
  color: var(--bg);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(196,133,74,0.2);
}
.top-ribbon span { margin: 0 14px; display: inline-block; }

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,243,235,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(28,22,18,0.08); }

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--slate-dark);
  cursor: pointer;
}
.logo span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  display: block;
  color: var(--amber);
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-menu { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  color: var(--text);
  display: inline-block;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--amber); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--amber); }

/* Visit Us CTA button in nav */
.nav-cta {
  background: var(--amber);
  color: white;
  padding: 10px 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.3s;
  display: inline-block;
}
.nav-cta:hover { background: var(--amber-hover); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  width: 24px;
  background: none;
  border: none;
  padding: 0;
}
.menu-toggle span {
  width: 100%; height: 1.5px;
  background: var(--slate-dark);
  transition: transform 0.4s cubic-bezier(0.1,1,0.1,1), opacity 0.3s;
  display: block;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero Carousel (Home Specific) ── */
.hero-carousel {
  position: relative;
  height: 88vh;
  min-height: 560px;
  background: var(--slate-dark);
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.25,1,0.5,1), visibility 1.2s;
  z-index: 1;
}
.carousel-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide-bg {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.carousel-slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,22,18,0.15) 0%, rgba(28,22,18,0.82) 100%);
  z-index: 2;
}
.slide-content {
  position: absolute;
  bottom: 13%; left: 8%; right: 8%;
  max-width: 760px;
  z-index: 3;
  color: white;
}
.slide-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.slide-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(34px, 5.5vw, 66px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.slide-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(250,243,235,0.85);
  font-weight: 300;
  max-width: 560px;
}
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: var(--amber);
  color: white;
  padding: 13px 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.slide-btn:hover { background: var(--amber-hover); }

.carousel-controls {
  position: absolute;
  right: 5%; bottom: 13%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}
.carousel-counter {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  min-width: 52px;
}
.carousel-arrow {
  cursor: pointer;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 14px;
  user-select: none;
}
.carousel-arrow:hover { background: white; color: var(--slate-dark); border-color: white; }
.carousel-dots {
  position: absolute;
  left: 8%; bottom: 6%;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dot.active { background: var(--amber); }

/* ── Stats Strip ── */
.stats-strip {
  background: linear-gradient(135deg, var(--slate-dark) 0%, #2b211a 100%);
  color: var(--bg);
  padding: 50px 0;
  border-top: 1px solid rgba(196,133,74,0.3);
}
.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px; top: 15%; width: 1px; height: 70%;
  background: rgba(176,154,130,0.2);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-text);
}

/* ── Section Basics ── */
section { padding: 110px 0; }
.section-header {
  max-width: 1400px;
  margin: 0 auto 55px auto;
  padding: 0 40px;
}
.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--slate-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0; width: 50px; height: 1px;
  background: var(--amber);
}

/* ── About (Home Preview) ── */
.grid-about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.3;
}
.about-text p { color: var(--muted); margin-bottom: 22px; font-size: 15px; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.highlight-box { border-left: 1px solid var(--amber); padding-left: 18px; }
.highlight-box h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.highlight-box p { font-size: 13px; margin: 0; }
.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(28,22,18,0.06);
}

/* ── Categories Grid (Home Specific) ── */
.categories-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}
.cat-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--slate-dark);
  cursor: pointer;
}
.cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,22,18,0.08) 35%, rgba(28,22,18,0.82) 100%);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  z-index: 2;
}
.cat-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}
.cat-card p { font-size: 12px; color: var(--light-text); letter-spacing: 0.5px; }

/* ── Testimonials (Home Specific) ── */
.testimonials-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}
.test-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.test-card.featured {
  background: var(--slate-dark);
  color: white;
  border-color: var(--slate-dark);
  position: relative;
}
.test-card.featured::before {
  content: "\201C";
  position: absolute;
  top: 16px; right: 36px;
  font-family: var(--font-heading);
  font-size: 130px;
  color: rgba(196,133,74,0.12);
  line-height: 1;
}
.test-quote { font-size: 14.5px; color: var(--muted); font-style: italic; margin-bottom: 28px; line-height: 1.7; }
.featured .test-quote { color: var(--bg); font-size: 18px; font-family: var(--font-heading); line-height: 1.45; }
.test-user { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 15px;
  color: var(--slate-dark);
  flex-shrink: 0;
}
.featured .test-avatar { background: var(--amber); color: white; }
.test-meta h4 { font-size: 13px; font-weight: 600; }
.test-meta p { font-size: 12px; color: var(--light-text); }

/* ── Products List (Collection Specific) ── */
.products-controls {
  max-width: 1400px;
  margin: 0 auto 45px auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--amber); color: var(--slate-dark); }
.filter-btn.active { background: var(--amber); border-color: var(--amber); color: white; }
.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
}
.product-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px rgba(28,22,18,0.08); border-color: var(--light-text); }
.product-img-wrapper {
  height: 240px;
  background: var(--cream);
  overflow: hidden;
}
.product-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,1,0.5,1);
}
.product-card:hover .product-real-img { transform: scale(1.07); }
.product-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--amber); font-weight: 600; margin-bottom: 5px; }
.product-name { font-family: var(--font-heading); font-size: 21px; font-weight: 500; color: var(--slate-dark); margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 18px; flex-grow: 1; line-height: 1.6; }
.product-enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--slate-dark);
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 11px 14px;
  width: 100%;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.product-card:hover .product-enquire-btn { background: var(--amber); }
.product-enquire-btn:hover { background: var(--amber-hover) !important; }

/* ── About Showroom Page Specific ── */
.about-page-hero {
  background: var(--slate-dark);
  padding: 100px 40px 80px;
  text-align: center;
  color: white;
}
.about-page-hero .section-tag { display: block; margin-bottom: 16px; }
.about-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 20px auto;
}
.about-page-hero p {
  font-size: 15px;
  color: rgba(250,243,235,0.7);
  max-width: 560px;
  margin: 0 auto;
}
.about-story {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story img { width: 100%; height: 480px; object-fit: cover; }
.about-story-text p { color: var(--muted); margin-bottom: 22px; font-size: 15px; line-height: 1.75; }
.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.25;
}
.about-values {
  max-width: 1400px;
  margin: 60px auto 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 30px;
}
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.brands-strip {
  background: var(--cream);
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
}
.brands-strip h3 { font-family: var(--font-heading); font-size: 14px; text-transform: uppercase; letter-spacing: 4px; color: var(--muted); margin-bottom: 36px; }
.brands-list { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.brand-badge {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--slate-dark);
  opacity: 0.6;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}
.brand-badge:hover { opacity: 1; }

.hours-banner {
  background: var(--amber);
  color: white;
  padding: 28px 40px;
  text-align: center;
}
.hours-banner h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.hours-banner p { font-size: 13px; letter-spacing: 1px; opacity: 0.9; }
.hours-grid {
  display: inline-flex;
  gap: 40px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hours-item { font-size: 13px; }
.hours-item strong { display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; opacity: 0.8; margin-bottom: 3px; }

/* ── FAQ Page Specific ── */
.faq-hero {
  background: var(--cream);
  padding: 80px 40px 60px;
  text-align: center;
}
.faq-hero h1 { font-family: var(--font-heading); font-size: clamp(34px, 4vw, 52px); font-weight: 300; font-style: italic; }
.faq-hero p { color: var(--muted); margin-top: 12px; font-size: 15px; }
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
  padding: 24px 0;
  gap: 20px;
}
.faq-icon { font-size: 20px; color: var(--amber); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }
.faq-cta {
  background: var(--slate-dark);
  color: white;
  text-align: center;
  padding: 80px 40px;
}
.faq-cta h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 400; margin-bottom: 12px; }
.faq-cta p { color: var(--light-text); margin-bottom: 28px; font-size: 15px; }
.faq-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--amber);
  color: white;
  padding: 13px 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--amber-hover); }
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: white; }

/* ── Visit Us / Contact Page Specific ── */
.visit-hero {
  background: var(--slate-dark);
  color: white;
  padding: 90px 40px 70px;
  text-align: center;
  border-bottom: 3px solid var(--amber);
}
.visit-hero h1 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 60px); font-weight: 300; font-style: italic; margin: 16px 0 14px; }
.visit-hero p { color: rgba(250,243,235,0.7); font-size: 15px; max-width: 500px; margin: 0 auto; }
.visit-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
}
.contact-info h2 { font-family: var(--font-heading); font-size: 32px; font-weight: 400; margin-bottom: 10px; }
.contact-info .sub { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.contact-detail-row {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-detail-row .icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.contact-detail-row h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--light-text); margin-bottom: 4px; }
.contact-detail-row p { font-size: 15px; color: var(--text); }
.contact-detail-row a { color: var(--amber); }
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  background: var(--amber);
  color: white;
  padding: 10px 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}
.directions-btn:hover { background: var(--amber-hover); }

/* Contact Form */
.inquiry-form {
  background: var(--slate-dark);
  padding: 44px;
  color: white;
}
.inquiry-form h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 400; margin-bottom: 6px; }
.inquiry-form .sub { color: var(--light-text); font-size: 13px; margin-bottom: 30px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--light-text); margin-bottom: 8px; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-control:focus { outline: none; border-color: var(--amber); background: rgba(255,255,255,0.08); }
.submit-btn {
  background: var(--amber);
  color: white;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
.submit-btn:hover { background: var(--amber-hover); }
.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}
.form-success h3 { font-family: var(--font-heading); font-size: 30px; color: var(--amber); margin-bottom: 14px; }
.form-success p { color: var(--light-text); font-size: 14px; }

/* Map */
.map-section {
  max-width: 1400px;
  margin: 0 auto 80px auto;
  padding: 0 40px;
}
.map-section h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; margin-bottom: 20px; }
.map-wrapper {
  height: 380px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* Whatsapp options on visit page */
.wa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}
.wa-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-card h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.wa-card p { font-size: 12px; color: var(--muted); }
.wa-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
  margin-top: 4px;
}

/* ── Services Page Specific ── */
.services-hero {
  background: var(--slate-dark);
  color: white;
  padding: 100px 40px 80px;
  text-align: center;
  border-bottom: 3px solid var(--amber);
}
.services-hero .section-tag { display: block; margin-bottom: 16px; }
.services-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 20px auto;
}
.services-hero p {
  font-size: 15px;
  color: rgba(250,243,235,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(28,22,18,0.06);
  border-color: var(--light-text);
}

.service-header-part {
  margin-bottom: 24px;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(196, 133, 74, 0.15);
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--slate-dark);
  margin-bottom: 6px;
}

.service-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-bullets {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
}

.service-bullet-icon {
  color: var(--amber);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.service-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--slate-dark);
  color: white;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 13px 20px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
  width: 100%;
  text-decoration: none;
}
.service-card:hover .service-cta-btn {
  background: var(--amber);
}
.service-cta-btn:hover {
  background: var(--amber-hover) !important;
}

/* Featured WhatsApp Ordering Box */
.whatsapp-featured-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--slate-dark) 0%, #2b211a 100%);
  color: white;
  border: 1px solid var(--slate-dark);
  border-top: 4px solid #25D366;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.whatsapp-featured-card::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.04);
  pointer-events: none;
}
.whatsapp-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.whatsapp-featured-card h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: white;
  margin-bottom: 6px;
}
.whatsapp-featured-card .service-subtitle {
  color: #25D366;
}
.whatsapp-featured-card .service-desc {
  color: rgba(250, 243, 235, 0.8);
  max-width: 800px;
}
.whatsapp-featured-card .service-bullet {
  color: rgba(250, 243, 235, 0.9);
}
.whatsapp-featured-card .service-bullet-icon {
  color: #25D366;
}
.whatsapp-featured-btn {
  background: #25D366 !important;
  color: white !important;
}
.whatsapp-featured-btn:hover {
  background: #20ba5a !important;
}
.whatsapp-featured-card:hover .service-cta-btn {
  background: #25D366;
}

/* ── Footer ── */
footer {
  background: #14100D;
  color: var(--light-text);
  padding: 70px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 70px);
  color: rgba(250,243,235,0.88);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: var(--amber); margin-bottom: 36px; }
.footer-divider { max-width: 80px; height: 1px; background: rgba(196,133,74,0.3); margin: 0 auto 36px auto; }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a {
  color: var(--light-text);
  font-family: var(--font-body); font-size: 12px; cursor: pointer;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-links a.active { color: var(--amber); }
.footer-legal { font-size: 12px; opacity: 0.55; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* ── WhatsApp Float ── */
.wa-float-container {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 2000;
  display: flex;
  align-items: center;
}
.wa-tooltip {
  background: var(--slate-dark);
  color: white;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.wa-float-container:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-float {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%,100% { transform: scale(1); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
  50% { transform: scale(1.06); box-shadow: 0 12px 30px rgba(37,211,102,0.5); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-about, .about-story, .visit-body { grid-template-columns: 1fr; gap: 50px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid .cat-card:first-child { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .wa-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .whatsapp-featured-card { grid-column: span 1; }
}

@media (max-width: 768px) {
  .top-ribbon span { display: block; margin: 3px 0; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    align-items: flex-start;
    padding: 0;
  }
  .nav-menu.open { max-height: 450px; opacity: 1; padding: 16px 0; }
  .nav-link { display: block; padding: 14px 30px; border-bottom: 1px solid rgba(28,22,18,0.04); width: 100%; text-align: left; }
  .nav-cta { margin: 12px 30px; display: inline-block; }
  .menu-toggle { display: flex; }
  .stats-container { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  section { padding: 70px 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid .cat-card:first-child { grid-column: span 1; }
  .about-values { grid-template-columns: 1fr; }
  .nav-container { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .stats-container { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .products-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .section-header, .products-controls, .faq-container,
  .grid-about, .visit-body, .about-story,
  .about-values, .brands-strip, .map-section { padding-left: 20px; padding-right: 20px; }
  .inquiry-form { padding: 28px 20px; }
  .about-page-hero, .visit-hero, .faq-hero, .hours-banner { padding-left: 20px; padding-right: 20px; }
}
