@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Cormorant+Garant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --primary: #1C1410;       /* Deep espresso */
  --secondary: #8B6035;     /* Golden tan accent */
  --tan: #B67C3B;           /* Warm tan — buttons */
  --accent: #8B6035;        /* Golden tan — icon & text accents */
  --bg-main: #F5EFE6;       /* Warm ivory */
  --text-main: #2B2B2B;
  --white: #ffffff;
  --font-heading: 'Cormorant Garant', serif;
  --font-body: 'DM Sans', sans-serif;
  --section-padding: 6rem 2rem;
  --container-max: 1200px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.1; font-weight: 600; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container-max); margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.8rem 2.2rem; border-radius: 4px;
  font-weight: 500; cursor: pointer; border: none;
  font-family: var(--font-body); text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 0.85rem;
  transition: var(--transition);
}
.btn-primary { background-color: var(--tan); color: #fff; }
.btn-primary:hover { background-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(28,20,16,0.2); }
.hero-btn { transition: all 0.3s ease; }
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(28,20,16,0.25); }

.section-title { font-size: 3rem; margin-bottom: 2rem; text-align: center; position: relative; }

/* ── Scroll animations ───────────────────────────────── */
.fade-in       { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-left  { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-right { opacity: 0; transform: translateX(50px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-scale    { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible, .fade-scale.visible {
  opacity: 1; transform: none;
}

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  padding: 1.5rem 0; position: fixed; top: 0; width: 100%;
  background-color: transparent;
  z-index: 9999; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background-color: rgba(245,239,230,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,20,16,0.08); padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(28,20,16,0.07);
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2rem; max-width: var(--container-max); margin: 0 auto;
  position: relative; z-index: 2;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 600; letter-spacing: 2px;
  font-family: var(--font-heading); color: #fff;
  transition: color 0.4s ease;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo-mark {
  width: 64px; height: 64px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
.navbar.scrolled .nav-logo-mark { filter: brightness(0); }
.navbar.scrolled .nav-logo { color: var(--primary); }
.nav-links { display: flex; gap: 3rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.nav-links a { position: relative; padding-bottom: 4px; color: rgba(255,255,255,0.85); transition: color 0.4s ease; }
.navbar.scrolled .nav-links a { color: var(--text-main); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #C3A179; transition: width 0.3s ease, background-color 0.4s ease; }
.navbar.scrolled .nav-links a::after { background-color: var(--secondary); }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--secondary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.navbar .btn-primary { background: transparent; border: 1.5px solid rgba(255,255,255,0.75); color: #fff; }
.navbar .btn-primary:hover { background-color: var(--tan); border-color: var(--tan); color: #fff; transform: none; box-shadow: none; }
.navbar.scrolled .btn-primary { background-color: var(--tan); border-color: var(--tan); color: #fff; }
.navbar.scrolled .btn-primary:hover { background-color: var(--primary); border-color: var(--primary); color: #fff; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 8px; transition: color 0.4s ease; }
.navbar.scrolled .menu-toggle { color: var(--text-main); }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  width: 100%; height: 100vh; min-height: 100svh;
  background-color: var(--white);
  z-index: 9990;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-menu.open { display: flex; }

/* When menu is open: lift nav-container above overlay and switch to dark colours */
.navbar.menu-open .nav-container { z-index: 9995; }
.navbar.menu-open .nav-logo { color: var(--primary); }
.navbar.menu-open .nav-logo-mark { filter: brightness(0); }
.navbar.menu-open .menu-toggle { color: var(--primary); }
.mobile-nav-links { padding: 0 2rem; display: flex; flex-direction: column; gap: 0; width: 100%; max-width: 320px; }
.mobile-nav-links li { border-bottom: 1px solid rgba(28,20,16,0.07); }
.mobile-nav-links li:last-child { border-bottom: none; }
.mobile-nav-links a { display: block; padding: 1.2rem 0; font-size: 1rem; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 600; color: var(--primary); transition: color 0.2s, padding-left 0.2s; text-align: left; }
.mobile-nav-links a:hover, .mobile-nav-links a.nav-current { color: var(--secondary); padding-left: 0.5rem; }
.mobile-nav-links a.nav-current { border-left: 2px solid var(--tan); padding-left: 0.75rem; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  height: 90vh; min-height: 560px; display: flex; align-items: center; position: relative;
  background-color: #1a0f0a; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(28,20,16,0.72) 0%, rgba(28,20,16,0.38) 55%, rgba(28,20,16,0.1) 100%), url('../images/hero.png');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; color: #fff; width: 100%; }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--tan); font-weight: 600; font-family: var(--font-body); margin-bottom: 1.4rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background-color: var(--tan); flex-shrink: 0; }
.hero h1 { font-size: clamp(2.6rem, 4vw, 4.8rem); line-height: 1.1; margin-bottom: 1.5rem; color: #fff; font-weight: 600; max-width: 840px; }
.hero h1 span { color: #fff; font-style: italic; font-weight: 500; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.82); margin-bottom: 2.8rem; max-width: 480px; line-height: 1.85; font-weight: 400; }
.hero-cta { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.hero-btn-main { border: 1.5px solid var(--tan); background: var(--tan); color: #fff; padding: 1rem 2.6rem; border-radius: 2px; letter-spacing: 2px; font-size: 0.75rem; transition: all 0.35s ease; }
.hero-btn-main:hover { background-color: var(--tan); border-color: var(--tan); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(183,124,59,0.35); }
.hero-btn-ghost { border: 1px solid rgba(255,255,255,0.35); background: transparent; color: rgba(255,255,255,0.7); padding: 1rem 2.6rem; border-radius: 2px; letter-spacing: 2px; font-size: 0.75rem; transition: all 0.35s ease; }
.hero-btn-ghost:hover { border-color: rgba(255,255,255,0.75); color: #fff; transform: translateY(-2px); }

/* ── About ───────────────────────────────────────────── */
.about { padding: var(--section-padding); background-color: #fff; overflow-x: clip; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 5rem; align-items: center; }
.about-subtitle { font-size: 0.72rem; letter-spacing: 4px; color: var(--secondary); font-weight: 600; margin-bottom: 0.8rem; font-family: var(--font-body); text-transform: uppercase; display: flex; align-items: center; gap: 0.8rem; }
.about-subtitle::before { content: ''; display: inline-block; width: 28px; height: 1.5px; background: var(--secondary); flex-shrink: 0; }
.about-title { font-size: 2.8rem; text-align: left; margin: 0 0 1.8rem; line-height: 1.15; }
.about-title::after { margin: 1rem 0; }
.about-desc { font-size: 0.97rem; color: rgba(44,51,51,0.78); margin-bottom: 1.3rem; line-height: 1.85; }
.about-company { font-weight: 700; color: var(--primary); }
.about-tagline { font-size: 1rem; font-weight: 500; color: var(--secondary); font-style: italic; margin-bottom: 2.5rem; font-family: var(--font-heading); }
.about-image {
  min-height: 480px; border-radius: 4px; overflow: hidden;
  background-image: url('../images/our-story.png'); background-size: cover; background-position: center; background-repeat: no-repeat;
  box-shadow: 20px 20px 0 rgba(139,96,53,0.12), 0 12px 40px rgba(28,20,16,0.1);
  position: relative;
}

/* ── Collection Banner ───────────────────────────────── */
.collection-banner { background-color: var(--primary); }
.banner-wrapper { position: relative; display: flex; align-items: center; overflow: hidden; }
.banner-bg { position: absolute; inset: 0; background-image: url('../images/collection-bg.png'); background-size: cover; background-position: center; }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,20,16,0.96) 0%, rgba(28,20,16,0.78) 50%, rgba(28,20,16,0.2) 100%); }
.banner-inner { position: relative; z-index: 2; padding: 6rem 2rem; max-width: var(--container-max); margin: 0 auto; width: 100%; }
.banner-text { max-width: 580px; color: #fff; }
.banner-eyebrow { font-size: 0.72rem; letter-spacing: 4px; color: #C3A179; margin-bottom: 1.4rem; font-weight: 600; font-family: var(--font-body); text-transform: uppercase; display: flex; align-items: center; gap: 0.8rem; }
.banner-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: #C3A179; flex-shrink: 0; }
.banner-title { font-size: 3.4rem; font-weight: 600; margin-bottom: 1.6rem; line-height: 1.1; }
.banner-desc { font-size: 0.96rem; color: rgba(255,255,255,0.62); line-height: 1.9; margin-bottom: 2.8rem; max-width: 500px; }
.banner-steps {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.banner-step {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.banner-step-num {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--tan);
  letter-spacing: 1px;
  font-family: var(--font-body);
}
.banner-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  font-family: var(--font-body);
  text-transform: uppercase;
}
.banner-step-arrow {
  color: rgba(195,161,121,0.4);
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
  align-self: flex-end;
  padding-bottom: 0.15rem;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials { padding: 5rem 0; background-color: var(--bg-main); position: relative; overflow: hidden; }
.bull-mark {
  position: absolute;
  width: 580px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.bull-mark--tr { top: -80px; right: -80px; }
.bull-mark--center { top: -120px; left: 50%; transform: translateX(-50%); width: 580px; }
.tq-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.tq-sub { font-size: 0.95rem; color: rgba(44,51,51,0.72); line-height: 1.8; max-width: 480px; margin: 0.6rem auto 0; }
.star-filled { color: #C89535; }
.star-empty  { color: rgba(28,20,16,0.14); }

/* ── Testimonial carousel ─────────────────────────────── */
.tq-carousel-wrap { position: relative; z-index: 1; }
.tq-viewport { overflow: hidden; }
.tq-track {
  display: flex;
  gap: 1.4rem;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.tq-card {
  flex: 0 0 calc(33.333% - 0.94rem);
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(28,20,16,0.08);
  padding: 2rem 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  min-height: 240px;
}
.tq-card-top { flex: 1; }
.tq-qmark {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--secondary);
  opacity: 0.3;
  margin-bottom: 0.4rem;
  user-select: none;
}
.tq-quote {
  font-family: var(--font-body);
  font-size: 0.87rem;
  line-height: 1.72;
  color: rgba(28,20,16,0.76);
  margin: 0;
}
.tq-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(28,20,16,0.08);
}
.tq-author { display: flex; align-items: center; gap: 0.75rem; }
.tq-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--secondary), #3D2410);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; color: #fff; letter-spacing: 1px;
}
.tq-name { font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 0.15rem; font-family: var(--font-body); }
.tq-role { font-size: 0.58rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 1.4px; }
.tq-stars { display: flex; gap: 3px; font-size: 0.78rem; }
.tq-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  position: relative;
  z-index: 1;
}
.tq-ctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(28,20,16,0.15);
  background: var(--bg-main); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease;
}
.tq-ctrl-btn:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }

@media (max-width: 992px) {
  .tq-card { flex: 0 0 calc(50% - 0.7rem); }
}
@media (max-width: 576px) {
  .tq-card { flex: 0 0 calc(100% - 2rem); }
  .tq-viewport { padding: 0 1rem; }
  .bull-mark--center { top: 0; width: 260px; }
}

/* ── Global Presence ─────────────────────────────────── */
.global-presence {
  position: relative;
  background-image: url('../images/global-reach.png');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
.gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,14,10,0.82) 0%, rgba(20,14,10,0.72) 100%);
}
.gp-inner { position: relative; z-index: 2; padding: 5rem 2rem 4.5rem; }
.gp-header { text-align: center; max-width: 860px; margin: 0 auto 3rem; }
.gp-eyebrow { color: var(--tan); letter-spacing: 4px; font-size: 0.72rem; margin-bottom: 1rem; font-weight: 600; font-family: var(--font-body); text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.gp-eyebrow::before, .gp-eyebrow::after { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--tan); flex-shrink: 0; }
.gp-title { font-size: 3rem; font-weight: 600; line-height: 1.1; margin-bottom: 1.2rem; color: #fff; }
.gp-title span { color: var(--tan); }
.gp-desc { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 860px; margin: 0 auto; }

/* Presence columns */
.gp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.gp-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(182,124,59,0.18);
  border-radius: 6px;
  padding: 2.5rem 2.8rem;
  backdrop-filter: blur(4px);
}
.gp-col-label {
  font-size: 0.68rem; color: var(--tan); text-transform: uppercase;
  letter-spacing: 3px; font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.gp-col-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--tan);
  flex-shrink: 0;
}
.gp-col-heading {
  font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600;
  color: #fff; line-height: 1.2; margin-bottom: 1.2rem;
}
.gp-col-body {
  font-size: 0.88rem; line-height: 1.9; color: rgba(255,255,255,0.52);
  margin-bottom: 0;
}
.gp-col-divider { display: none; }
.map-wrapper.visible .connection-path { stroke-dashoffset: 0; }
.map-pin { position: absolute; transform: translate(-50%, -50%); z-index: 10; }
.pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseRing 2s ease-out infinite;
}
.pin-dot { width: 14px; height: 14px; border-radius: 50%; background-color: var(--secondary); border: 3px solid var(--bg-main); box-shadow: 0 0 12px rgba(139,96,53,0.6); }
.pin-label {
  position: absolute; left: 50%; top: -50px; transform: translateX(-50%);
  white-space: nowrap; text-align: center; display: flex; flex-direction: column; align-items: center;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  background-color: #fff; padding: 6px 14px; border-radius: 6px;
  box-shadow: 0 2px 12px rgba(28,20,16,0.12); border: 1px solid rgba(28,20,16,0.08);
}
.pin-country { font-size: 0.65rem; color: rgba(44,51,51,0.5); text-transform: uppercase; letter-spacing: 1px; }
@keyframes pulseRing {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}

/* ── Contact + Footer (AASHA-style merge) ─────────────── */
.cf-section { overflow: hidden; }

/* TOP — white zone */
.cf-top { background: #fff; padding: 3rem 2rem 3rem; border-top: 1px solid rgba(28,20,16,0.08); overflow: visible; }
.cf-top-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.contact-title { text-align: left; margin: 1rem 0; }
.contact-title::after { margin: 1rem 0; }
.contact-desc { font-size: 0.97rem; color: rgba(44,51,51,0.72); margin-bottom: 2rem; line-height: 1.85; }
.contact-info { display: grid; gap: 1.4rem; }
.info-item { padding-bottom: 1.4rem; border-bottom: 1px solid rgba(28,20,16,0.08); }
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary); margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 700; }
.info-value { font-size: 1rem; font-weight: 500; color: var(--primary); }


/* Form card — absolutely positioned so it doesn't inflate grid height */
.cf-form-wrap { position: relative; }
.contact-form-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(28,20,16,0.22), 0 4px 16px rgba(28,20,16,0.08);
  border: 1px solid rgba(28,20,16,0.05);
  z-index: 10;
}
.form-group { margin-bottom: 1.5rem; }
.form-direct-contact { margin-top: 1rem; text-align: center; font-size: 0.78rem; color: rgba(44,51,51,0.5); }
.form-direct-contact a { color: var(--secondary); text-decoration: none; }
.form-direct-contact a:hover { text-decoration: underline; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.5rem; }
.form-row .form-group { margin-bottom: 0; }
@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; gap: 0; } .form-row .form-group { margin-bottom: 1.5rem; } }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid rgba(28,20,16,0.15);
  border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color 0.3s ease; background: var(--bg-main); color: var(--text-main);
}
.form-input:focus, .form-textarea:focus { border-color: var(--secondary); background: #fff; }
.form-textarea { min-height: 240px; resize: vertical; }
.form-view { display: block; }
.success-view { display: none; text-align: center; padding: 2rem 0; }
.success-view.show { display: block; }
.success-icon { font-size: 2rem; color: var(--secondary); width: 64px; height: 64px; border: 2px solid var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

/* BOTTOM — dark zone */
.cf-bottom { background: var(--primary); color: #fff; padding: 9rem 2rem 0; position: relative; z-index: 1; overflow: visible; }

/* Brand content */
.footer-logo { font-family: var(--font-heading); letter-spacing: 3px; font-size: 1.4rem; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 340px; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.social-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.3s ease; }
.social-icon:hover { color: #fff; border-color: var(--accent); background-color: rgba(139,96,53,0.15); }

/* Footer links row — brand + 3 link columns */
.cf-footer-links { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 3rem; }
.cf-links-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary); margin-bottom: 1.5rem; font-family: var(--font-body); font-weight: 700; }
.footer-links li { margin-bottom: 0; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-links a:hover { color: #fff; }
.footer-contact-info p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 0.8rem; }
.footer-contact-info a { color: rgba(255,255,255,0.5); }
.footer-contact-info a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0 3rem; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }


/* ── Footer ──────────────────────────────────────────── */
.footer { padding: 5rem 2rem 3rem; background-color: var(--primary); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 4rem; max-width: var(--container-max); margin: 0 auto 3rem; }
.footer-brand { }
.footer-logo { font-family: var(--font-heading); letter-spacing: 3px; font-size: 1.4rem; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.3s ease;
}
.social-icon:hover { color: #fff; border-color: var(--accent); background-color: rgba(139,96,53,0.15); }
.footer-col-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary); margin-bottom: 1.5rem; font-family: var(--font-body); font-weight: 700; }
.footer-links li { margin-bottom: 0; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-links a:hover { color: #fff; }
.footer-contact-info p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 0.8rem; }
.footer-contact-info a { color: rgba(255,255,255,0.5); }
.footer-contact-info a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.55); max-width: var(--container-max); margin: 0 auto; }


/* ── Footer columns ──────────────────────────────────── */
.footer-col-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.5); font-weight: 600; font-family: var(--font-body); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.25s ease; }
.footer-links a:hover { color: #C3A179; }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact-info p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.footer-contact-info a { color: rgba(255,255,255,0.55); transition: color 0.25s ease; }
.footer-contact-info a:hover { color: #C3A179; }
.footer-roc { font-size: 0.78rem; color: rgba(255,255,255,0.35) !important; }


/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cf-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cf-bottom-grid { grid-template-columns: 1fr; }
  .cf-form-wrap { position: static; }
  .contact-form-box { position: static; margin-top: 2rem; box-shadow: 0 8px 32px rgba(28,20,16,0.12); }
  .cf-bottom { padding-top: 3rem; }
  .cf-links-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gp-cols { grid-template-columns: 1fr; gap: 1.2rem; }
  .nav-logo-mark { width: 38px; height: 38px; }
  .bull-mark { width: 320px; }
}
@media (max-width: 1024px) {
  .nav-links { gap: 1.8rem; font-size: 0.72rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: 2.6rem; }
  .section-title, .gp-title, .about-title { font-size: 2.4rem; }
  .gp-title { font-size: 2.4rem; }
  .er-title { font-size: 2.4rem; }
  .gp-col-heading { font-size: 1.4rem; }
  .banner-title { font-size: 2.4rem; }
  .contact-form-box { padding: 2rem; }
  .cf-links-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .gp-inner { padding: 4rem 1.5rem 3rem; }
  .nav-logo-mark { width: 32px; height: 32px; }
}

/* ═══════════════════════════════════════════════════════
   WHAT WE SUPPLY
═══════════════════════════════════════════════════════ */
.supply {
  padding: 6rem 2rem 3rem;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}
.bull-mark--supply { top: -60px; left: 50%; transform: translateX(-50%); width: 520px; opacity: 0.05; z-index: 0; }
.supply-header, .supply-carousel, .supply-nav { position: relative; z-index: 1; }
.supply-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem;
}
.supply-eyebrow {
  font-size: 0.85rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.supply-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--tan);
  flex-shrink: 0;
}
.supply-title { color: var(--primary); line-height: 1.2; margin-bottom: 1rem; }
.supply-title::after { display: none; }
.supply-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(28,20,16,0.6);
}
/* ── Carousel wrapper ── */
.supply-carousel {
  position: relative;
  padding: 0 3.5rem;
}
.supply-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.supply-track::-webkit-scrollbar { display: none; }
/* ── Cards ── */
.supply-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(28,20,16,0.07);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.35s ease;
}
.supply-card:hover {
  box-shadow: 0 12px 40px rgba(28,20,16,0.12);
}
.supply-card:hover .supply-arrow { color: var(--tan); transform: translateX(4px); }
.supply-card-image {
  height: 220px;
  background: linear-gradient(145deg, var(--primary) 0%, #2a1a10 55%, var(--secondary) 130%);
  position: relative;
  overflow: hidden;
}
.supply-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/logo-mark.png') center/110px no-repeat;
  opacity: 0.06;
}
.supply-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.supply-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.supply-card-top { }
.supply-card-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.supply-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.supply-card-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(28,20,16,0.68);
}
.supply-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--secondary);
  margin-top: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
/* ── Nav buttons ── */
.supply-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(28,20,16,0.15);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.supply-nav:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.supply-prev { left: -8px; }
.supply-next { right: -8px; }

/* ═══════════════════════════════════════════════════════
   EXPORT & GLOBAL REACH
═══════════════════════════════════════════════════════ */
/* ══ Export & Global Reach ══════════════════════════════ */
.export-reach {
  background: var(--bg-main);
  padding: var(--section-padding);
}
.er-center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.er-eyebrow {
  font-size: 0.72rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.er-eyebrow::before, .er-eyebrow::after { content: ''; display: inline-block; width: 24px; height: 1.5px; background: var(--tan); flex-shrink: 0; }
.er-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.er-title span { color: var(--secondary); }
.er-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(44,51,51,0.62);
  margin-bottom: 2.2rem;
}

@media (max-width: 1100px) {
  .supply-card { flex: 0 0 calc(50% - 0.7rem); }
}
@media (max-width: 992px) {
  .er-title { font-size: 2.2rem; }
  .bull-mark--supply { top: -60px; left: -80px; }
}
@media (max-width: 576px) {
  .supply-card { flex: 0 0 calc(100% - 2rem); }
  .supply-carousel { padding: 0 1rem; }
  .supply-prev { left: -4px; }
  .supply-next { right: -4px; }
  .er-title { font-size: 1.9rem; }
  .bull-mark--supply { top: 1rem; left: 50%; transform: translateX(-50%); width: 260px; }
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════════════════════ */

/* Hero */
.prod-hero {
  background: var(--primary) url('../images/collection-bg.png') center/cover no-repeat;
  min-height: calc(100vh - 498px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.prod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 8, 4, 0.78);
}
.prod-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.prod-eyebrow {
  font-size: 0.72rem;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.prod-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.prod-hero-title span { color: var(--tan); }
.prod-hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 480px;
}

/* Product nav strip */
.prod-nav-strip {
  background: var(--bg-main);
  border-bottom: 1px solid rgba(28,20,16,0.08);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.prod-nav-inner {
  display: flex;
  gap: 0;
  padding: 0 2rem;
}
.prod-nav-link {
  padding: 1rem 1.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: rgba(28,20,16,0.45);
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.prod-nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--tan);
}

/* Product sections */
.prod-section { padding: 4rem 0; }
.prod-section--light { background: var(--bg-main); }
.prod-section--dark { background: var(--primary); }

.prod-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.prod-inner--reversed { }

/* Image grid */
.prod-image-col { position: relative; }

.prod-img-grid {
  display: grid;
  gap: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.prod-img-grid--1 { grid-template-columns: 1fr; }
.prod-img-grid--2 { grid-template-columns: 1fr 1fr; }
.prod-img-grid--3 {
  grid-template-columns: 1fr 1fr;
}
.prod-img-grid--3 > :first-child {
  grid-row: 1 / span 2;
}
.prod-img-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.prod-img-grid--1 img {
  aspect-ratio: 2/1;
}
.prod-img-grid--3 > :first-child img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 200px;
}
.prod-img-grid .prod-img--contain {
  object-fit: contain;
  background: #F5EFE6;
}

/* Scrollspy: active nav link */
.prod-nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--tan);
}

/* Placeholder (no images yet) */
.prod-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #1C1410 0%, #2e1f16 55%, var(--secondary) 140%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.prod-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/logo-mark.png') center/160px no-repeat;
  opacity: 0.06;
}

/* Content */
.prod-count {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.prod-section--light .prod-count { color: rgba(139,96,53,0.14); }
.prod-section--dark .prod-count { color: rgba(182,124,59,0.15); }

.prod-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.prod-section--light .prod-cat { color: var(--secondary); }
.prod-section--dark .prod-cat { color: var(--tan); }

.prod-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.prod-section--light .prod-title { color: var(--primary); }
.prod-section--dark .prod-title { color: #fff; }

.prod-desc {
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.prod-section--light .prod-desc { color: rgba(28,20,16,0.65); }
.prod-section--dark .prod-desc { color: rgba(255,255,255,0.55); }

/* Specs */
.prod-specs {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(28,20,16,0.08);
}
.prod-section--dark .prod-specs { border-top-color: rgba(255,255,255,0.07); }

.prod-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(28,20,16,0.07);
  gap: 1rem;
}
.prod-section--dark .prod-spec-row { border-bottom-color: rgba(255,255,255,0.06); }

.prod-spec-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  flex-shrink: 0;
}
.prod-section--light .prod-spec-label { color: rgba(28,20,16,0.4); }
.prod-section--dark .prod-spec-label { color: rgba(255,255,255,0.35); }

.prod-spec-value {
  font-size: 0.88rem;
  text-align: right;
}
.prod-section--light .prod-spec-value { color: var(--primary); font-weight: 500; }
.prod-section--dark .prod-spec-value { color: rgba(255,255,255,0.85); font-weight: 500; }

/* Responsive */
@media (max-width: 992px) {
  .prod-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .prod-inner--reversed .prod-image-col { order: -1; }
  .prod-placeholder { height: 300px; }
  .prod-hero-title { font-size: 2.6rem; }
  .prod-nav-link { padding: 0.9rem 1rem; font-size: 0.73rem; }
}
@media (max-width: 768px) {
  .prod-hero-title { font-size: 2rem; }
  .prod-hero-inner { padding-top: 8rem; }
  .prod-title { font-size: 1.9rem; }
  .prod-section { padding: 4rem 1.5rem; }
  .prod-nav-inner { overflow-x: auto; padding: 0 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   WORKMANSHIP PAGE
═══════════════════════════════════════════════════════ */

.nav-current { color: var(--tan) !important; }

/* Hero */
.wm-hero {
  background: var(--primary);
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wm-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/workmanship/import2.jpeg') center/cover no-repeat;
  opacity: 0.1;
}
.wm-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 7rem 2rem;
}
.wm-hero-content {
  max-width: 720px;
}
.wm-eyebrow {
  font-size: 0.72rem;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.wm-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.6rem;
}
.wm-hero-title span { color: var(--tan); }
.wm-hero-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin-bottom: 3rem;
}
.wm-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.wm-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.wm-hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tan);
  line-height: 1;
}
.wm-hero-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.wm-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(182,124,59,0.3);
}

/* Step sections */
.wm-step { padding: 6rem 2rem; }
.wm-step--dark { background: var(--primary); }
.wm-step--light { background: var(--bg-main); }

.wm-step-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.wm-step-inner--reversed { }

.wm-step-number {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}
.wm-step--dark .wm-step-number { color: rgba(182,124,59,0.18); }
.wm-step--light .wm-step-number { color: rgba(139,96,53,0.13); }

.wm-step-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.wm-step--dark .wm-step-eyebrow { color: var(--tan); }
.wm-step--light .wm-step-eyebrow { color: var(--secondary); }

.wm-step-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.wm-step--dark .wm-step-title { color: #fff; }
.wm-step--light .wm-step-title { color: var(--primary); }

.wm-step-body {
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.wm-step-body:last-child { margin-bottom: 0; }
.wm-step--dark .wm-step-body { color: rgba(255,255,255,0.58); }
.wm-step--light .wm-step-body { color: rgba(28,20,16,0.68); }

/* Grade list */
.wm-grade-list {
  list-style: none;
  margin: 0.6rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.wm-grade-list li {
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 0.6rem 0.8rem;
  border-left: 2px solid var(--tan);
  background: rgba(182,124,59,0.06);
}
.wm-step--dark .wm-grade-list li { color: rgba(255,255,255,0.65); }
.wm-step--light .wm-grade-list li { color: rgba(28,20,16,0.72); }
.wm-grade-label {
  font-weight: 700;
  color: var(--tan);
  margin-right: 0.5rem;
}

/* Image grids */
.wm-img-grid {
  display: grid;
  gap: 0.6rem;
}
.wm-img-grid img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

/* 4-image grid: full-width top, 3 below */
.wm-img-grid--4 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 200px;
}
.wm-img-grid--4 img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}
.wm-img-grid--4 img:not(:first-child) { height: 200px; }

/* 3-image grid: full-width top, 2 below */
.wm-img-grid--3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.wm-img-grid--3 img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}
.wm-img-grid--3 img:not(:first-child) { height: 200px; }

/* 2-image grid: stacked */
.wm-img-grid--2 {
  grid-template-columns: 1fr;
}
.wm-img-grid--2 img { height: 260px; }
.wm-img-grid--2col {
  grid-template-columns: 1fr 1fr;
}
.wm-img-grid--2col img { height: 320px; }

/* Import section: forklift left spanning 2 rows, two portrait images stacked right */
.wm-img-grid--import {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.6rem;
}
.wm-img-grid--import img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.wm-img-grid--import img:first-child {
  grid-row: 1 / -1;
}

/* 6-image grid: 3 columns, auto rows */
.wm-img-grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.wm-img-grid--6 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* Single full image */
.wm-img-single img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* Contained product image grid */
.wm-img-contained {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 200px;
  gap: 0.6rem;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  border: 1px solid rgba(182,124,59,0.12);
  border-radius: 6px;
}
.wm-img-contained img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.wm-img-contained img:first-child {
  grid-column: 1 / -1;
}

/* Step header block (full-width, above a grid) */
.wm-step-header-block { max-width: 720px; margin-bottom: 3rem; }
.wm-step-body--wide { max-width: 680px; }

/* Product grid */
.wm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.wm-product-card {
  position: relative;
  height: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(182,124,59,0.14);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wm-product-card--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.4s ease;
}
.wm-product-card--img:hover img { opacity: 0.9; }
.wm-product-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.wm-product-card--img .wm-product-label {
  background: linear-gradient(to top, rgba(28,20,16,0.88), transparent);
}
.wm-product-card:not(.wm-product-card--img) {
  align-items: center;
  justify-content: center;
  border-style: dashed;
}
.wm-product-card:not(.wm-product-card--img) .wm-product-label {
  text-align: center;
  padding: 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Export section */
.wm-export-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wm-export-card {
  padding: 1.6rem;
  border: 1px solid rgba(139,96,53,0.2);
  border-radius: 4px;
  background: rgba(139,96,53,0.04);
  border-left: 3px solid var(--secondary);
}
.wm-export-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.wm-export-card-body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(28,20,16,0.65);
}
.wm-markets {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(139,96,53,0.2);
}
.wm-markets-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(28,20,16,0.4);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.wm-market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wm-market-tags span {
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(139,96,53,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(28,20,16,0.65);
  font-weight: 500;
}

/* CTA band */
.wm-cta {
  background: var(--tan);
  padding: 5rem 2rem;
}
.wm-cta-inner { text-align: center; }
.wm-cta-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.wm-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.wm-cta .btn-primary {
  background: var(--primary);
}
.wm-cta .btn-primary:hover {
  background: #fff;
  color: var(--primary);
}

/* Footer strip */
.wm-footer {
  background: var(--primary);
  color: #fff;
}
.wm-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .wm-step-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .wm-step-inner--reversed .wm-img-grid,
  .wm-step-inner--reversed .wm-img-contained { order: -1; }
  .wm-hero-title { font-size: 2.8rem; }
  .wm-img-contained { max-width: 100%; margin-left: 0; }
  .wm-img-single img { height: 340px; }
  .wm-img-grid--import { grid-template-columns: 1fr; grid-template-rows: auto; }
  .wm-img-grid--import img:first-child { grid-row: auto; height: 280px; }
  .wm-img-grid--import img:not(:first-child) { height: 220px; }
  .wm-img-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .wm-img-grid--6 img { height: 180px; }
  .wm-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wm-hero-title { font-size: 2.2rem; }
  .wm-hero-inner { padding: 8rem 1.5rem 4rem; }
  .wm-img-grid--2col { grid-template-columns: 1fr; }
  .wm-img-grid--2col img { height: 260px; }
  .wm-step-title { font-size: 1.8rem; }
  .wm-step-number { font-size: 3.5rem; }
  .wm-step { padding: 4rem 1.5rem; }
  .wm-cta-title { font-size: 2rem; }
  .wm-img-grid--4 { grid-template-columns: 1fr 1fr; }
  .wm-hero-stats { gap: 1.5rem; }
  .wm-hero-stat-value { font-size: 1.8rem; }
}
/* ── Products page: closing band ─────────────────────────────────────────── */
.prod-closing-band {
  background: var(--primary);
  padding: 2.8rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.prod-closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.prod-closing-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}
@media (max-width: 640px) {
  .prod-closing-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .wm-img-grid--4 { grid-template-columns: 1fr; }
  .wm-img-grid--4 img:not(:first-child) { height: 180px; }
  .wm-img-grid--3 { grid-template-columns: 1fr; }
  .wm-img-grid--3 img:first-child { height: 220px; }
  .wm-img-grid--3 img:not(:first-child) { height: 180px; }
  .wm-img-contained { grid-template-columns: 1fr; grid-template-rows: auto; }
  .wm-img-contained img:first-child { height: 220px; }
  .wm-img-contained img:not(:first-child) { height: 180px; }
  .wm-img-grid--6 { grid-template-columns: 1fr; }
  .wm-img-grid--6 img { height: 200px; }
  .wm-products-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .wm-product-card { height: 180px; }
  .wm-img-single img { height: 260px; }
  .wm-hero-stats { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .wm-hero-stat-divider { display: none; }
}

/* ── WhatsApp Floating Button ────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 576px) {
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}
